AP CSA 5.4 / 5.5 (Getters / Setters)

AP CSA 5.4 / 5.5 (Getters / Setters)

10th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

C# lesson10

C# lesson10

1st - 10th Grade

10 Qs

AP CSA Unit 1 & 2 Review

AP CSA Unit 1 & 2 Review

9th - 12th Grade

10 Qs

C# 11

C# 11

1st - 10th Grade

10 Qs

Java Code Tracing Practice A

Java Code Tracing Practice A

9th - 12th Grade

10 Qs

Session 1

Session 1

9th - 12th Grade

10 Qs

String Handling in Java

String Handling in Java

10th Grade

8 Qs

Unit 5 MCQ

Unit 5 MCQ

12th Grade

11 Qs

AP Computer Science A Unit 5

AP Computer Science A Unit 5

10th - 12th Grade

6 Qs

AP CSA 5.4 / 5.5 (Getters / Setters)

AP CSA 5.4 / 5.5 (Getters / Setters)

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Created by

Herman Galioulline

Used 17+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

The return type for the isOlderThan5 method should be void.

The return type for the isOlderThan5 method should be String.

The return type for the isOlderThan5 method should be int.

The isOlderThan5 method is missing a return statement for the case when age is less than or equal to 5.

The isOlderThan5 method should receive the variable age as a parameter.

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

The class is missing a mutator method.

The class is missing an accessor method.

The accessor method is missing a return type.

The accessor method returns a variable other than an instance variable.

The instance variables should be designated public instead of private.

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

The getH method should have a double parameter.

The getH method should have an int parameter.

The getH method should return newH instead of h.

The getH method should have a return type of int.

The getH method should have a return type of void.

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

In line 10, the appendIt method should be declared as return type String.

Line 12 should be changed to str = s + str;.

Line 12 should be changed to str = str + s;.

Line 12 should be changed to return s + str;.

Line 12 should be changed to return str + s;.

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

In line 14, levelUp should be declared as type void.

In line 14, amount should be declared as type void.

Line 16 should be changed to strength + amount;.

Line 16 should be changed to return strength + amount;.

Line 16 should be changed to return amount;.

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

In lines 14 and 18, change < to >.

In lines 14 and 18, change < to <=.

In line 16, change score1 to num1 and in line 18, change score2 to num2.

In line 18, change else if to if.

In line 18, change else if to else.