Quiz 3 Flashcards

1
Q

Problems using java arrays?

A

Fixed length
Cannot accommodate extra elements once created
Memory is allocated during creation only, much before the elements are added

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Solution to java arrays?

A

ArrayLists

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Problem with array lists?

A

Cannot store primitive data types (int, double, char, bool)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Solution to array list primitive problems?

A

Store their wrapper classes instead (interger, double, character, boolean)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Unboxing?

A

Is the method of taking an integer object and assigning its value to a primitive int

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Boxing?

A

Is the method of taking a primitive int and assigning it to an integer object

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Is-a test?

A

A teacher is-a person
A student is-a person

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is inheritance?

A

The ability of one class to adopt the data and attributes of other classes

Inheritance allows you to reuse methods that is already written to create more specialised versions of a class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Super keyword

A

Super refers to a child’s parent class

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Method overriding?

A

Method in a subclass with same signature overrides method from base class
New method with same name with same signature

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

final modifer?

A

to specify that a method cannot be overridden in a subclass

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Overloading?

A

New method in same class with same name but with different signature

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly