Which of the following is INCORRECT? Answer Given the function prototype and var
ID: 3540030 • Letter: W
Question
Which of the following is INCORRECT?
Answer
Given the function prototype and variable declarations, which of the following is a valid function call?
// function prototype
int something (int & a, float & b);
//variable declarations
int p, q;
float m;
Answer
Which of the following statements is true after the execution of the following statement?
y = abs(x);
Answer
If the following code fragment is in main(), then what must be true about the area argument to the computeLotInAcres() function?
// compute the area in acres
computeLotInAcres(width, length, area);
// Display results
cout << "A building lot of "
<< width << " feet by "
<< length << " feet has "
<< area << " acres. ";
Answer
Explanation / Answer
Ans:
Incorrect: A function can return many values to the calling program.
True statement :There are two different data storage locations for the variables and the compiler makes no connection between the two variables.
Valid function call: p = something (p, m);
y = abs(x); => y contains the absolute value of the value in x
it is passed as a reference parameter.
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.