CPT 236 Test 3 Review

CPT 236 Test 3 Review

University

45 Qs

quiz-placeholder

Similar activities

Android Midterm

Android Midterm

University

50 Qs

Assignment Quiz

Assignment Quiz

University

47 Qs

Quiz Penilaian AP2A

Quiz Penilaian AP2A

University

40 Qs

Array in Python

Array in Python

University

45 Qs

EPA-11-DEC-2021 On Java

EPA-11-DEC-2021 On Java

University

50 Qs

Python Basic

Python Basic

University

50 Qs

Final Exam PKB

Final Exam PKB

University

50 Qs

Pemodelan Perangkat Lunak

Pemodelan Perangkat Lunak

11th Grade - University

50 Qs

CPT 236 Test 3 Review

CPT 236 Test 3 Review

Assessment

Quiz

Computers

University

Medium

Created by

Reza Naqvi

Used 6+ times

FREE Resource

45 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What modifier should you use on a class so that a class in the same package can access it but a class (including a subclass) in a different package cannot access it?

public

private

protected

Use the default modifier

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Polymorphism means ______________.

that data fields should be declared private

that a class can extend another class

that a variable of supertype can refer to a subtype object

that a class can contain another class

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Inheritance means ______________.

that data fields should be declared private

that a class can extend another class

that a variable of supertype can refer to a subtype object

that a class can contain another class

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Encapsulation means ______________.

that data fields should be declared private

that a class can extend another class

that a variable of supertype can refer to a subtype object

that a class can contain another class

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

You can create an ArrayList using _________.

new ArrayList[]

new ArrayList[100]

new ArrayList<>()

ArrayList()

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What modifier should you use on the members of a class so that they are not accessible to another class in a different package, but are accessible to any subclasses in any package?

public

private

protected

Use the default modifier.

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Suppose an ArrayList list contains {"red", "green", "red", "green"}. What is the list after the following code?

list.remove("red");

{"red", "green", "red", "green"}

{"green", "red", "green"}

{"green", "green"}

{"red", "green", "green"}

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?