Types Of Languages Flashcards

1
Q

What are the 4 types of programming paradigms and give an example of each?

A

Procedural - Python
Object-Oriented - Java
Functional - Haskell
Logic - Prolog

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

What is the procedural paradigm?

A

A type of imperative programming language that uses procedures to define how a problem should be solved.

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

What is the Object-Oriented paradigm?

A

A type of imperative programming languag e that uses predefined classes and objects to define how a problem should be solved.

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

What is the functional paradigm?

A

A type of declaritive programming in which programs are constructed by apply and composing functions, that operate on data independent on the runtime of the program.

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

What is the logic paradigm?

A

A type of declarative programming based on formal logic, set out in logical sentences.

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

What is Assembly Language?

A

An language that uses mneumonics that compile one to one to machine instructions

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

What is the Little Man Computer Instruction Set?

A

000 - HLT
1 - ADD
2 - SUB
3 - STA
5 - LDA
6 - BRA
7 - BRZ
8 - BRP
901 - INP
902 - OUT
DAT <value></value>

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

What are the 4 types of memory addressing?

A

Immediate
Direct
Indirect
Index

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

What is Immediate addressing?

A

Uses the value given in the opcode of the instruction.

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

What is direct addressing?

A

Goes to the address specified in the opcode of the instruction

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

What is Indirect addressing?

A

Goes to the address specified by the address specified by the opcode of the instruction
Opcode -> address -> data

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

What is Indexed addressing?

A

Goes to the address specified by the operand + the value in the index register

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

What is the difference between an object and class?

A

class is a blueprint defining what attributes and methods are contained

An object is an instance that uses the class as a blueprint to store data

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

What is inheritance?

A

When a subclass takes the methods and attributes of its superclass to build a more specific functionality
e.g. Dog inherits Animal

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

What is a Constructor

A

The method called when an instance of a specific class is created, which can be passed data to initialise the object created.

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

What is encapsulation?

A

Hiding attributes from outside the class, which can only be accessed and modified by exposed getter and setter methods.

17
Q

What is polymorphism?

A

Redefining methods in a subclass inherited from its superclass to provide more specific functionallity.

Can also be in reference to overloading, where several methods can be made with the same name but different arguments.