Multiple Choice Question

Quiz Guidelines

 

QID: 
161
Question: 

Which of these statements are valid when occurring by themselves?

Select 3 options

A. while ( ) break ;
B. do { break ; } while (true) ;
C. if (true) { break ; } (When not inside a switch block or a loop)
D. switch (1) { default : break; }
E. for ( ; true ; ) break ;

Q&A Set: