"Searching " in Python

"Searching " in Python

12th Grade

9 Qs

quiz-placeholder

Similar activities

H446/2 Exam Prep - Q2 Search

H446/2 Exam Prep - Q2 Search

12th Grade

8 Qs

Searching Technique -Linear Search Quiz1

Searching Technique -Linear Search Quiz1

12th Grade

10 Qs

Common Algorithms Quiz

Common Algorithms Quiz

KG - Professional Development

11 Qs

AP CSP BI 3

AP CSP BI 3

9th - 12th Grade

13 Qs

Data Structures & Algorithms

Data Structures & Algorithms

12th Grade

10 Qs

Year 9 Home learning

Year 9 Home learning

10th - 12th Grade

12 Qs

G10 CS Binary Search

G10 CS Binary Search

12th Grade

10 Qs

Understanding Linear Search Algorithm

Understanding Linear Search Algorithm

12th Grade

11 Qs

"Searching " in Python

"Searching " in Python

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Singiza Prince

Used 2+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is Big-O-Notation

A notation used to express the size of oversized pizzas in Python

A way to describe the worst-case scenario of an algorithm's runtime or space complexity

A symbol used in Python for exponentiation operations

A special font used by Python programmers for writing code comments

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What are the types of searching in Python?

Circular and Spiral

Zigzag and Diagonal

Linear and Binary

Random and Chaotic

3.

MULTIPLE CHOICE QUESTION

30 sec • 3 pts

What is a "Searching" Algorithm in Python?

A method for finding lost keys in a Python dictionary

A program that searches for hidden Easter eggs in Python code

A technique for searching the internet using Python web crawlers

An algorithm for looking up information in a list or other data structure

4.

MULTIPLE SELECT QUESTION

30 sec • 2 pts

What are some real world applications of "Searching"

Sorting through a messy closet to find a missing sock

Searching for relevant information in a database or file system

Looking for relevant information on websites and social media platforms

Hunting for buried treasure using Python metal detectors

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following is an advantage of binary search over linear search?

Binary search requires less memory compared to linear search.

Binary search is easier to implement

Binary search requires less memory

Linear is better

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Using binary Search , at which position/index is Bob ?

[ Alice , Felix , Jasmin , kevin , Bob ]

4

5

1

2

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If the list of items in the list is not sorted, binary search still can be used to find a specific item.

True

False

8.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

If a linear search is conducted on an unsorted array / List of integers [5, 8, 2, 10, 3, 6, 1, 9, 4, 7] and the search key is 6, what will be the output?

5

6

1

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a binary search algorithm applied to the sorted list of names ['patrick ', 'Bob', 'Charlie', 'David', 'Peter', 'Olivia'], what will be the output if the search key is "Peter"?

(Hint : Ascii Code)

0

5

4

1

6