How many times are the indicated statements (#1 ) and #2 ) each executed?

for (int i = 1; i <= 10; ++i)
for (int j = 1; j <= 10; ++j)
for (int k = 1; k <= 5; ++k)
++count; // statement #1
System.out.printf("%d\n", count); // statement #2


Statement #1 executes 500 times, and statement #2 executes 1 time.

Computer Science & Information Technology

You might also like to view...

The ____________________ data type is not subject to round-off error when calculated, unlike the Number data type with decimal values.

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

Computer Science & Information Technology

The GoTo command is considered a(n) ____ tool.

A. editing B. navigation C. merging D. sorting

Computer Science & Information Technology

The ________ is the biggest power consumer on a mobile computing device.

A. display B. hard drive C. memory module D. CPU

Computer Science & Information Technology

Addition is the first arithmetic operator to be calculated in a formula in regard to precedence.

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

Computer Science & Information Technology