🗊Презентация Family of Programming Languages

Нажмите для полного просмотра!
Family of Programming Languages, слайд №1Family of Programming Languages, слайд №2Family of Programming Languages, слайд №3Family of Programming Languages, слайд №4Family of Programming Languages, слайд №5Family of Programming Languages, слайд №6Family of Programming Languages, слайд №7Family of Programming Languages, слайд №8Family of Programming Languages, слайд №9Family of Programming Languages, слайд №10Family of Programming Languages, слайд №11Family of Programming Languages, слайд №12Family of Programming Languages, слайд №13Family of Programming Languages, слайд №14

Вы можете ознакомиться и скачать презентацию на тему Family of Programming Languages. Доклад-сообщение содержит 14 слайдов. Презентации для любого класса можно скачать бесплатно. Если материал и наш сайт презентаций Mypresentation Вам понравились – поделитесь им с друзьями с помощью социальных кнопок и добавьте в закладки в своем браузере.

Слайды и текст этой презентации


Слайд 1


Family of Programming Languages, слайд №1
Описание слайда:

Слайд 2


Family of Programming Languages, слайд №2
Описание слайда:

Слайд 3





Programming Languages
When computers were first invented they had to be programmed in their own natural language, i.e. binary machine code. 
Later, programmers developed more sophisticated systems to make programming easier and more efficient. 
Assembly languages were developed as the 2nd generation of languages. 
High-level languages (3rd & 4th generation) later made programming even more productive.
Описание слайда:
Programming Languages When computers were first invented they had to be programmed in their own natural language, i.e. binary machine code. Later, programmers developed more sophisticated systems to make programming easier and more efficient. Assembly languages were developed as the 2nd generation of languages. High-level languages (3rd & 4th generation) later made programming even more productive.

Слайд 4


Family of Programming Languages, слайд №4
Описание слайда:

Слайд 5





The Generations
Описание слайда:
The Generations

Слайд 6





Machine Code
These are the only kind of instructions the CPU can directly understand and execute. 
Stream of binary bit patterns that represent the instructions that are to be carried out. 
The binary bit patterns are decoded by the processor’s logic circuits.
They are then acted upon or executed, one after another.
Machine code is a type of low-level code.
Описание слайда:
Machine Code These are the only kind of instructions the CPU can directly understand and execute. Stream of binary bit patterns that represent the instructions that are to be carried out. The binary bit patterns are decoded by the processor’s logic circuits. They are then acted upon or executed, one after another. Machine code is a type of low-level code.

Слайд 7





Machine Code
Writing programs in machine code is difficult and time-consuming. 
It’s difficult to remember all the bit patterns and what they do.
Each operation of the processor has to be defined.
Each machine instruction causes the processor to carry out just one operation.
Nearly all machine code instructions consist of two parts:
An opcode, which tells the processor what to do
An operand, which tells the processor what to do it to.
Описание слайда:
Machine Code Writing programs in machine code is difficult and time-consuming. It’s difficult to remember all the bit patterns and what they do. Each operation of the processor has to be defined. Each machine instruction causes the processor to carry out just one operation. Nearly all machine code instructions consist of two parts: An opcode, which tells the processor what to do An operand, which tells the processor what to do it to.

Слайд 8





Instruction Set
This is the full set of machine code instructions, which the CPU “understands” and can execute directly without translation.
Описание слайда:
Instruction Set This is the full set of machine code instructions, which the CPU “understands” and can execute directly without translation.

Слайд 9





Assembly Languages
The commands are still the basic CPU instruction set, but in an easier-to-read form. 
One assembly language instruction corresponds to one machine code instruction.
Assembly language instructions have to be translated into machine code by an Assembler before the CPU can execute them.
Описание слайда:
Assembly Languages The commands are still the basic CPU instruction set, but in an easier-to-read form. One assembly language instruction corresponds to one machine code instruction. Assembly language instructions have to be translated into machine code by an Assembler before the CPU can execute them.

Слайд 10





Assembly Languages
Low-Level Language
As with machine language, each instruction causes just one processor operation
These use mnemonic instructions (op-codes) instead of binary codes and hex or decimal in operands. 
These make programming less error prone and more productive than programming in pure binary code.
Описание слайда:
Assembly Languages Low-Level Language As with machine language, each instruction causes just one processor operation These use mnemonic instructions (op-codes) instead of binary codes and hex or decimal in operands. These make programming less error prone and more productive than programming in pure binary code.

Слайд 11





High-Level Languages
High-Level languages do not have the same one-to-one correspondence between commands and machine code instructions as an assembler. 
A high-level command may represent several machine code instructions:
In a high-level language we can multiply two numbers together in one command.
At machine level this is not possible and it has to be done by repeated addition.
Описание слайда:
High-Level Languages High-Level languages do not have the same one-to-one correspondence between commands and machine code instructions as an assembler. A high-level command may represent several machine code instructions: In a high-level language we can multiply two numbers together in one command. At machine level this is not possible and it has to be done by repeated addition.

Слайд 12





High Level Languages
High level commands have to be turned into binary instructions the machine can understand; this is translation.
There are two basic ways of translating high-level code 
Complier: converts the whole code into machine code before running it
Interpreter: converts the code one instruction at a time, running each instruction before translating the next.
Описание слайда:
High Level Languages High level commands have to be turned into binary instructions the machine can understand; this is translation. There are two basic ways of translating high-level code Complier: converts the whole code into machine code before running it Interpreter: converts the code one instruction at a time, running each instruction before translating the next.

Слайд 13





High-Level Languages
Source code is the code written by the programmer.
A compiler translates this source code into an object code in machine language. Object code runs independently of the source code and translator.
An interpreter does not create object code so the source code has to be translated each time it is run. 
This means interpreted languages need the source code and translator present every time the code is run.
Описание слайда:
High-Level Languages Source code is the code written by the programmer. A compiler translates this source code into an object code in machine language. Object code runs independently of the source code and translator. An interpreter does not create object code so the source code has to be translated each time it is run. This means interpreted languages need the source code and translator present every time the code is run.

Слайд 14






https://habrahabr.ru/post/257331/
Описание слайда:
https://habrahabr.ru/post/257331/



Похожие презентации
Mypresentation.ru
Загрузить презентацию