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. 3
b. 0
c. –1
d. 99


d. 99

Computer Science & Information Technology

You might also like to view...

Answer the following statements true (T) or false (F)

1. The Do While…Loop statement behaves differently than the While…End While statement. 2. Because the condition of a While…End While statement is before the body, the body is executed only once after the condition becomes false. 3. If a While…End While statement’s condition is initially false, the body statement(s) are not performed. 4. Placing a space character between the symbols that compose an abbreviated arithmetic assignment operator improves readability. 5. a – = 3 can also be represented by the expression a = a – 3.

Computer Science & Information Technology

For less formal presentations, you might want to demonstrate your creativity by using images or a texture to fill the data series, chart area, or plot area instead of a solid fill color

Indicate whether the statement is true or false

Computer Science & Information Technology

The drawback of antivirus software is that its ____ must be continuously updated to recognize new viruses.

A. CRC files B. definition files C. TPID files D. infection files

Computer Science & Information Technology

Explain how program can be correct and not be reliable.

What will be an ideal response?

Computer Science & Information Technology