100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
ITSS 3311 Final UPDATED Exam Questions and CORRECT Answers $7.99   Add to cart

Exam (elaborations)

ITSS 3311 Final UPDATED Exam Questions and CORRECT Answers

 3 views  0 purchase
  • Course
  • ITSS 3311
  • Institution
  • ITSS 3311

ITSS 3311 Final UPDATED Exam Questions and CORRECT Answers A while loop executes statements repeatedly while the condition is true. - CORRECT ANSWER- True A while loop executes the loop body first and then checks the loop continuation condition. - CORRECT ANSWER- False A variable declared i...

[Show more]

Preview 2 out of 9  pages

  • August 23, 2024
  • 9
  • 2024/2025
  • Exam (elaborations)
  • Questions & answers
  • ITSS 3311
  • ITSS 3311
avatar-seller
MGRADES
ITSS 3311 Final UPDATED Exam
Questions and CORRECT Answers

A while loop executes statements repeatedly while the condition is true. - CORRECT
ANSWER- True


A while loop executes the loop body first and then checks the loop continuation condition. -
CORRECT ANSWER- False


A variable declared inside a loop can be accessed outside the loop. - CORRECT ANSWER-
False


In a for loop, the continuation expression is evaluated right after the initialization and at the
beginning of each iteration. - CORRECT ANSWER- True


Is there an error?
int sum , i = 1;
while ( i < 3) {
sum = sum + i;
i++;
} - CORRECT ANSWER- Yes, variable sum is not initialized


What should be the value of the variable sum after the execution of the following program?
int sum = 0, i = 1;
while ( i <= 3) {
sum = sum + i;
i++;
} - CORRECT ANSWER- 6


What should be the value of the variable i after the execution of the following program?
int sum = 0, i = 1;

, while ( i <= 3) {
sum = sum + i;
i++;
} - CORRECT ANSWER- 4


How many times will the following loop body repeat?
int sum = 0, i = 1;
while ( i < 3) {
sum = sum + i;
} - CORRECT ANSWER- Infinite


How many times will the following loop body repeat?
int sum = 0, i = 1;
do {
sum = sum + i;
} while ( i > 3); - CORRECT ANSWER- 1


What is the value of variable sum after the following loop?
int sum = 0;
for ( int i = 1; i < 10; i++) {
sum = sum + i;
if (i==2)
break;
} - CORRECT ANSWER- 3


What is the value of variable sum after the following loop?
int sum = 0;
for ( int i = 1; i < 2; i++) {
sum = sum + i;
if (i==2)

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller MGRADES. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $7.99. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

79316 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$7.99
  • (0)
  Add to cart