Programming
Fundamental
C++
Lecture delivered by: Ms. Nadia Khan
, Computer Languages
Machine language
Generally consist of strings of numbers - Ultimately 0s and 1s - Machine-
dependent
Example: +1300042774
+1400593419
Assembly language
English-like abbreviations for elementary operations
Incomprehensible to computers - Convert to machine language
Example: LOAD BASEPAY
ADD OVERPAY
STORE GROSSPAY
High-level languages
Similar to everyday English, use common mathematical notations
Compiler/Interpreter
Example:
grossPay = basePay + overTimePay
Fundamental
C++
Lecture delivered by: Ms. Nadia Khan
, Computer Languages
Machine language
Generally consist of strings of numbers - Ultimately 0s and 1s - Machine-
dependent
Example: +1300042774
+1400593419
Assembly language
English-like abbreviations for elementary operations
Incomprehensible to computers - Convert to machine language
Example: LOAD BASEPAY
ADD OVERPAY
STORE GROSSPAY
High-level languages
Similar to everyday English, use common mathematical notations
Compiler/Interpreter
Example:
grossPay = basePay + overTimePay