Computer Applications
A sequence of statements enclosed between a pair of curly brackets is called
- a compound statement
- an empty statement
- a null statement
- a void statement
Related Questions
if ((a > b) && (a > c)), then which of the following statements is true?
Consider the following code snippet:
int val = 2; switch (val) { case 1: System.out.println("Case 1"); break; case 2: System.out.println("Case 2"); break; default: System.out.println("No match found"); break; }
Which of the following statements is correct?
Which clause is optional in the switch statement?
Which of the following statements involves a fall-through?