1.2.4 programming language Flashcards
What is paradigms?
Paradigm is an approach a programming language takes to define a program and solve problems.
What is procedural language?
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.
What is object oriented program?
a type of imperative language where solution are represented using objects that interact.
what is assembly language?
low level programming language that uses mnemonics to represent code?
procedural language advantages?
- efficient execution for straight forward programs
- clear flow of control (people can follow the code easily).
- ease implementation on algorithm.
procedural language disadvantages?
- 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.
object oriented program advantages?
a
object oriented program disadvantages?
aaa
assembly language advantages?
- 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.
assembly language disadvantages?
- 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.
what are the 4 addressing memory?
- immediate addressing.
- direct addressing.
- indirect addressing.
- index addressing.
immediate addressing:
the value of the operand it the actual value to be used for the instruction.
direct addressing:
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.
indirect addressing:
operand hold the address of the location of the address of the data to be used.