Quiz 1 Flashcards

WEEK 1 - 2

1
Q

Common OOP languages?

A

Java, C#, C++

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

Building blocks of OOP? (2)

A

Objects and classes

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

Objects are? With examples.

A

Objects model a real world object, concept or process.
Such as a computer, meeting or comparing

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

Classes are?

A

A prototype or blueprint from which objects are created

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

Attributes and behaviours are what type of member?

A

Attributes - member variables
Behaviour - member methods

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

Four principles of oop?

A

Encapsulation
Abstraction
Inheritance
Polymorphism

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

Encapsulation

A

When an object only exposes the selected information

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

Abstraction

A

Hides complex details to reduce complexity

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

Inheritance

A

Entities can inherit attributes from other entities

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

Polymorphism

A

Entities can have more than one form

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

Class diagrams layout?

A

Name of the object is at the top
Variables are in the middle
Methods are in the bottom

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

Primitive data types:

A

Are predefined and cannot be further split into a simpler data type

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

Non-Primitive data types:

A

Are reference types because they refer to objects, and are created by the programmer

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

Javas primitive types:

A

Integer, Float, Character, Boolean

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

Java’s non-primative data types

A

Strings, Arrays, Classes, Interfaces

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

Compiling and running code?

A

javac java file name.java
java classname