Recursion Contest

Recursion Contest

10th - 12th Grade

10 Qs

quiz-placeholder

Similar activities

CodeHS Lessons 2.1 - 2.5

CodeHS Lessons 2.1 - 2.5

8th - 12th Grade

11 Qs

APCSA Unit 6

APCSA Unit 6

10th - 12th Grade

14 Qs

C++ - Loops and Random Numbers

C++ - Loops and Random Numbers

9th - 12th Grade

14 Qs

CWA Java 3

CWA Java 3

11th - 12th Grade

8 Qs

Java Script Quiz

Java Script Quiz

9th - 12th Grade

15 Qs

8525 AQA GCSE  3.1.1 Pseudo-code

8525 AQA GCSE 3.1.1 Pseudo-code

10th - 11th Grade

14 Qs

AppsLab_Q3

AppsLab_Q3

1st Grade - Professional Development

12 Qs

CodeHS 2.8 Functions to 2.12 User Input Review

CodeHS 2.8 Functions to 2.12 User Input Review

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?