I’m pretty sure that the answer is B
Answer:
what is the question and answers?
Answer:
// here is statement in C++ to declare and initialize an array.
int denominations[]={1, 5, 10, 25, 50, 100};
Explanation:
In C++, an array can be declare and initialize in a single statement.Syntax to declare and initialize an array in C++ is type <type> <name>[]={val1,vale2...valn}. Here first literal is type of array and second is name of the array.And in the {} braces value of the array.In the above statement type is integer and name of the array is "denominations" and the values are 1,5,10,25,50,100.
//here is implementation in C++.
// include headers
#include <bits/stdc++.h>
using namespace std;
// main function
int main()
{
// declare and initialize array
int denominations[]={1, 5, 10, 25, 50, 100};
return 0;
}
Answer:
Look under Outlook options in the Backstage view
Explanation:
If we want to add more commands in Outlook, we must look under Outlook options in the backstage view.
Then we must click in the option customize ribbon, we are going to see all the commands that we can add.
For example:
We have an option to do a filter in customize ribbon area, we can see the most popular commands or all of them.
We want to add the command New contact, we can choose where to add it, if we make a mistake, we can remove the command.
Answer:
I am not sure we can answer this. What did YOU do when you troubleshooted and tested the program?
Explanation: