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

ws5-bmi-m6-0163

ws5-bmi-m6-0163

7th - 12th Grade

10 Qs

R081 - Scripts

R081 - Scripts

10th Grade

10 Qs

Unit 1 Lesson 2 Vocabulary

Unit 1 Lesson 2 Vocabulary

9th - 12th Grade

15 Qs

T_4.2 Identifier, Data Types, Operators & Expressions

T_4.2 Identifier, Data Types, Operators & Expressions

12th Grade - University

10 Qs

Java

Java

9th Grade - University

11 Qs

C++ vs Python: A Quiz Introduction

C++ vs Python: A Quiz Introduction

11th Grade - University

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?