Binary search Quiz

Binary search Quiz

University

8 Qs

quiz-placeholder

Similar activities

AP CSA Recursion Binary Search Merge Sort

AP CSA Recursion Binary Search Merge Sort

University

11 Qs

AP CSA Binary Search and Merge Sort

AP CSA Binary Search and Merge Sort

University

11 Qs

AdvancedProgramming_intro

AdvancedProgramming_intro

University

10 Qs

Search Algorithms in Python (A)

Search Algorithms in Python (A)

University

8 Qs

PDS - 04225 Searching & Algorithm Analysis - Chapter 4

PDS - 04225 Searching & Algorithm Analysis - Chapter 4

University

10 Qs

Data Structure & Algorithm

Data Structure & Algorithm

University

10 Qs

AI QUIZ

AI QUIZ

University

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

Binary search Quiz

Binary search Quiz

Assessment

Quiz

Computers

University

Hard

Created by

Easther Tie

Used 4+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

1. In which of the following cases, binary search algorithm is used?​

To search an element in an unordered list.

To search an element in a list of few elements.

To search an element in any ordered list with large number of elements

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

2. How does a binary search algorithm works?​

Dividing the list into halves until the item is matched with one in the list.​

Starts with the first element and checks the next element consecutively until a match is found.

None of the above​

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

3. An array with 32 elements is input to a binary search algorithm. How many maximum number of comparisons are performed?​

32

8

16

5

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

4. An array with 32 elements is input to a linear search algorithm. How many maximum number of comparisons are performed?​

32

8

16

5

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

5. How is the midpoint of the list calculated?​

midpoint= round ((first_element+last_element)/2)

midpoint= round ((lower_bound+upper_bound)/2)​

midpoint=(lower_bound+upper_bound)/2​

midpoint= round ((lower_bound+upper_bound))

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

6. Complete the sentence: The lower half of the list is discarded if the value at midpoint is …………………….. item searched.​

less than

equal to

greater than

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

7. True or False: The upper half of the list is discarded if the value at midpoint is greater than item searched.​

true

false

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

8. What is the disadvantage of binary search algorithm?​

It takes longer time when compared to linear search algorithm​

It is very complex to understand​

It works only on sorted lists​