Answer:
B. Respect other users' requests not to send any jokes via e-mail or IM.
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.
Answer:
information systems manager
Explanation:
Based on the information provided within the question it seems that your role in the project steering team is the information systems manager. This is a role that focuses on manages a group of IT professionals, as well as implementing new technology into the organization and making sure it fits the IS strategy. Which is what they seem to be expecting of you in this scenario.
What do you need help with
<span>When integrating texts and visuals, a legend helps readers "decode" the visual by explaining what various colors, symbols, or other design choices mean. Correct answer: D
</span><span>The caption offers additional discussion of a visual's content, the </span>title provides a short description that identifies the content and purpose of the visual and the <span>headline is a term associated with the print media.</span>