The disadvantage to using the conditional operator is that it ____.

A. is inefficient
B. has high precedence
C. can be difficult to read
D. slows execution time


Answer: C

Computer Science & Information Technology

You might also like to view...

The commands in the following session can be used to perform the required tasks.

What will be an ideal response?

Computer Science & Information Technology

When the user clicks on the Macro icon drop-down arrow, there are three options available to the user. The ________ option will allow the user to create a new macro by opening the Macro Window

Fill in the blank(s) with correct word

Computer Science & Information Technology

When a Windows Form object has been resized, the exact size in numbers of horizontal and vertical pixels is shown on the ____________________ bar.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Consider the following code. Show how it might be complied into generic assembly language assuming that the compiler unrolls the loop three times. All values are integers. Assume that register indirect with offset addressing is available, but pointers have to be explicitly updated.

for (int i = 0; i < 30; i++) {
z[i] = 3 * (x[i] + y[i]);
}

Computer Science & Information Technology