REVIEW QUIZ Basic Python and Console Interaction

REVIEW QUIZ Basic Python and Console Interaction

12th Grade

25 Qs

quiz-placeholder

Similar activities

Kod Arahan F2

Kod Arahan F2

9th - 12th Grade

20 Qs

LA PERSONALIDAD

LA PERSONALIDAD

9th - 12th Grade

20 Qs

EVALUACIÓN DIAGNÓSTICA ASIGNATURA ESPAÑOL III

EVALUACIÓN DIAGNÓSTICA ASIGNATURA ESPAÑOL III

KG - University

20 Qs

T1, Subtema 2 Hewan Sahabatku

T1, Subtema 2 Hewan Sahabatku

12th Grade

20 Qs

Educación Inclusiva

Educación Inclusiva

12th Grade

20 Qs

TIẾN TRÌNH VĂN HỌC VIẾT VIỆT NAM

TIẾN TRÌNH VĂN HỌC VIẾT VIỆT NAM

KG - 12th Grade

20 Qs

SUPERFIJAS ÁREA A BIOLOGÍA- ANATOMÍA

SUPERFIJAS ÁREA A BIOLOGÍA- ANATOMÍA

9th - 12th Grade

21 Qs

Concurso de Ortografía- Escuela Normal la Presentación Soatá

Concurso de Ortografía- Escuela Normal la Presentación Soatá

6th - 12th Grade

20 Qs

REVIEW QUIZ Basic Python and Console Interaction

REVIEW QUIZ Basic Python and Console Interaction

Assessment

Quiz

Education

12th Grade

Practice Problem

Easy

Created by

Catherine L Hulcher

Used 4+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

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.

Access all questions and much more by creating a free account

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

Already have an account?