REVIEW QUIZ Basic Python and Console Interaction

REVIEW QUIZ Basic Python and Console Interaction

12th Grade

25 Qs

quiz-placeholder

Similar activities

OUR LAST QUIZ OF 2020

OUR LAST QUIZ OF 2020

8th - 12th Grade

20 Qs

Computación 1ro y 2do básico

Computación 1ro y 2do básico

1st Grade - University

20 Qs

[EOE1-2P-1] Organizadores

[EOE1-2P-1] Organizadores

1st Grade - University

20 Qs

QUIZ 4 : TOPIC 10 [STANDARD COSTING & VARIANCE ANALYSIS]

QUIZ 4 : TOPIC 10 [STANDARD COSTING & VARIANCE ANALYSIS]

1st Grade - University

20 Qs

SÍLABA TÓNICA Y ÁTONA

SÍLABA TÓNICA Y ÁTONA

1st Grade - University

20 Qs

Guess the Anime Character

Guess the Anime Character

KG - Professional Development

21 Qs

Mahatma Gandhi Ji Quiz

Mahatma Gandhi Ji Quiz

3rd Grade - Professional Development

20 Qs

REVISION 4 : TOPIC 9 [ACCOUNTING FOR NON-CURRENT ASSETS]

REVISION 4 : TOPIC 9 [ACCOUNTING FOR NON-CURRENT ASSETS]

1st Grade - University

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?