Topic 4.2 Video 1

Topic 4.2 Video 1

11th Grade

6 Qs

quiz-placeholder

Similar activities

Java 1

Java 1

11th Grade

10 Qs

Code.org Discoveries

Code.org Discoveries

9th - 11th Grade

10 Qs

Alice 2 - Chapter 3

Alice 2 - Chapter 3

7th - 12th Grade

10 Qs

TERM 1 REVISION QUIZ 2-GRADE 11

TERM 1 REVISION QUIZ 2-GRADE 11

11th Grade

10 Qs

Variables and Data Types

Variables and Data Types

10th - 12th Grade

10 Qs

Python Variables

Python Variables

7th - 12th Grade

10 Qs

C++ For Loop Basic Grade 12

C++ For Loop Basic Grade 12

11th Grade

10 Qs

Code.org Unit 5 - Loops

Code.org Unit 5 - Loops

9th - 12th Grade

10 Qs

Topic 4.2 Video 1

Topic 4.2 Video 1

Assessment

Quiz

Computers

11th Grade

Medium

Created by

Myra Deister

Used 1+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The format of a for loop header is

for(initialization; boolean condition; update)

Which is executed first?

boolean condition
update
execution
initialization

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The format of a for loop header is

for(initialization; boolean condition; update)

Which is executed inside the loop but after the body of the loop has been executed?

boolean condition
update
execution
initialization

3.

OPEN ENDED QUESTION

3 mins • 1 pt

Media Image

Describe the syntax error in this code.

Evaluate responses using AI:

OFF

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is output by the code below?

 

for(int i=0; i<=10; i=i+2)

   System.out.print(i);

246810

02468

0246810

10

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is output by the code below?

 

int ans = 0;

for(int i=10; i>-1; i=i-2)

  ans += i;

System.out.print( ans );

25

30

32

27

6.

OPEN ENDED QUESTION

3 mins • 1 pt

Media Image

Upload a screenshot of the last screen of the video. Make sure your name is displayed and the title of the video. There is an example on the left.

Evaluate responses using AI:

OFF