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

Computational Thinking

Computational Thinking

1st - 3rd Grade

10 Qs

Numbers and data: 1-2 Quiz

Numbers and data: 1-2 Quiz

5th Grade

10 Qs

QUIZZ 3 : DATABASE FUNDAMENTALS

QUIZZ 3 : DATABASE FUNDAMENTALS

1st - 3rd Grade

10 Qs

ICT 6C

ICT 6C

2nd - 11th Grade

8 Qs

Boolean quiz part 2

Boolean quiz part 2

2nd - 4th Grade

10 Qs

Introduction to Programming

Introduction to Programming

2nd - 10th Grade

10 Qs

Year 9 - Bubble Sort

Year 9 - Bubble Sort

2nd - 9th Grade

8 Qs

Hari 3 - Kuis Coding & Perkenalan AI - Agung Sugandi

Hari 3 - Kuis Coding & Perkenalan AI - Agung Sugandi

5th 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