Question: What is the final value of variable myNum after the following code fragment executes? int myNum -0 int value 1; switch (value) case 1: myNum-10:
What is the final value of variable myNum after the following code fragment executes? int myNum -0 int value 1; switch (value) case 1: myNum-10: break; case 2: myNum -20; break; case 3: myNum -30; break; case 4: myNum 40 break; default break O 10 20 O 30 O 40 What is the final value of variable myNum after the following code fragment executes? int myNum0 int value 2 switch (value) case 1: myNum 99; break; case 2: myNum 89; break; case 3: myNum 79 break; case 4 myNum 68; breaki default: break 89 CO 79 O 68 D Question 23 What is the final value of variable myNum after the following code fragment executes? int myNum -0 int value 3; switch (value) case 1: myNum 14 break; case 2: myNum-15 breaki case 3: my Num - 16 breaki case 4: myNum 17 break: default: break; 14 15 16 0 17 Question 24 What is the final value of variable myNum after the following code fragment executes? int myNum-0 int value4; switch (value) case 1: myNum 52; break; case 2: myNum 53; break; case 3: myNum 54; break case 4 myNum 55; break; default: break; 52 53 O 54 1 pts DI Question 25 What is the final value of the variable num given the following code fragment? int row = 2; int col = 5; int num 0 ifCrow
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
