If the controlling expression in the switch statement is not equal to any of the case labels and there is no default case, __________ .

a) an error occurs
b) an infinite loop occurs
c) the program continues execution with the next statement after the switch
d) the first case’s statements are executed


c) the program continues execution with the next statement after the switch

Computer Science & Information Technology

You might also like to view...

Which of the following does not declare a 2-by-2 array and set all four of its elements to 0?

a. array, 2> b; b[0][0] = b[0][1] = b[1][0] = b[1][1] = 0; b. array, 2> b = {0}; c. array, 2> b; for (auto const &row : b) { for (auto &element : row) { element = 0; } } d. All of the above initialize all four of the array elements to

Computer Science & Information Technology

To add a custom layout to the master slide set, click ________

A) Master Layout B) Insert Layout C) Insert Placeholder D) Insert Slide Master

Computer Science & Information Technology

In Outline view, click the ________ button to assign a paragraph to a higher level

Fill in the blank(s) with correct word

Computer Science & Information Technology

Critical Thinking QuestionsCase 3-2You are having a lot of trouble placing images in your Visual Basic application. You ask your programming partner Siobhan what might be going onWith your first image, you want the entire image to be visible and to fit precisely in the PictureBox object. To which of the following SizeMode list options in the Properties window for the PictureBox object does Siobhan direct you? a. AutoSizec. Zoomb. Normald. CenterImage

What will be an ideal response?

Computer Science & Information Technology