Quiz Competition

Quiz Competition

University

30 Qs

quiz-placeholder

Similar activities

Pembangunan Ekonomi

Pembangunan Ekonomi

11th Grade - University

25 Qs

EC8452-EC-II::Quiz-4-Wave Shaping & MVB Ckts.

EC8452-EC-II::Quiz-4-Wave Shaping & MVB Ckts.

University

30 Qs

Program Objectives

Program Objectives

University

28 Qs

OODP FT1 Assessment Questions

OODP FT1 Assessment Questions

University

30 Qs

PIC 16F877 & 16F84 - Programación

PIC 16F877 & 16F84 - Programación

University

30 Qs

Ulangkaji UASA Asas Sains Komputer Tingkatan 1

Ulangkaji UASA Asas Sains Komputer Tingkatan 1

8th Grade - University

30 Qs

DIGITAL ELECTRONICS QUIZ 1

DIGITAL ELECTRONICS QUIZ 1

University

35 Qs

EXCEL

EXCEL

University

30 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
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?