0% found this document useful (0 votes)
35 views

Different Types of Programming Languages

Assembly language is a low-level programming language that is one level above machine language. It uses mnemonic codes that are converted to machine code by an assembler. Machine language is binary code that is the only language computers can understand directly. It consists of binary digits that are read and interpreted by computers.

Uploaded by

oocgnob
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
35 views

Different Types of Programming Languages

Assembly language is a low-level programming language that is one level above machine language. It uses mnemonic codes that are converted to machine code by an assembler. Machine language is binary code that is the only language computers can understand directly. It consists of binary digits that are read and interpreted by computers.

Uploaded by

oocgnob
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 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