Objects & Classes Flashcards
What is the main focus of procedural programming?
List of instructions to tell the computer what to do in a top down fashion
Procedural programming relies on procedures, routines, and sub-routines.
What is the fundamental difference between an object and a class?
An object is a program component that knows how to perform certain actions, while a class is a definition of objects of the same kind.
What are the basic units of Object-Oriented Programming (OOP)?
Objects
Objects encapsulate both state (properties) and behavior (methods).
Fill in the blank: In OOP, methods are part of an _______.
[object]
What does a class encapsulate in OOP?
Static attributes (data) and dynamic behaviours (operations that operate on the data)
What are the benefits of Object-Oriented Programming?
- Ease in software design
- Ease in software maintenance
- Reusable software
What is an instance in OOP?
A realization of a particular item of a class.
What keyword is used to define a class in Java?
class
What is a class library?
A collection of classes that can be used to create objects.
True or False: Procedural languages are well-suited for creating reusable software components.
False
What do you call the method that sets up an object in Java?
Constructor
What are the primitive types in Java?
- short
- int
- long
- char
- byte
- double
- float
- boolean
What is the role of methods in an object?
They describe the behaviours of an object.
What does the dot operator do in Java?
It is used to call (invoke) methods of an object.
Fill in the blank: A class is a _______ that defines the properties and behaviors common to a set of objects.
[blueprint]
What is the significance of encapsulation in classes?
It combines data structures and algorithms of a software entity inside the same box.
What are the three main components of a UML class diagram?
- Class name
- Variables
- Methods
What does the access control modifier determine in a class definition?
The visibility of the class and its members.
True or False: Objects in programming are similar to real-world objects.
True
What are reference types in Java?
Types that hold a reference to an object rather than an actual value.
What is the purpose of a library management system in OOP?
To model real-world entities (books, users, checkouts) as objects with attributes and behaviors.
What is the significance of methods like checkOut() and returnBook() in a Book class?
They define the behaviors associated with the Book object.
Fill in the blank: A class can create multiple _______ of itself.
[instances]
What is an example of a real-world entity modeled in OOP?
Books, Users, Checkouts in a library management system
How can objects interact in OOP?
By changing one another’s properties and causing events to happen.
What are the dynamic behaviors of a class called?
Methods
What is the purpose of using the ‘new’ operator in Java?
To create an object instance.
What does the method makeVisible() do in the context of a Circle object?
It displays the circle.
What is the purpose of class documentation?
To provide information necessary to create and utilize object instances of the class.
What is the purpose of class specifications?
To provide programmers with information necessary to create and utilize object instances of the class.
What does the method public Circle() do?
Creates a new Circle object at (x,y) coordinates (20,60) with an initial diameter of 30 pixels, colored blue and invisible.
What does the method public void makeVisible() do?
Makes the Circle visible. If it’s already visible, it does nothing.
How far does the method public void moveRight() move the Circle?
Moves the Circle 20 pixels to the right.
What is the purpose of the method public void moveHorizontal(int distance)?
Moves the Circle a specified number of pixels horizontally; positive value moves right, negative value moves left.
What are the valid colors that can be set using the method public void changeColor(String color)?
- red
- yellow
- blue
- green
- magenta
- black
What is the main function of the SettingSun class?
To create a sun that moves diagonally by using a loop to call movement methods.
What does the method public void changeSize(int newSize) do?
Changes the size of the Circle to the specified new size.
What is the significance of the String object type in Java?
String objects are widely used and can be created without the new operator.
What does it mean that String objects are immutable?
Once created, String objects cannot be changed; methods return new String objects instead.
What does the method String concat(String str) do?
Returns a new string consisting of the original string concatenated with the string parameter str.
What is the purpose of the ArrayList class in Java?
To provide a resizable array that can grow or shrink as needed.
What is the syntax to create an ArrayList that holds String objects?
ArrayList<String> bookList = new ArrayList<>();</String>
What method is used to add an element to an ArrayList?
add(element) method.
How do you access an element in an ArrayList?
Using the get(index) method.
What method would you use to find the number of elements in an ArrayList?
size() method.
What is the use of the Random class in Java?
To generate pseudorandom numbers.
What does the method nextInt(int bound) from the Random class do?
Generates a random integer between 0 (inclusive) and the specified bound (exclusive).
What is the purpose of the StringTokenizer class?
To separate a string into tokens based on delimiters.
What are the default delimiters in the StringTokenizer class?
- space
- tab
- new line
What does the method hasMoreTokens() return?
A boolean indicating if there are more tokens to process.
What is a class library?
A collection of classes that can be used when developing programs.
What does the import declaration do?
Allows the use of a class from a specified package in your program.
True or False: All classes of the java.lang package are imported automatically.
True.
Fill in the blank: The _______ class provides methods that generate pseudorandom numbers.
Random
What is the main advantage of using built-in classes in Java?
Saves time, reliability, performance, and readability.