

MCQOPTIONS
Saved Bookmarks
1. |
Which of the following option is the correct representation of the following code?e = a * b + c / d * f; |
A. | e = (a * (b +(c /(d * f)))); |
B. | e = ((a * b) + (c / (d * f))); |
C. | e = ((a * b) + ((c / d)* f)); |
D. | Both e = ((a * b) + (c / (d * f))); and e = ((a * b) + ((c / d)* f)); |
Answer» E. | |