#126 Practice Recursion Problem

#126 Practice Recursion Problem

Assessment

Interactive Video

Computers

9th - 12th Grade

Easy

Created by

Myra Deister

Used 3+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the two parameters of the enigma method?


x and y

a and b

a and z

x and z

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the base case?

When a is greater than z

When a is less than z

When a equals z

When a plus z equal 0

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is returned in the first recursive case when a > z?

a + z

a + Enigma(a-2, z)

z + Enigma(a, z-1)

a - z

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

 In the case where a < z, what does the method return?

z + Enigma(a, z-1)

a + Enigma(a-2, z)

 a + z

 z - Enigma(a, z-1)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What are the initial values passed to enigma in the example?

6 and 3

8 and 3

3 and 8

4 and 3

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the next recursive call made after enigma(8, 3)?

Enigma(6, 3)

Enigma(5, 3)

Enigma(8, 1)

Enigma(10, 3)

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

At what point is the base case reached in the example?

When Enigma(8, 3) is called

When Enigma(4, 3) is called

When Enigma(2, 3) is called

When Enigma(2, 2) is called

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?