Programming Day 1

Programming Day 1

10th - 12th Grade

5 Qs

quiz-placeholder

Similar activities

Variables Computer Science

Variables Computer Science

9th - 12th Grade

6 Qs

Computer Science Variables

Computer Science Variables

9th - 12th Grade

6 Qs

Java Script

Java Script

10th - 12th Grade

10 Qs

Variables & Data Types

Variables & Data Types

6th - 12th Grade

10 Qs

Python: Functions and Parameters

Python: Functions and Parameters

9th - 12th Grade

10 Qs

Comp Sci Unit 2 #4

Comp Sci Unit 2 #4

11th Grade

10 Qs

Pseudocode Input

Pseudocode Input

9th - 12th Grade

10 Qs

Variables in Computer Science

Variables in Computer Science

9th - 12th Grade

6 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