Computer Applications
Which construct can be used to get only one of the required ice creams?

- switch construct
- while construct
- do.. while construct
- for construct
Java Conditional Stmts
8 Likes
Answer
switch construct
Reason — The switch construct can be used to select and execute only the case that matches the required ice cream choice, skipping all other cases, which makes it suitable when only one specific ice cream needs to be selected from several options.
Answered By
3 Likes
Related Questions
Which of the following String methods results into boolean data type?
- trim()
- equals()
- replace()
- concat()
Which statement is correct for the method prototype given below:
int check(char ch, String s)- check() does not return any value
- check() has return type int
- check method has two actual parameters
- check() is a constructor
The Math method which returns int value is:
- round()
- cbrt()
- ceil()
- random()
What is the output of the following statement:
“MONOPOLY”.lastIndexOf(‘O’);- 1
- 3
- 2
- 5