Answer:
he should select the arrow next to the bullet list
Explanation:
Answer: a digital bulletin board
Answer:
Option C i.e., Captain America: Civil War.
Explanation:
When the user required the data or information of the movie Captain America: Civil War then, the following option is the best format to search for the information of the movie because if any user search anything in the proper format then they gets better results related to the following search and if the user enters improperly then they also get the information but it takes some time to satisfy you.
Answer:
b) void xyzfunc (int &myint);
Explanation:
To use the same memory location as the variable in the calling function we have to pass the variable by reference means passing the same address to the function.So to do that we have use & operator which stands for address.
We will do this as following:-
void xyzfunc (int * myint);
Hence the answer is option b.