REVIEW QUIZ Basic Python and Console Interaction

REVIEW QUIZ Basic Python and Console Interaction

12th Grade

25 Qs

quiz-placeholder

Similar activities

Cuestionario Photoshop 1

Cuestionario Photoshop 1

12th Grade

20 Qs

หลังเรียน บทที่ 1-2-3

หลังเรียน บทที่ 1-2-3

1st Grade - University

20 Qs

Examen de Profetas y Profecías

Examen de Profetas y Profecías

1st - 12th Grade

20 Qs

Control de Lectura Nº 11: MAR, FE, BARCO Y CUIDARÁ DE TI

Control de Lectura Nº 11: MAR, FE, BARCO Y CUIDARÁ DE TI

12th Grade

20 Qs

El campo léxico. RV - 2DO. SEC.

El campo léxico. RV - 2DO. SEC.

1st - 12th Grade

20 Qs

Recursos Naturales del Ecuador

Recursos Naturales del Ecuador

12th Grade

20 Qs

Palabras que se escriben juntas o separadas

Palabras que se escriben juntas o separadas

11th - 12th Grade

20 Qs

repasando contenidos

repasando contenidos

6th - 12th Grade

20 Qs

REVIEW QUIZ Basic Python and Console Interaction

REVIEW QUIZ Basic Python and Console Interaction

Assessment

Quiz

Education

12th Grade

Easy

Created by

Catherine L Hulcher

Used 4+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

input() functions stores that value as a

string

integer

float

Answer explanation

The input() function in Python always returns data as a string, regardless of the type of input provided. Therefore, the correct answer is 'string'.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

On which line will this program call an error in the console?

Line 1

Line 2

Line 3

Line 4

No error will occur

Answer explanation

The program will call an error on Line 2 due to a syntax issue, such as a missing semicolon or incorrect variable declaration. This will prevent the code from executing properly.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following code snippets will result in a type error?

apples = int(input('How many apples? '))
print('Total apples: ' + str(apples + 2))

apples = int(input('How many apples? '))
print(str(apples + 2))

apples = int(input('How many apples? '))
print(apples)

apples = int(input('How many apples? '))
print(2 + ' apples')

Answer explanation

The code snippet 'print(2 + ' apples')' results in a type error because it attempts to add an integer (2) to a string (' apples'), which is not allowed in Python.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following code snippets will not produce an error, assuming the user inputs an integer?

Media Image
Media Image
Media Image

Answer explanation

Media Image

this answer is correct

adds the dozen which is an integer to 1 which is an integer

then converts answer to a string

and prints

NOTICE THE PARENTHESE ARRANGEMENT

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What will be printed to the screen when the following code snippet is run?

<class str>

120

1210

<class int>

Answer explanation

The code snippet likely involves a string operation, resulting in a string type. Therefore, the output will indicate the type of the variable, which is , making it the correct answer.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following cannot be used as a variable name in a Python program?

one_word

oneWord

1word

word1

word_1

Answer explanation

In Python, variable names cannot start with a digit. Therefore, '1word' is invalid, while 'one_word', 'oneWord', 'word1', and 'word_1' are all valid variable names.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following equations will return the lowest value?

print (9 / 6)

print (4 / 2)

print (15.0 / 6.0)

print (8 / 3)

print (9.0 / 4.0)

Answer explanation

The equation print(9 / 6) evaluates to 1.5, which is lower than the other options: 2.0, 2.5, 2.6667, and 2.25. Therefore, print(9 / 6) returns the lowest value.

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?