Algorithms

Algorithms

11th Grade

6 Qs

quiz-placeholder

Similar activities

Construct 3 Quiz - Game Development

Construct 3 Quiz - Game Development

2nd Grade - Professional Development

10 Qs

 undecidable problems/Heuristics Quizizz!

undecidable problems/Heuristics Quizizz!

9th - 12th Grade

6 Qs

Sorting Algorithms

Sorting Algorithms

9th - 12th Grade

10 Qs

GCSE - Flowcharts

GCSE - Flowcharts

11th Grade

10 Qs

8.1 Algorithms Class Quiz

8.1 Algorithms Class Quiz

7th - 11th Grade

10 Qs

Weekly Quiz 1

Weekly Quiz 1

4th Grade - Professional Development

10 Qs

APCSP Big Idea 3 Review

APCSP Big Idea 3 Review

10th - 12th Grade

8 Qs

Flowchart

Flowchart

11th Grade

10 Qs

Algorithms

Algorithms

Assessment

Quiz

Computers

11th Grade

Hard

Created by

Ms Seccafico

Used 32+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

For which of the following situations would it be best to use a heuristic in order to find a solution that runs in a reasonable amount of time?

Appending a value to a list of n elements, which requires no list elements be examined.

Finding the fastest route that visits every location among n

locations, which requires n! possible routes be examined.

Performing a binary search for a score in a sorted list of n

scores, which requires that fewer than n

scores be examined.

Performing a linear search for a name in an unsorted database of n people, which requires that up to n entries be examined.

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Media Image

A graphic artist uses a program to draw geometric shapes in a given pattern. The program uses an algorithm that draws the shapes based on input from the artist. The table shows the approximate number of steps the algorithm takes to draw different numbers of shapes.


Based on the values in the table, which of the following best characterizes the algorithm for drawing n shapes, where n is a very large number?

The algorithm runs in a reasonable amount of time because it will use approximately n steps to draw n shapes.

The algorithm runs in a reasonable amount of time because it will use approximately n^2 steps to draw n shapes.

The algorithm runs in an unreasonable amount of time because it will use approximately n steps to draw n shapes.

The algorithm runs in an unreasonable amount of time because it will use approximately n^2 steps to draw n shapes.

3.

MULTIPLE SELECT QUESTION

1 min • 1 pt

Media Image

A computer scientist is analyzing four different algorithms used to sort a list. The table below shows the number of steps each algorithm took to sort lists of different sizes.


Based on the values in the table, which of the algorithms appear to run in reasonable time?


Select two answers.

Algorithm A

Algorithm B

Algorithm C

Algorithm D

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

A team of programmers is designing software. One portion of the project presents a problem for which there is not an obvious solution. After some research, the team determines that the problem is undecidable. Which of the following best explains the consequence of the problem being undecidable?

The problem can be solved algorithmically, but it will require an unreasonably long amount of time.

The problem can be solved algorithmically, but it will require an unreasonably large amount of data storage.

There is no possible algorithm that can be used to solve all instances of the problem.

There are several different possible algorithms that can solve the problem, but there is controversy about which is the most efficient.

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

A student wants to determine whether a certain problem is undecidable. Which of the following will demonstrate that the problem is undecidable?

Show that for one instance of the problem, an algorithm can be written that is always capable of providing a correct yes-or-no answer.

Show that for one instance of the problem, no algorithm can be written that is capable of providing a correct yes-or-no answer.

Show that for one instance of the problem, a heuristic is needed to write an algorithm that is capable of providing a correct yes-or-no answer.

Show that for one instance of the problem, an algorithm that runs in unreasonable time can be written that is capable of providing a correct yes-or-no answer.

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the following best explains how algorithms that run on a computer can be used to solve problems?

All problems can be solved with an algorithm that runs in a reasonable amount of time.

All problems can be solved with an algorithm, but some algorithms might need a heuristic to run in a reasonable amount of time.

All problems can be solved with an algorithm, but some algorithms might run in an unreasonable amount of time.

Some problems cannot be solved by an algorithm.