Quiz Competition

Quiz Competition

University

30 Qs

quiz-placeholder

Similar activities

Pre Test pkn 8

Pre Test pkn 8

1st Grade - University

25 Qs

D12 CHECK YOUR LEVEL

D12 CHECK YOUR LEVEL

University

25 Qs

TEHE22

TEHE22

University

25 Qs

Prof. Ed. -Curriculum Development

Prof. Ed. -Curriculum Development

University

25 Qs

NORMOGRAMA Y DOCUMENTO ELECTRONICO

NORMOGRAMA Y DOCUMENTO ELECTRONICO

University

25 Qs

Color Theory and Color Harmony Quiz

Color Theory and Color Harmony Quiz

University

25 Qs

Autoevaluación Temas 6 & 7 INF PRES

Autoevaluación Temas 6 & 7 INF PRES

University

25 Qs

Latihan 3.1

Latihan 3.1

8th Grade - Professional Development

25 Qs

Quiz Competition

Quiz Competition

Assessment

Quiz

Education

University

Hard

Created by

S. Aarthi

Used 2+ times

FREE Resource

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

1. What will be the output of the following code?

[1], [2], [3], [4]

[1], [1, 2], [3], [1, 2, 4]

[1], [1, 2], [3], [1, 2, 3, 4]

[1], [1, 2], [3], [3, 4]

Answer explanation

The default argument lst=[] is mutable. It retains its state between function calls unless explicitly overridden.

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

2. What will be the output?

[1, 2, 3]

Error

[1, 2, 3, [4, 5]]

[1, 2, 3, 4, 5]

Answer explanation

Since y = x, both variables point to the same list. The += operation modifies the existing list, so x also gets updated.

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

3. What is the output of this code?

[1], [2], [3]

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

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

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

Answer explanation

Similar to Question 1, the default mutable list retains its state across function calls.

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

4. What will be the output?

True

False

None

Error

Answer explanation

Any non-empty string in Python is truthy, regardless of its content.

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

5. What is the result of this expression?

True

False

None

Error

Answer explanation

Due to floating-point precision errors, 0.1 + 0.2 is not exactly 0.3, but rather 0.30000000000000004.

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

6. What does this return?

[1, 2, 3, 4, 5]

{1, 2, 2, 3, 4, 4, 5}

Error

{1, 2, 3, 4, 5}

Answer explanation

A set only stores unique elements.

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

7. Which of the following is immutable in Python?

List

Tuple

Dictionary

Set

Answer explanation

Lists, dictionaries, and sets are mutable, while tuples are immutable.

Create a free account and access millions of resources

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?