Which of the following will count down from 10 to 1 correctly?

a. for (int j = 10; j <= 1; j++)
b. for (int j = 1; j <= 10; j++)
c. for (int j = 10; j > 1; j--)
d. for (int j = 10; j >= 1; j--)


d. for (int j = 10; j >= 1; j--)

Computer Science & Information Technology

You might also like to view...

A(n) ________ is a custom program or additional command that is installed to extend the functionality of a Microsoft Office program.

A. template B. theme C. add-in D. gallery

Computer Science & Information Technology

Gesture recognition enables humans to interact directly with a computer screen via the motions or gestures of one's fingers or a stylus.

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

Computer Science & Information Technology

How do you determine the number of command-line arguments a program has?

a) The numArgs constant contains the number of command-line arguments. b) The first member of the args array is the count of the number of command-line arguments. c) The number of command-line arguments is the length of the args array. d) The number of command-line arguments is one less than the length of the args array. e) The number of command-line arguments is fixed and is 5.

Computer Science & Information Technology

Which of the following repetition statements will properly repeat while not at the end of the data file associated with the object DataFile

A. while( ! DataFile) B. while ( ! eof()) C. while ( ! DataFile.eof()) D. while ( ! eof.DataFile())

Computer Science & Information Technology