if (a > 10)   if (b > 10)      if (c > 10)          result =  1;      else          if (b > 100)             result = 2;          elseresult = 3;    else      result = 4;  else    result = 5;
Using the above code segment, what is stored in result when a, b and c are equal to 200?

A. 1
B. 2
C. 3
D. 4

Answer: A

Computer Science & Information Technology

You might also like to view...

A spreadsheet is another name for a workbook

Indicate whether the statement is true or false

Computer Science & Information Technology

To execute a module you must ___________.

a. parse it b. debug it c. call it d. compile it

Computer Science & Information Technology