"Searching " in Python

"Searching " in Python

12th Grade

9 Qs

quiz-placeholder

Similar activities

GCSE Computer Science Revison Quiz Lesson 9

GCSE Computer Science Revison Quiz Lesson 9

10th Grade - University

14 Qs

Understanding Image Representation and Compression

Understanding Image Representation and Compression

10th Grade - University

11 Qs

Computing test

Computing test

9th - 12th Grade

12 Qs

The Technology Life

The Technology Life

8th - 12th Grade

14 Qs

Principles of Programming

Principles of Programming

KG - University

13 Qs

bab 3-search&sort

bab 3-search&sort

5th - 12th Grade

10 Qs

SEARCH

SEARCH

12th Grade

10 Qs

7.5 Standard Methods of Solution Cambridge IGCSE 0478

7.5 Standard Methods of Solution Cambridge IGCSE 0478

10th Grade - University

10 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