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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!