QUIZ -21

QUIZ -21

12th Grade - University

8 Qs

quiz-placeholder

Similar activities

ASK Ting 1 - Bab 1.1.1

ASK Ting 1 - Bab 1.1.1

KG - University

10 Qs

Plants vs zombies 2 quiz on plant names

Plants vs zombies 2 quiz on plant names

KG - 12th Grade

10 Qs

Roteamento IS-IS

Roteamento IS-IS

University

10 Qs

Anime

Anime

KG - University

10 Qs

Operaciones con Lenguajes

Operaciones con Lenguajes

University

10 Qs

Circuitos Eléctricos_Semana02

Circuitos Eléctricos_Semana02

University

10 Qs

Tecnologías de la comunicación II U II

Tecnologías de la comunicación II U II

University

10 Qs

CLASS 9 AI -  VIVA 2024-25

CLASS 9 AI - VIVA 2024-25

9th 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]