1.2.4 programming language Flashcards

1
Q

What is paradigms?

A

Paradigm is an approach a programming language takes to define a program and solve problems.

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

What is procedural language?

A

procedural language is a type of imperative language where programs are broken down into subroutines ( functions and procedures) those subroutines are combined to create solution for problems.

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

What is object oriented program?

A

a type of imperative language where solution are represented using objects that interact.

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

what is assembly language?

A

low level programming language that uses mnemonics to represent code?

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

procedural language advantages?

A
  • efficient execution for straight forward programs
  • clear flow of control (people can follow the code easily).
  • ease implementation on algorithm.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

procedural language disadvantages?

A
  • not suitable for large programs.
  • not suitable for programs with complex state and behaviour (when info changes a lot) .
  • difficult to manage and scale programs that grows.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

object oriented program advantages?

A

a

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

object oriented program disadvantages?

A

aaa

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

assembly language advantages?

A
  • similar execution efficient machine code due to it one to one nature.
  • it produce very precise, locally optimised efficient code.
  • direct access to low system level features as it do not need to go through software interface.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

assembly language disadvantages?

A
  • machine dependent (code is linked to specific hardware architecture) so the code is not portable.
  • programmers who write assembly code efficiently are rare.
  • the code is hard to understand, therefore it is difficult to ,modify or maintain.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what are the 4 addressing memory?

A
  • immediate addressing.
  • direct addressing.
  • indirect addressing.
  • index addressing.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

immediate addressing:

A

the value of the operand it the actual value to be used for the instruction.

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

direct addressing:

A

the value of the operand gives you the address which hold the value of the data to be used for the instruction.
this is the type used in LMC.

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

indirect addressing:

A

operand hold the address of the location of the address of the data to be used.

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