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

Algorithm Quiz #1

Algorithm Quiz #1

2nd Grade

10 Qs

ASKT3 : BUBBLE SORT

ASKT3 : BUBBLE SORT

3rd Grade

10 Qs

Hari 3 - Kuis Coding & Perkenalan AI - Agung Sugandi

Hari 3 - Kuis Coding & Perkenalan AI - Agung Sugandi

5th Grade

10 Qs

HARI 2.KUIS KODING DAN PENGENALAN  AI

HARI 2.KUIS KODING DAN PENGENALAN AI

2nd Grade

12 Qs

MERGE SORT

MERGE SORT

1st - 3rd Grade

8 Qs

Year 1 Term 1 2024

Year 1 Term 1 2024

5th Grade

12 Qs

ASK T3 3.1.1 CIRI-CIRI SEARCH DAN SORT

ASK T3 3.1.1 CIRI-CIRI SEARCH DAN SORT

3rd Grade

10 Qs

Introduction to Programming

Introduction to Programming

2nd - 10th Grade

10 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