Exam 4: Loops and Files

arrow
  • Select Tags
search iconSearch Question
flashcardsStudy Flashcards
  • Select Tags

What will be the value of x after the following code is executed? int x = 10; Do { X *= 20; } While (x < 5);

(Multiple Choice)
4.8/5
(50)

A sentinel value _________ and signals that there are no more values to be entered.

(Multiple Choice)
4.8/5
(38)

This type of loop will always be executed at least once.

(Multiple Choice)
4.8/5
(42)

When using the PrintWriter class,which of the following import statements would you write near the top of your program?

(Multiple Choice)
4.7/5
(39)

What will be the values of x and y as a result of the following code? int x = 25,y = 8; X += y++;

(Multiple Choice)
4.8/5
(36)

A loop that repeats a specific number of times is known as a(n)

(Multiple Choice)
4.7/5
(38)

When you open a file with the PrintWriter class,the class can potentially throw an IOException.

(True/False)
4.8/5
(36)

What will be the value of x after the following code is executed? int x = 10,y = 20; While (y < 100) { X += y; Y += 20; }

(Multiple Choice)
4.9/5
(27)
Showing 41 - 48 of 48
close modal

Filters

  • Essay(0)
  • Multiple Choice(0)
  • Short Answer(0)
  • True False(0)
  • Matching(0)