Python Data Structures and Algorithms Quiz

Python Data Structures and Algorithms Quiz

Professional Development

41 Qs

quiz-placeholder

Similar activities

C&SE PRE-KNOWLEDGE SURVEY (A+ 1102-CORE 2)

C&SE PRE-KNOWLEDGE SURVEY (A+ 1102-CORE 2)

University - Professional Development

40 Qs

HTML CSS JS Teacher Assessment

HTML CSS JS Teacher Assessment

Professional Development

40 Qs

Unix

Unix

1st Grade - Professional Development

36 Qs

CITL3 Review

CITL3 Review

Professional Development

39 Qs

202508500002

202508500002

Professional Development

40 Qs

EXCEL QUIZ 1.

EXCEL QUIZ 1.

9th Grade - Professional Development

38 Qs

Data and Voice Copper Cabling Knowledge Check #1

Data and Voice Copper Cabling Knowledge Check #1

Professional Development

43 Qs

Movies

Movies

2nd Grade - Professional Development

44 Qs

Python Data Structures and Algorithms Quiz

Python Data Structures and Algorithms Quiz

Assessment

Quiz

Computers

Professional Development

Practice Problem

Hard

Created by

nature mind

Used 2+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

41 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the time complexity of appending an element to a list in Python?

O(1)

O(log n)

O(n)

O(n²)

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following code? def mystery_function(arr): return [x**2 for x in arr if x % 2 == 0] print(mystery_function([1, 2, 3, 4, 5]))

[1, 4, 9, 16, 25]

[4, 16]

[2, 4]

None

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the space complexity of a recursive function?

O(1)

O(n)

O(n log n)

O(log n)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which data structure follows First In, First Out (FIFO)?

Stack

Queue

Array

Linked List

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the output of the following code? def find_duplicates(arr): return len(arr) != len(set(arr)) print(find_duplicates([1, 2, 3, 4, 1]))

True

False

[1, 2, 3, 4]

[1]

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is true for a binary search?

The list must be unsorted

The list must be sorted

The list can be unsorted or sorted

The list can only contain negative integers

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the space complexity of merging two sorted arrays of size n?

O(1)

O(n)

O(2n)

O(log n)

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

Already have an account?