Answered step by step
Verified Expert Solution
Link Copied!

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

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts

Authors: David M. Kroenke, David J. Auer

7th edition

133544621, 133544626, 0-13-354462-1, 978-0133544626

More Books

Students also viewed these Databases questions

Question

What are the computer ethical issues regarding equity in access?

Answered: 1 week ago

Question

Explain the focus of safety programs.

Answered: 1 week ago

Question

Describe the consequences of musculoskeletal disorders.

Answered: 1 week ago