§@(What statement exits the innermost loop?continueswitchbreakfor#Day 13 "Advanced Program Controls"switchPWhat statement immediately causes the execution of the next iteration of a loop?continueswitchbreakfor#Day 13 "Advanced Program Controls"continue)What is the goto statement an example of?ifunconditional branchlocal variablememory allocation#Day 13 "Advanced Program Controls"unconditional branch@What type of code is created by the abuse of the goto statement? broken code buggy codespaghetti code meatball code#Day 13 "Advanced Program Controls"spaghetti code4What type of statement is the destination of a goto? declarationswitchlooplabel#Day 13 "Advanced Program Controls"label4What type of loop never satisfies its exit criteria?forwhileendlesslong#Day 13 "Advanced Program Controls"endless;Which of the keywords can be used to exit an infinite loop?breakgotocontinue both A and B#Day 13 "Advanced Program Controls" both A and BNHow many possible values can the expression in a switch statement evaluate to?123 unlimited#Day 13 "Advanced Program Controls" unlimitedjWhich statement is executed when a switch statement finds a match between its expression and a case label?,the statement following the first case label.the statement following the matched case label+the statement following the last case label)the statement following the default label#Day 13 "Advanced Program Controls".the statement following the matched case labeltWhich statement is executed when a switch statement does not find a match between its expression and any case label?,the statement following the first case label.the statement following the matched case label+the statement following the last case label)the statement following the default label#Day 13 "Advanced Program Controls")the statement following the default label—What keyword is usually used to end the execution of statements in a switch case and then execute code just after the switch statement's closing brace?continuegotobreakskip#Day 13 "Advanced Program Controls"break2Which statement will exit a program when executed?gotoswitchexitsystem#Day 13 "Advanced Program Controls"exit,What is the purpose of the system() command?read a disk directory$list the currently running processes send mail!execute operating system commands#Day 13 "Advanced Program Controls"!execute operating system commandsEWhat statement could cause the loop to exit when a count exceeded 50?breakcontinuegotoswitch#Day 13 "Advanced Program Controls"breakAWhat statement could cause the remainder of a loop to be skipped?breakcontinuegotoswitch#Day 13 "Advanced Program Controls"continueOWhich of the following loop constructs can a continue statement be used within?forwhile do...whileall of the above#Day 13 "Advanced Program Controls"all of the aboveIn addition to the loop constructs that are valid for a continue statement, a break statement is also used within what construct? if...thenexitswitchexit#Day 13 "Advanced Program Controls"switch:What exit code is used to show normal program termination?-11100#Day 13 "Advanced Program Controls"0DWhat exit code is used to show that a program terminated abnormally?-11100#Day 13 "Advanced Program Controls"1mWhat happens to the flow of execution when a switch statement has no matching case label and no default case?the program terminates normally!the program terminates abnormallyFthe program resumes execution at the beginning of the switch statement[the program executes the next statement following the closing brace of the switch statement#Day 13 "Advanced Program Controls"[the program executes the next statement following the closing brace of the switch statement