Question: Can you please anwser these C++ questions , please make sure they are right. 1) What is the value of choice after the following statements?
Can you please anwser these C++ questions , please make sure they are right.
1) What is the value of choice after the following statements?
void getChoice(int& par_choice, in par_count);
int choice, count=3;
getChoice(choice, count);
void getChoice(int& par_choice, in par_count)
{
if(par_count<0)
par_choice =0;
if(par_count = 0)
par_choice=-1;
else
par_choice=99;
return;
}
a. -1 b. 99 c. 3 d. 0
2) When parameters are passed between the calling code and the called function, parameters and arguments are matched by:
a. their relative positions in the parameter and argument lists b. they are not matched up at all c. their names d. their data types
3) In the function declaration shown, the mechanism used to call this function is known as:
double pow(double base, double exp);
a. pass by name b. pass by name c. call by name d. pass by value
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
