Classroom Starters Python

Classroom Starters Python

9th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

Pseudocode - OCR ERL

Pseudocode - OCR ERL

9th - 12th Grade

10 Qs

Python_R

Python_R

2nd Grade - Professional Development

8 Qs

Introduction to Python

Introduction to Python

9th Grade

10 Qs

Python 2

Python 2

9th - 12th Grade

10 Qs

Python Turtle

Python Turtle

KG - Professional Development

11 Qs

CSC401- G9[GEN]_53

CSC401- G9[GEN]_53

9th Grade

10 Qs

conditional and iterative statements

conditional and iterative statements

11th Grade

10 Qs

J277 Programming - Data Types

J277 Programming - Data Types

9th - 11th Grade

11 Qs

Classroom Starters Python

Classroom Starters Python

Assessment

Quiz

Computers

9th - 12th Grade

Hard

Created by

P Resende

Used 7+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a Variable?

Read carefully and choose the best option.

Something that can vary with time but isn't saved in computer memory

A location in computer memory where we can save information and can vary (change) with time?

A way to save information that cannot be called at a later stage of the program?

A location in memory that saves whatever we print to it by using the print statement

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the print command do in Python?

Sends something to the printer?

Sends to the printer whatever we printed on the screen?

Prints whatever we answer in the input without the need of using a print statement?

Prints something to the screen ?

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does input command do in Python?

Puts something on the screen?

Inserts code on a particular line?

Asks the user to answer a question?

Prints something to the screen?

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What type of data is the secondNumber variable?

String

Real/float

Boolean

String

Integer

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which comparison operator means NOT EQUAL TO in python?

= =

>=

<=

!=

>

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which comparison operator means BIGGER OR EQUAL TO in python?

>

<=

!=

<

>=