Class Definitions Flashcards

1
Q

What is the main characteristic of object instances in a class?

A

Each object instance will have the same behaviour but different property values or ‘state’.

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

What are the three basic components of a class?

A
  • Properties
  • Constructors
  • Methods
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the process of creating an object from a class called?

A

Instantiation

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

Define the term ‘class’ in the context of object-oriented programming.

A

A class is the model or blueprint from which an object is created.

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

True or False: A class reserves memory space for data.

A

False

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

What are properties in a class?

A

Properties store data representing the object’s state.

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

What is the role of constructors in a class?

A

Constructors allow each object to be initialised when created.

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

What do methods implement in a class?

A

Methods implement the behaviour of the object.

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

Fill in the blank: An object is an instance of a _______.

A

[class]

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

List the properties of a TicketMachine class.

A
  • Price
  • Balance
  • Total
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is an accessor method?

A

An accessor method returns information about the state of the object.

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

What is a mutator method?

A

A mutator method changes the state of the object by modifying its properties.

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

Describe the purpose of the ‘insertMoney’ method in a TicketMachine.

A

It updates the current balance by adding the amount of money inserted.

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

What is the default constructor?

A

A constructor with no parameters that Java automatically provides if none is defined.

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

What happens when a method is invoked?

A

The flow of control jumps to the method and executes its code.

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

What is the purpose of the ‘printTicket’ method?

A

It prints a ticket and updates the total collected while resetting the balance.

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

What check does the improved ‘insertMoney’ method perform?

A

It checks that the customer enters a positive amount of money.

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

What does the improved ‘printTicket’ method check before printing a ticket?

A

It checks that the balance is greater than or equal to the price.

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

What is instance data?

A

Instance data refers to the values of the properties that each instance of a class has.

20
Q

Define formal parameters.

A

Formal parameters are the parameter names used inside a constructor or method.

21
Q

Define actual parameters.

A

Actual parameters are the values supplied to a constructor or method.

22
Q

What is the significance of the return type in a method?

A

The return type indicates what type of value the method will return to the caller.

23
Q

What is the purpose of the ‘getPrice’ method?

A

It returns the price of a ticket.

24
Q

What does the constructor of the TicketMachine class do?

A

It initializes the properties of the TicketMachine object.

25
Q

What is the main method typically used for in an application class?

A

To initiate or start the execution of the solution using the objects provided.

26
Q

Why is it better practice to explicitly initialize properties?

A

To ensure properties have a defined value rather than relying on default values.

27
Q

What does the phrase ‘method control flow’ refer to?

A

The sequence of execution that occurs when a method is called.

28
Q

What improvements were suggested for the TicketMachine class?

A
  • Check for sufficient money
  • Refund excess money
  • Validate ticket price
  • Allow cancellation of ticket purchase
  • Track total money collected
  • Provide a way to empty the machine
29
Q

What does the improved constructor in the TicketMachine class check?

A

It checks that the ticket price is greater than or equal to zero.

30
Q

What is a local variable?

A

A variable declared within a method with a scope limited to that method.

31
Q

What does the refundBalance() method do?

A

It refunds the current balance and resets the balance to zero.

32
Q

What are formal parameters?

A

Variables that exist only during the constructor or method call and are defined in the header.

33
Q

Define properties (fields).

A

Variables declared outside methods that persist throughout the object’s lifetime and maintain its state.

34
Q

What are local variables initialized by?

A

They must be initialized before use and are NOT initialized by default.

35
Q

In the testScope method, what is the error related to localVar2?

A

localVar2’s scope is limited to the block of the if statement.

36
Q

What does the statement ‘TicketMachine[] machines = new TicketMachine[3];’ create?

A

An array capable of storing 3 references to TicketMachine objects.

37
Q

How do you create instances of TicketMachine and assign them to an array?

A

By using the new operator to create each instance and assigning it to an element in the array.

38
Q

What do the elements of an array of objects represent?

A

References to the actual object instances.

39
Q

Can arrays be used as class properties?

A

Yes, arrays can be used as class properties.

40
Q

What is the role of a class in the context of objects?

A

A class represents a concept, while an object is the embodiment of that class.

41
Q

What is the purpose of constructors in a class?

A

To initialize a new instance of an object.

42
Q

What do accessor methods do?

A

They return information about an object’s state.

43
Q

What do mutator methods do?

A

They change an object’s state.

44
Q

Fill in the blank: An object provides a collection of ______ that we can tell it to perform.

A

[behaviors]

45
Q

True or False: A class can be used to create multiple objects.

46
Q

What must a software designer consider when using arrays and objects?

A

The organization of data and objects that makes sense for the situation.