Looping & Functions C++

Looping & Functions C++

University

20 Qs

quiz-placeholder

Similar activities

C Programming Quiz

C Programming Quiz

University

19 Qs

C programming

C programming

University

15 Qs

XTK022 C Programming Test 1

XTK022 C Programming Test 1

University

20 Qs

Java Control and Loop -2

Java Control and Loop -2

University

20 Qs

C++ Quiz

C++ Quiz

University

20 Qs

oop with c++

oop with c++

University

20 Qs

CIS17A Quiz 2 Review

CIS17A Quiz 2 Review

University

20 Qs

C - Flow Control

C - Flow Control

University

20 Qs

Looping & Functions C++

Looping & Functions C++

Assessment

Quiz

Computers

University

Easy

Created by

Long Trần

Used 5+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of loops in C++?

To execute code only once

To repeat a set of statements multiple times

To store values in memory

To declare variables

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a pre-test loop in C++?

while

do-while

switch

for

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the difference between a while loop and a do-while loop?

while is post-test, do-while is pre-test

while loop checks the condition before executing, do-while checks after execution

do-while loop never executes

They behave the same way

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following loops guarantees at least one execution of the loop body?

for

while

do-while

if

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is an event-controlled loop?

A loop that runs for a specific number of iterations

A loop that continues until a certain event or condition occurs

A loop that runs based on user input

A loop that runs indefinitely

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which loop structure is most suitable for iterating a known number of times?

for loop

while loop

do-while loop

switch statement

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the break statement do in a loop?

It skips the current iteration

It stops the loop and exits immediately

It restarts the loop

It increments the loop variable

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?