Objects & Classes Flashcards

1
Q

What is the main focus of procedural programming?

A

List of instructions to tell the computer what to do in a top down fashion

Procedural programming relies on procedures, routines, and sub-routines.

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

What is the fundamental difference between an object and a class?

A

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.

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

What are the basic units of Object-Oriented Programming (OOP)?

A

Objects

Objects encapsulate both state (properties) and behavior (methods).

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

Fill in the blank: In OOP, methods are part of an _______.

A

[object]

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

What does a class encapsulate in OOP?

A

Static attributes (data) and dynamic behaviours (operations that operate on the data)

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

What are the benefits of Object-Oriented Programming?

A
  • Ease in software design
  • Ease in software maintenance
  • Reusable software
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is an instance in OOP?

A

A realization of a particular item of a class.

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

What keyword is used to define a class in Java?

A

class

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

What is a class library?

A

A collection of classes that can be used to create objects.

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

True or False: Procedural languages are well-suited for creating reusable software components.

A

False

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

What do you call the method that sets up an object in Java?

A

Constructor

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

What are the primitive types in Java?

A
  • short
  • int
  • long
  • char
  • byte
  • double
  • float
  • boolean
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What is the role of methods in an object?

A

They describe the behaviours of an object.

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

What does the dot operator do in Java?

A

It is used to call (invoke) methods of an object.

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

Fill in the blank: A class is a _______ that defines the properties and behaviors common to a set of objects.

A

[blueprint]

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

What is the significance of encapsulation in classes?

A

It combines data structures and algorithms of a software entity inside the same box.

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

What are the three main components of a UML class diagram?

A
  • Class name
  • Variables
  • Methods
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What does the access control modifier determine in a class definition?

A

The visibility of the class and its members.

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

True or False: Objects in programming are similar to real-world objects.

A

True

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

What are reference types in Java?

A

Types that hold a reference to an object rather than an actual value.

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

What is the purpose of a library management system in OOP?

A

To model real-world entities (books, users, checkouts) as objects with attributes and behaviors.

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

What is the significance of methods like checkOut() and returnBook() in a Book class?

A

They define the behaviors associated with the Book object.

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

Fill in the blank: A class can create multiple _______ of itself.

A

[instances]

24
Q

What is an example of a real-world entity modeled in OOP?

A

Books, Users, Checkouts in a library management system

25
Q

How can objects interact in OOP?

A

By changing one another’s properties and causing events to happen.

26
Q

What are the dynamic behaviors of a class called?

27
Q

What is the purpose of using the ‘new’ operator in Java?

A

To create an object instance.

28
Q

What does the method makeVisible() do in the context of a Circle object?

A

It displays the circle.

29
Q

What is the purpose of class documentation?

A

To provide information necessary to create and utilize object instances of the class.

30
Q

What is the purpose of class specifications?

A

To provide programmers with information necessary to create and utilize object instances of the class.

31
Q

What does the method public Circle() do?

A

Creates a new Circle object at (x,y) coordinates (20,60) with an initial diameter of 30 pixels, colored blue and invisible.

32
Q

What does the method public void makeVisible() do?

A

Makes the Circle visible. If it’s already visible, it does nothing.

33
Q

How far does the method public void moveRight() move the Circle?

A

Moves the Circle 20 pixels to the right.

34
Q

What is the purpose of the method public void moveHorizontal(int distance)?

A

Moves the Circle a specified number of pixels horizontally; positive value moves right, negative value moves left.

35
Q

What are the valid colors that can be set using the method public void changeColor(String color)?

A
  • red
  • yellow
  • blue
  • green
  • magenta
  • black
36
Q

What is the main function of the SettingSun class?

A

To create a sun that moves diagonally by using a loop to call movement methods.

37
Q

What does the method public void changeSize(int newSize) do?

A

Changes the size of the Circle to the specified new size.

38
Q

What is the significance of the String object type in Java?

A

String objects are widely used and can be created without the new operator.

39
Q

What does it mean that String objects are immutable?

A

Once created, String objects cannot be changed; methods return new String objects instead.

40
Q

What does the method String concat(String str) do?

A

Returns a new string consisting of the original string concatenated with the string parameter str.

41
Q

What is the purpose of the ArrayList class in Java?

A

To provide a resizable array that can grow or shrink as needed.

42
Q

What is the syntax to create an ArrayList that holds String objects?

A

ArrayList<String> bookList = new ArrayList<>();</String>

43
Q

What method is used to add an element to an ArrayList?

A

add(element) method.

44
Q

How do you access an element in an ArrayList?

A

Using the get(index) method.

45
Q

What method would you use to find the number of elements in an ArrayList?

A

size() method.

46
Q

What is the use of the Random class in Java?

A

To generate pseudorandom numbers.

47
Q

What does the method nextInt(int bound) from the Random class do?

A

Generates a random integer between 0 (inclusive) and the specified bound (exclusive).

48
Q

What is the purpose of the StringTokenizer class?

A

To separate a string into tokens based on delimiters.

49
Q

What are the default delimiters in the StringTokenizer class?

A
  • space
  • tab
  • new line
50
Q

What does the method hasMoreTokens() return?

A

A boolean indicating if there are more tokens to process.

51
Q

What is a class library?

A

A collection of classes that can be used when developing programs.

52
Q

What does the import declaration do?

A

Allows the use of a class from a specified package in your program.

53
Q

True or False: All classes of the java.lang package are imported automatically.

54
Q

Fill in the blank: The _______ class provides methods that generate pseudorandom numbers.

55
Q

What is the main advantage of using built-in classes in Java?

A

Saves time, reliability, performance, and readability.