M1C9 Intro Iterative Control (SK1)

M1C9 Intro Iterative Control (SK1)

9th - 12th Grade

7 Qs

quiz-placeholder

Similar activities

CIM-Activity 1.2.5 Quiz

CIM-Activity 1.2.5 Quiz

11th Grade

10 Qs

PLTW Eng Ess EOC Test Review 1

PLTW Eng Ess EOC Test Review 1

9th - 12th Grade

10 Qs

DECI-BIN Conversion

DECI-BIN Conversion

12th Grade - University

10 Qs

Kuis Pemahaman Kapasitor

Kuis Pemahaman Kapasitor

10th Grade

10 Qs

JANGKA SORONG

JANGKA SORONG

10th Grade

11 Qs

Python - Array dan Dictionery

Python - Array dan Dictionery

11th Grade

10 Qs

System and System Thinking Exit Ticket NEGH

System and System Thinking Exit Ticket NEGH

12th Grade

12 Qs

Programming and Logic

Programming and Logic

9th Grade

11 Qs

M1C9 Intro Iterative Control (SK1)

M1C9 Intro Iterative Control (SK1)

Assessment

Quiz

Engineering

9th - 12th Grade

Hard

Created by

Muhammad Syafiyadiy

Used 2+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What is the output of the following code?

0 1 2

1 2 3

0 1 2 3

1 2

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following best describes a while loop in Arduino?

Executes a block only once

Executes a block repeatedly until the condition becomes false

Always executes at least once

Runs only in setup()

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What is the output of this while loop?

1 2 3

1 2 3 4

0 1 2

Infinite loop

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What is the output of the code below that uses break?

0 1 2 3 4

0 1 2

1 2 3

0 1

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

What is the output of this for loop using continue?

0 1 2 3 4

0 1 3 4

1 3 4

0 1 2

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the effect of using break in a loop?

Restarts the loop from the beginning

Skips the current iteration

Exits the loop immediately

Skips the first loop condition

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which keyword skips the current iteration but continues the loop?

stop

exit

continue

break