Question: 1. What is the ultimate value of variable result after the following code has executed? int row = 0; int col = 0; int result
1.
What is the ultimate value of variable result after the following code has executed?
int row = 0; int col = 0; int result = 0; while (row <= 1) { while (col <= 8) { result = row + col; col += 1; } row += 1; } pick 1 answer:
6
8
10
4
2.
What is the value of variable output after the following code has executed?
int num = 5; string output = "A"; while (num < 7) { output = output + "A"; num += 1; } pick 1 answer:
A
AA
AAA
AAAA
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
