Quiz 1 Flashcards
WEEK 1 - 2
Common OOP languages?
Java, C#, C++
Building blocks of OOP? (2)
Objects and classes
Objects are? With examples.
Objects model a real world object, concept or process.
Such as a computer, meeting or comparing
Classes are?
A prototype or blueprint from which objects are created
Attributes and behaviours are what type of member?
Attributes - member variables
Behaviour - member methods
Four principles of oop?
Encapsulation
Abstraction
Inheritance
Polymorphism
Encapsulation
When an object only exposes the selected information
Abstraction
Hides complex details to reduce complexity
Inheritance
Entities can inherit attributes from other entities
Polymorphism
Entities can have more than one form
Class diagrams layout?
Name of the object is at the top
Variables are in the middle
Methods are in the bottom
Primitive data types:
Are predefined and cannot be further split into a simpler data type
Non-Primitive data types:
Are reference types because they refer to objects, and are created by the programmer
Javas primitive types:
Integer, Float, Character, Boolean
Java’s non-primative data types
Strings, Arrays, Classes, Interfaces
Compiling and running code?
javac java file name.java
java classname