Search Algorithms and Computational Thinking

Search Algorithms and Computational Thinking

10th Grade

15 Qs

quiz-placeholder

Similar activities

IGCSE Computer Science - Chapter 9: Problem-Solving and Design

IGCSE Computer Science - Chapter 9: Problem-Solving and Design

9th - 10th Grade

10 Qs

Menus, Dialog Boxes and Methods

Menus, Dialog Boxes and Methods

10th Grade - Professional Development

17 Qs

AP CSP Review

AP CSP Review

9th - 12th Grade

10 Qs

User Input in Python

User Input in Python

6th - 10th Grade

11 Qs

Introduction to Programming

Introduction to Programming

9th - 12th Grade

16 Qs

Fundamentals of Algorithms

Fundamentals of Algorithms

10th Grade

10 Qs

קלט פלט משתנים והוראות השמה

קלט פלט משתנים והוראות השמה

7th Grade - University

20 Qs

Search Algorithms and Computational Thinking

Search Algorithms and Computational Thinking

Assessment

Quiz

Computers

10th Grade

Hard

Created by

Mr B Ebrahim

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Identify the search algorithm.

Random search

Binary search

Denary search

Next Item search

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is not a sorting algorithm?

Bubble

Insertion

Binary

Merge

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which sorting algorithm is described by: split a list into individual lists, then combine these, two lists at a time?

Merge

Bubble

Insertion

None of the above

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which sorting algorithm is described by: take each item in turn, compare it to the items in the sorted list and place it in the ordered position in the sorted list?

Merge

Bubble

Insertion

None of the above

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following list is to be sorted using a bubble sort: 12, 6, 8, 1, 3. What will the list look like after the first iteration through the list?

6, 8, 1, 3, 12

6, 12, 1, 8, 3

1, 3, 6, 8, 12

6, 8, 1, 12, 3

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many arrows should come out of a decision symbol in a flowchart?

0

1

2

3

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following algorithm should take as input one number, and output the 12 times table for that number. Identify the correct algorithm.

number = input("Enter a number") for x = 1 to 12 print(number * x) next x

number = input("Enter a number") for x = 0 to 12 print(number * x) next x

number = input("Enter a number") for x = 1 to 12 print(number X x) next x

number = input("Enter a number") for x = 1 to 12 print(number * number) next x

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?