Search Header Logo

Recursion Contest

Authored by Herman Galioulline

Computers

10th - 12th Grade

Used 29+ times

Recursion Contest
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Media Image

1234

4321

12344321

43211234

Many digits are printed due to infinite recursion.

2.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Media Image

words.remove(0);

printRightToLeft(words);

words.remove(words.size());

printRightToLeft(words);

words.remove(words.size() - 1);

printRightToLeft(words);

printRightToLeft(words);

words.remove(0);

printRightToLeft(words);

words.remove(words.size() - 1);

3.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Media Image

int val = maximum(data, start);

int val = maximum(data, start - 1);

int val = maximum(data, start + 1);

int val = maximum(data[start - 1], start);

int val = maximum(data[start + 1], start);

4.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Media Image

The variable total should be initialized to 1.

The variable x should be initialized to 0.

The condition in the while loop header should be x < n - 1.

The condition in the while loop header should be x <= n.

No change is required; the methods, as currently written, return the same values when they are called with the same positive integer parameter n.

5.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Media Image

I only

II only

III only

II and III only

I, II, and III

6.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Media Image

1

3

4

5

7

7.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Media Image

-1

5

6

7

8

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Microsoft

Continue with Microsoft

or continue with

Facebook

Facebook

Apple

Apple

Others

Others

Already have an account?