2.1 Flashcards

1
Q

2.1.1 - OOP
1. What is a class?
2. What is instantiation?

A
  1. A class contains a class name, attribute and methods. A class is a template used to create an object.
  2. Instantiation is the process of creating an object from a class template. A constructor is a procedure that runs when an object with the class type is created.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

2.1.1 - OOP
What is the structure of a class in pseudocode?

A

class Person
- The class starts with the keyword ‘class’ followed by the class name.
private name
private age
- The attributes are listed next with the private keyword.
public procedure new(givenName, givenAge)
name = givenName
age = givenAge
end procedure
- Then there is the constructor method, which runs every time an object of that class type is created, taking the values of the parameters passed in and setting its local attributes to their initial values.
public procedure getName()
return name
end procedure
public procedure setName(newName)
name = newName
end procedure
- The methods are then listed for the class, which can set new values for attributes or return existing values for attributes.
endclass
- To end the class definition, we use the keyword endclass.

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

2.1.1 - OOP
1. How do you create a new object?
2. How do you reference methods in the class?

A
  1. To create a new object, you use this format: objectName = new ClassName(parameters).
  2. You use dot notation; for example personOne.getName, personTwo.setName(“Dan”).
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

2.1.1
1. How do you write a getter method for a class?
2. How do you write a setter method for a class?

A
  1. public function getVariableName():
    return variableName
    end function
  2. public function setVariableName(newVariableName):
    variableName = newVariableName
    end function
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

2.1.1
1. State 4 reasons why abstraction is needed in a program
2. Describe the difference between a virtual version of a place with abstraction applied, compared to the real version

A
    • Abstraction simplifies the programming
      - It reduces cost.
      - Reality contains things that aren’t relevant to a computer program
      - Abstraction reduces memory requirements.
    • Features are removed, for example there may be no trees or footpaths.
      - Symbols or keys are used to represent elements, such as a train.
      - It may not be to scale, as relative distances may not be true.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
  1. What are the different elements of a flowchart?
  2. What are the general rules of flowcharts?
A
    • The start and stop are in rectangles with curved sides.
      - A process is in a rectangle.
      - An input or output is in a parallelogram.
      - A decision is in a diamond.
      - Arrows show the flow of data.
    • All boxes of the flowchart are connected with arrows.
      - Flowcharts have one entry point at the top, and one exit.
      - The decision symbol has only two exit points, which can be on the sides or the bottom.
      - There is one action per process.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

2.1.1
1. What is computational thinking?
2. What is abstraction?
3. Why is abstraction used (state 5 reasons)?

A
  1. Computational thinking is an approach to problem solving combining critical thinking and computer processes.
  2. Abstraction means the process of taking away or removing characteristics from something in order to reduce it to a set of essential characteristics.
  3. It reduces the complexity of a program, reduces the time to find a solution and programming time, reduces computational resources, reduces the cost of designing and building the program, and focuses on the main purpose of the program.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

2.1.1
What are the different types of abstraction?

A

Data abstraction: variables, objects, and data structures.
Variables: represents real world values.
Objects: in OOP a class is an abstract representation of something with certain properties (attributes) and operations (methods).
Data structures: arrays, linked-lists, stacks and queues.
Problem abstraction: when faced with a problem deciding which factors are relevant to the problem and the solution.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
  1. What is caching?
  2. What is a disadvantage of caching?
A
  1. Caching is when data that has been used is stored in the cache in case it is needed again, (1) and allows faster access for future use. (1) (If the question is asking what is meant by caching, it is asking about cache generally, not specific to the CPU, so unless it specifies, do not refer to the memory locations in the CPU specifically).
  2. A drawback is that the nature of predictive logic means that caching algorithms can be very complicated to implement. The wrong data is often fetched and cached.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a module or library?

A

A software module or library is code that has been tested by other developers that can be reused. Using libraries saves work for developers, shortens overall development time and reduces cost. Reusable components can be used by third parties to access data from other software, such as logging into a third party software with your social media account.

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

2.1.1
How do you write a class function using inheritance?

A

In the constructor method parameters, you must include all the parameters, including the ones that are inherited from the parent class. However, for the imported variables, you use super.new(parameters). Then you include the new parameters normally.

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