Programming Day 1

Programming Day 1

10th - 12th Grade

5 Qs

quiz-placeholder

Similar activities

Python Boolean and If

Python Boolean and If

9th - 12th Grade

10 Qs

Unit 4 Vocabulary

Unit 4 Vocabulary

11th - 12th Grade

10 Qs

Pseudocode Input

Pseudocode Input

9th - 12th Grade

10 Qs

KS4 Programming Techniques (1)

KS4 Programming Techniques (1)

8th - 10th Grade

10 Qs

VB Using Expressions and Operators

VB Using Expressions and Operators

10th Grade

10 Qs

Variables Computer Science

Variables Computer Science

9th - 12th Grade

6 Qs

Intro to Python

Intro to Python

KG - University

10 Qs

Java Strings

Java Strings

1st Grade - Professional Development

10 Qs

Programming Day 1

Programming Day 1

Assessment

Quiz

Computers

10th - 12th Grade

Hard

Created by

Richard Jr.

Used 68+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Consider the above. What are the values of first and second as a result of executing the code segment?

The value of first is true, and the value of second is true.

The value of first is true, and the value of second is false.

The value of first is false, and the value of second is true.

The value of first is false, and the value of second is false.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A teacher is writing a code segment that will use variables to represent a student’s name and whether or not the student is currently absent. Which of the following variables are most appropriate for the code segment?

A string variable named s and a Boolean variable named a

A string variable named s and a numeric variable named n

A string variable named studentName and a Boolean variable named isAbsent

A string variable named studentName and a numeric variable named numAbsences

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The variable isOpen is to be used to indicate whether or not a store is currently open. Which of the following is the most appropriate data type for isOpen ?

Boolean

number

string

list

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following code segments can be used to interchange the values of the variables num1 and num2 ?

Media Image
Media Image
Media Image
Media Image

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

Consider the above code segment.


Which of the following initial values of the variable y would result in the variable z being set to 2 after the code segment is executed?

1

2

3

4