Python Quiz

Python Quiz

12th Grade

20 Qs

quiz-placeholder

Similar activities

HTML & CSS Review

HTML & CSS Review

7th - 12th Grade

20 Qs

SOUND AND FILM EXAM

SOUND AND FILM EXAM

KG - University

20 Qs

Komputer Akuntansi

Komputer Akuntansi

10th - 12th Grade

20 Qs

Programmer Quiz

Programmer Quiz

12th Grade

20 Qs

uCertify Lesson 1: Part II

uCertify Lesson 1: Part II

8th - 12th Grade

20 Qs

Web Page Design II

Web Page Design II

9th - 12th Grade

15 Qs

HTML Hyperlinks

HTML Hyperlinks

8th - 12th Grade

20 Qs

Code Quiz

Code Quiz

KG - University

21 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?