Python Quiz

Python Quiz

12th Grade

20 Qs

quiz-placeholder

Similar activities

Python Pandas

Python Pandas

12th Grade

20 Qs

File Handling - Grade XII

File Handling - Grade XII

12th Grade

15 Qs

Adobe Illustrator Ch1-2

Adobe Illustrator Ch1-2

9th - 12th Grade

20 Qs

File Handling In Python

File Handling In Python

12th Grade

20 Qs

File Handling in Python

File Handling in Python

12th Grade

15 Qs

Python Files

Python Files

12th Grade

20 Qs

Python Text Files

Python Text Files

12th Grade

20 Qs

Computer Science Writing to a File

Computer Science Writing to a File

12th Grade

20 Qs

Python Quiz

Python Quiz

Assessment

Quiz

Computers

12th Grade

Easy

Created by

A Saaqib

Used 1+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The order of precedence in the Python language is:

A) Exponential

B) Parentheses

C) Division

D) Multiplication

E) Subtraction

F) Addition

a. B,A,D,C,F,E

b. A,B,D,C,F,E

c. A,B,C,D,E,F

d. B,A,D,C,E,F

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The value of the Python expression given below would be:

4+2**5//10

77

0

3

7

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

s='{0}, {1}, and {2}’

s.format(‘hi’, ‘great’, ‘day’)

‘hi, great, and day’

‘hi great and day’

‘hi, great, day’

Error

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which arithmetic operators can we NOT use with strings?

+

*

All of the above

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Is this code valid in Python?(in Interpreter Mode)

>>> m=6,7,8,9

>>> m

No, many values will unpack

Yes, (6,7,8,9) will be printed

Yes, 6 will be printed

Yes, [6,7,8,9] will be printed

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The output of this Python code would be:

>>> x={1:”X”,2:”Y”,3:”Z”}

>>> del x

the del method does not exist for dictionary

the del would delete the values present in dictionary

the del would delete the entire dictionary

the del would delete all the keys in dictionary

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following forces an expression to be converted into specific type?

Implicit type casting 

Mutable type casting

Immutable type casting

Explicit type casting

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?