Loop Logic Challenge – C Basics Edition

Loop Logic Challenge – C Basics Edition

Professional Development

30 Qs

quiz-placeholder

Similar activities

Quiz Pemrograman Web

Quiz Pemrograman Web

Professional Development

30 Qs

BTUI'24 - Inter-school ICT Quiz - Preliminary Round

BTUI'24 - Inter-school ICT Quiz - Preliminary Round

Professional Development

30 Qs

Social Media in School Library

Social Media in School Library

Professional Development

25 Qs

FE Basic Quiz

FE Basic Quiz

Professional Development

30 Qs

Networking Fundamentals - Part 2

Networking Fundamentals - Part 2

Professional Development

30 Qs

CTFL Chapter 1

CTFL Chapter 1

Professional Development

32 Qs

2. TEST sul Malware e sistemi di protezione

2. TEST sul Malware e sistemi di protezione

Professional Development

30 Qs

Telecoms

Telecoms

Professional Development

34 Qs

Loop Logic Challenge – C Basics Edition

Loop Logic Challenge – C Basics Edition

Assessment

Quiz

Information Technology (IT)

Professional Development

Hard

Created by

KANIMOZHI A

Used 2+ times

FREE Resource

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

A toy car needs to complete 5 laps around a track. Each lap, the distance increases by 1 meter. Which loop structure is most suitable for tracking this in C?

do...while loop

while loop

for loop

goto statement

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What will be the output of the following code?

1 2 3

2 4 6

2 3 4

1 3 5

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

Find the error in the code below:

No error

while should be replaced with for

Missing braces {} after while

i should be initialized to 0

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What is the value of sum after this loop runs?

10

6

4

8

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What does the following loop print?

Media Image
Media Image
Media Image

no output

6.

MULTIPLE SELECT QUESTION

1 min • 1 pt

Which of the following code snippets will result in an infinite loop?

for(int i = 0; i < 5; i++)

while(1)

for(;;)

while(i++ < 3)

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

To repeat a task exactly 10 times, the best loop to use is:

while loop

goto

for loop

switch

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?