AP Computer Science A Unit 5 Section 2 (Constructors)

AP Computer Science A Unit 5 Section 2 (Constructors)

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Created by

Christian Willaum

Used 105+ times

FREE Resource

Student preview

quiz-placeholder

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

Media Image
Media Image
Media Image
Media Image
Media Image

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

Media Image
Media Image
Media Image
Media Image
Media Image

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

The Employee class will contain a String attribute for an employee’s name and a double attribute for the employee’s salary.


Which of the following is the most appropriate implementation of the class?

Media Image
Media Image
Media Image
Media Image
Media Image

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

Student max = new Student ("Max", 10, 3.75);

Student max = new Student (3.75, "Max", 10);

Student max = new Student (3.75, 10, "Max");

Student max = new Student (10, "Max", 3.75);

Student max = new Student (10, 3.75, "Max");

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Media Image

/* Precondition: m <= n */

/* Precondition: n <= m */

/* Precondition: m >= 0 and n >= 0 */

/* Precondition: m <= 0 and n <= 0 */

/* Precondition: m <= 0 and n >= 0 */