B) output device
bc you’re using them to listen to something
<span><span>1.her husband’s business acquaintances2.Debbi’s mother3.her in-laws4.her friends 5.fellow students at Los Altos Junior College </span>At age 20, Debbi Fields always loved baking cookies and decided that she thought about starting a business. Her family and friends argued that the business would fail but Debbi managed to get a loan. <span>
</span></span>
Answer: Following code is in C++
#include<iostream>
using namespace std;
int sumArray(int a[]) //take array as argument
{
int s=0,i;
for(i=0;i<5;i++)
s+=a[i]; //sums every element
return s;
}
int main() {
int sum,a[]={1,7,4,9,6};
sum=sumArray(a); //calling the function
cout<<"Sum of array is : "<<sum; //printing sum to console
return 0;
}
OUTPUT :
Sum of array is : 27
Explanation:
In the above mentioned code, an array is declared and initialized at the same time. A variable sum of int type stores sum returned the function sumArray() and then it is printed to the console. In the function sumArray(), a variable s of data type int is initialized with value 0 and a loop is executed in which every element of the array is added. At last, s is returned.
Explanation:
only those viruses already known when the software is written
The way in which Accenture help companies harness the power of data to achieve optimal business outcomes is;
D: They develop data governance frameworks that go on to form the basis of the company's data analytics strategy.
Accenture Analytics helps companies to achieve measurable concrete market benefits from their data by taking advantage of the wide range of collaboration and partner community made up of the vendors in the leading and evolving technology.
This is done with the aid of a technology-agnostic approach that is very useful when dealing with solution development and delivery.
Thus, from our little definition above, we can see that the correct answer to the question is that they develop data governance frameworks that go on to form the basis of the company's data analytics strategy.
Read more about Accenture analytics at; brainly.com/question/25682883