subject

1.When will the loop in the following code snippet stop? java. util. Scanner in = new java. util. Scanner(System. in); double sum = 0; int count = 0; System. out. print("Enter values, Q to quit: "); do { double value = in. nextDouble(); sum = sum + value; count++; System. out. print("Enter values, Q to quit: "); } while (in. hasNextDouble() && count < 100)

; I. When the user enters an integer

II. When the user enters an alphabetic character

III. After the user enters 100 numbers

Select one: a. I or II b. II only c. III only d. II or III

2.How many times does the following loop execute?

int upperCaseLetters = 0;
String str = "abcdEfghI";
boolean found = false;
for (int i = 0; i < str. length() && !found; i++)
{
char ch = str. charAt(i);
if (Character. isUpperCase(ch))
{
found = true;
}
}
Select one:

a. 9 times

b. 8 times

c. 5 times

d. 1 time

3.Which of the following statements is correct about a sentinel?

Select one:

a. A sentinel is a value that creates a bridge between a data set and unrelated input.

b. A sentinel is a value that is part of the data to be processed by the program.

c. A sentinel is a value that terminates a program.

d. A sentinel is a value that indicates the end of an input sequence.

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 21.06.2019 22:00
Which one of the following would administrators use to connect to a remote server securely for administration? a. telnetb. secure file transfer protocol (sftp)c. secure copy (scp)d. secure shell (ssh)
Answers: 1
question
Computers and Technology, 22.06.2019 12:00
Which of the following does 3d animation create an illusion of on the screen? a. depth b. emotion c. length d. dialogue
Answers: 1
question
Computers and Technology, 22.06.2019 15:30
What is a costume plot? why is it important to a film or theater production?
Answers: 2
question
Computers and Technology, 22.06.2019 20:00
What statement best describes operating systems? it’s possible for modern computers to function without operating systems. most operating systems are free or very inexpensive. operating systems are managed by the computer’s microprocessor (cpu). operating systems manage the computer’s random access memory (ram).
Answers: 1
You know the right answer?
1.When will the loop in the following code snippet stop? java. util. Scanner in = new java. util. Sc...
Questions
question
Mathematics, 09.06.2021 21:20
question
Mathematics, 09.06.2021 21:20
question
Mathematics, 09.06.2021 21:20
question
Mathematics, 09.06.2021 21:20
question
Physics, 09.06.2021 21:20
question
Business, 09.06.2021 21:20
question
Chemistry, 09.06.2021 21:20
question
Mathematics, 09.06.2021 21:20
Questions on the website: 13722360