Search and Sort (Insertion/Bubble Sort/Selection Sort)

Search and Sort (Insertion/Bubble Sort/Selection Sort)

1st - 5th Grade

8 Qs

quiz-placeholder

Similar activities

Coding Vocabulary

Coding Vocabulary

4th - 6th Grade

13 Qs

Bab 3 : Algoritma Tingkatan 3

Bab 3 : Algoritma Tingkatan 3

1st Grade

12 Qs

Algorithm & Sequence

Algorithm & Sequence

1st - 5th Grade

10 Qs

Bubble Sort

Bubble Sort

1st Grade - Professional Development

13 Qs

Quick Sort Quiz

Quick Sort Quiz

1st Grade

10 Qs

ASKT3 : BUCKET SORT

ASKT3 : BUCKET SORT

3rd Grade

10 Qs

SEARCH-SORT

SEARCH-SORT

KG - University

10 Qs

CIRI-CIRI SORT

CIRI-CIRI SORT

1st Grade

6 Qs

Search and Sort (Insertion/Bubble Sort/Selection Sort)

Search and Sort (Insertion/Bubble Sort/Selection Sort)

Assessment

Quiz

Computers

1st - 5th Grade

Hard

Created by

Farzana Kosgi

Used 1+ times

FREE Resource

8 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which algorithm matches this description: "a sorting algorithm that treats the input as two parts, a sorted part and an unsorted part, and repeatedly selects the proper next value to move from the unsorted part to the end of the sorted part."

Selection Sort

Insertion Sort

Radix Sort

Merge Sort

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which algorithm matches this description: "a sorting algorithm that treats the input as two parts, a sorted part and an unsorted part, and repeatedly inserts the next value from the unsorted part into the correct location in the sorted part."

Selection Sort

Insertion Sort

Merge Sort

Radix Sort

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The mechanism of finding an element /key in a given set of elements is known as ________________

sorting

searching

both

none

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A searching technique which works on both sorted and unsorted list

Binary search

Linear Search

both

none

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A sorting technique where consecutive elements are compared and swapped

slection

insertion

bubble sort

shell sort

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the advantage of bubble sort over other sorting techniques?

A. It is faster

B. Consumes less memory

C. Detects whether the input is already sorted

D. All of the mentioned

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following lists represent 3 passes of a sorting algorithm. Which algorithm is being used to sort the list?
 
4    8    6    2    5    7 
4    8    6    2    5    7 
4    6    8    2    5    7
Bubble Sort
Selection Sort
Insertion Sort

8.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which sorting algorithm places each number into the right place one after the other until all are in the right place.
Insertion
Bubble