QUIZ -21

QUIZ -21

12th Grade - University

8 Qs

quiz-placeholder

Similar activities

Equations of Circles

Equations of Circles

9th - 12th Grade

10 Qs

Idiomatic Python

Idiomatic Python

University

13 Qs

Teacher Evaluation Form

Teacher Evaluation Form

9th Grade - Professional Development

12 Qs

R variable Data Type and Flow Control Quiz

R variable Data Type and Flow Control Quiz

University

12 Qs

PPT icon

PPT icon

3rd - 12th Grade

10 Qs

Introduction to Arrays

Introduction to Arrays

KG - University

10 Qs

Binary Trees

Binary Trees

12th Grade

10 Qs

A level Computer Science In-fix post-fix Reverse polish

A level Computer Science In-fix post-fix Reverse polish

10th Grade - University

10 Qs

QUIZ -21

QUIZ -21

Assessment

Quiz

Computers

12th Grade - University

Hard

Created by

shanmugaraja .

Used 2+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is incorrect file handling mode in Python?

r

x

t+

b

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code


print('PYnative ', end='//')

print(' is for ', end='//')

print(' Python Lovers', end='//')

PYnative /

is for /

Python Lovers /

PYnative //

is for //

Python Lovers //

PYnative // is for // Python Lovers //

PYnative /is for /Python Lovers /

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of this code?

def func(val1, val2=2, val3=7, val4=1):

return val1**val2**val3


print(func(val2=2, val1=2, val3=4))

256

32768

65536

This code raises an exception

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How will you not create a dictionary?

d = {'milk': 50, 'celery': 40}

d = dict(milk=50, celery=40)

d = dict([ ('milk', 50), ('celery', 40) ])

d = { ('milk', 50), ('celery', 40) }

d = {} d['milk'] = 50 d['celery'] = 40

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the following code print?

a = [1, 2, 3]

a is a[:]

True

False

This code raises an exception

Error

6.

MULTIPLE SELECT QUESTION

45 sec • 1 pt

Which of these can you use as a dictionary key?

Please select 3 correct answers

'key'

'count;

['1','2']

('key','count')

5j

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the value of round(12.5) – round(11.5)?

1

0

2

3

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of this code?

l1 = [1, 2, 3]

l2 = l1

l3 = l1.copy()

l4 = list(l1)

l1[0] = [7]

print(l1, l2, l3, I4)

[7, 2, 3] [7, 2, 3] [1, 2, 3] [1, 2, 3]

[[7], 2, 3] [[7], 2, 3] [[7], 2, 3] [1, 2, 3]

[7, 2, 3] [7, 2, 3] [7, 2, 3] [1, 2, 3]

[[7], 2, 3] [[7], 2, 3] [1, 2, 3] [1, 2, 3]