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

Pemprograman Berbasis Objek(PBO)

Pemprograman Berbasis Objek(PBO)

12th Grade

11 Qs

Java Lab Code.org AP CSA

Java Lab Code.org AP CSA

12th Grade

10 Qs

Array

Array

11th Grade - University

10 Qs

Cybercrime

Cybercrime

7th - 10th Grade

10 Qs

AP CSA 5.6/5.7 (Methods & Static)

AP CSA 5.6/5.7 (Methods & Static)

10th Grade

5 Qs

Moringa JavaScript Arrays

Moringa JavaScript Arrays

5th Grade - Professional Development

10 Qs

AP Computer Science A Unit 5

AP Computer Science A Unit 5

10th - 12th Grade

6 Qs

Java Basic Syntax Quiz

Java Basic Syntax Quiz

10th Grade

10 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 18+ 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.