Binary and Chapter 9 Lessons 1-2 Quiz Review

Binary and Chapter 9 Lessons 1-2 Quiz Review

10th - 12th Grade

6 Qs

quiz-placeholder

Similar activities

APCSA Inheritance

APCSA Inheritance

10th - 12th Grade

5 Qs

Post Test Multilevel Pewarisan

Post Test Multilevel Pewarisan

11th Grade

6 Qs

AP CSA - Inheritance, plus one while loop.

AP CSA - Inheritance, plus one while loop.

12th Grade

10 Qs

CodeHS 4.12 Inheritance

CodeHS 4.12 Inheritance

9th - 12th Grade

7 Qs

Object Oriented Programming in Python

Object Oriented Programming in Python

12th Grade

10 Qs

CAI710 - Inheritance

CAI710 - Inheritance

12th Grade

8 Qs

CodeHS 4.15 Interfaces

CodeHS 4.15 Interfaces

9th - 12th Grade

10 Qs

Superclass

Superclass

10th - 12th Grade

5 Qs

Binary and Chapter 9 Lessons 1-2 Quiz Review

Binary and Chapter 9 Lessons 1-2 Quiz Review

Assessment

Quiz

Computers

10th - 12th Grade

Medium

Created by

Jonathan Martin

Used 2+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is 13 in binary?

1010

1110

1101

1100

2.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is 13 in hexadecimal?

A

B

C

D

3.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

The extends keyword is used to:

copy a parent class

make an int longer

to get access to methods and constructors of a parent class

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following keywords allows a child class to access the overridden methods in a parent class?

new

this

extends

super

none of the above

5.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is it called when two methods have the same name but different parameters?

Recursion

Overriding

Overloading

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

Which of the following should be true of a superclass?

Superclass data should be made public so the subclasses can access it.

A superclass can contain methods that will be used by all subclasses

A superclass should contain methods that will be used only by the superclass.