Lecture1 1
Lecture1 1
Unit-1
Chapter-1 Basic Concepts of Programming Language
2. Data Types: The type of values that can be stored in a program, such as
numbers, strings, and Booleans.
1. Input unit
3. Output unit
Memory unit
Control unit
Example of mnemonics in Assembly code: LOAD r2, a; CLR, MOV, MOVL, PUSH
4. High Level Language: High Level computer languages are the advanced
development languages in the evolution of computer languages. These languages
are designed to make the programming easier and less error-free.
error free.
High
igh level language uses words and commands along with symbols and numbers.
The keywords used in High level languages are similar to English words and can be
easily understood by Humans when compared to a Low level language.
#include <stdio.h>
int main() {
printf("Hello World");
return 0;