Recursion Contest

Recursion Contest

10th - 12th Grade

10 Qs

quiz-placeholder

Similar activities

Delphi Arguments/Returns

Delphi Arguments/Returns

8th - 10th Grade

10 Qs

INTRODUCTION ARDUINO

INTRODUCTION ARDUINO

12th Grade

10 Qs

Progamming - Java Syntax

Progamming - Java Syntax

11th - 12th Grade

15 Qs

ICS Test #4 review

ICS Test #4 review

9th - 12th Grade

15 Qs

C++ Unit 3 & 4 Review

C++ Unit 3 & 4 Review

9th - 12th Grade

14 Qs

Arrays Intro

Arrays Intro

9th - 12th Grade

12 Qs

For Loops HW

For Loops HW

9th - 12th Grade

12 Qs

Code.org APCSA Unit

Code.org APCSA Unit

9th - 12th Grade

10 Qs

Recursion Contest

Recursion Contest

Assessment

Quiz

Computers

10th - 12th Grade

Hard

Created by

Herman Galioulline

Used 29+ times

FREE Resource

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

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?