Engineering Full Stack Apps with Java and JavaScript
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 ;