You are on page 1of 1

DIFFERENT TYPES OF converted to machine code by an

PROGRAMMING LANGUAGES assembler.

• Low - level Language Examples:


#include <stdio.h>
• High - level Language int main()
{
• Machine Language char msg[] = "Hello world\n";
printf("%s\n",msg);
• Assembly Language
return 0;
}

MACHINE LANGUAGE
gcc -o hello.exe hello.obj
- Machine Language, also called as
machine code or object code, is the
only language a computer is able to REFERENCES:
understand. It is a collection of
binary digits or bits that the (2017, November 4). What is Assembly
computer reads and interprets. Language? Retrieved from
https://www.computerhope.com/jargon/a/
Examples: al.htm
BINARY
(2019, June 30). What is Machine
01001000 01100101 01101100 01101100 Language? Retrieved from
https://www.computerhope.com/jargon/m/
01101111 00100000 01010111 01101111 machlang.htm
01110010 01101100 01100100
NON BINARY
169 1 160 0 153 0 128 153 0 129 153 130
153 0 131 200 208 241 96

ASSEMBLY LANGUAGE
- A programmming language that is
specific to a corresponding machine
language instructions, which
consists of instructions that are
mnemonic codes. Assembly code is

You might also like