Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started