1 / 16

Classification of programming languages

Classification of programming languages. Starter. Identify some common programming languages and give examples of where they are used. Which are the most popular? Why are there so many programming languages. Learning objectives.

amberlyj
Download Presentation

Classification of programming languages

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Classification of programming languages

  2. Starter • Identify some common programming languages and give examples of where they are used. • Which are the most popular? • Why are there so many programming languages

  3. Learning objectives • Explain what high level and low level programming languages are and the advantages and disadvantages of each. • Explain what assembly language and machine code are • Understand the different types of translator: compiler, interpreter and assembler.

  4. Complete the table

  5. High level programming language High level programming language is closer to human language and is therefore easier to understand. A translator is used to convert the instructions into code that the computer understand. High level languages allow programs to be written that is independent of the type of computer. High level programming languages allow code to be written that is independent of the type of computer system. It is up to the compiler to translate the code into the right machine code for a particular code. There is a huge variety of high level programming languages, and the choice depends on the application.

  6. Low level programming language Low level programming languages refer to machine code and assembly language. The Low level refers to low level of abstraction. The low level language is close to the language understood by the computer where operations map to the instruction in the processor instruction set. However it is difficult for humans to understand. Low level languages are appropriate for developing new operating systems, embedded systems and hardware device drivers

  7. Explain the following low level programming languages

  8. Machine code • Machine code is expressed in binary values 0 and 1. This is the language that computers understand. All codes whether assembler or high level programming languages need to be translated into machine code. Machine code is specific to a processor. • Machine code instructions are made up of two parts the operator and the operand. The processor decodes the operator to identify the task that is to be carried out (eg. Add, load). The operand is the value or memory address that that instruction is to be operated on

  9. Assembler sample Instruction set LOAD #23 # Load from RAM to processor JMP # MOV a 23 # Transfer in number 23 into the variable a ADD 2 3 # Add 2 values STORE # store data in RAM

  10. Assembly language • Assembly language provides basic computer instructions for programs to run. There is a one to one relationship between machine code and assembly code instructions. One assembly language instruction maps to one machine code instruction, thus the structure of assembly language and machine code is the same, but where machine codes uses 0 and 1 which are very difficult for programmer to understand, assembly language uses names which is easier for the programmer. • Each type of processor has its own instruction set and therefore its own assembly language and machine code. So Assembly code written for one type of processor will not run on another.

  11. Advantages of low level language versus low level language • Disadvantages Low level languages are very difficult to understand and modify Assembly code is written for a specific processor architecture, and so is not portable to other computer architectures Advantages • Low level languages produce code that is faster and better optimised than high level languages. • Low level languages are appropriate for developing new operating systems, embedded systems and hardware device drivers

  12. Advantages of high level language versus low level language • High level programming languages allow code to be written that is more portable. This means that the code can be run on different of the types of computer system with different processor architecture. • High level languages are easier to understand • High level languages are easier to modify Disadvantages • Needs a translator • high level languages run slower because of the layers of abstraction and there is inefficiency in translator.

  13. Explain the following translators

  14. Program translators • Program translators allow programs to be translated into machine code so the than programs can be run on a computer. • Interpreter – Interpreter converts high level languages into machine code one instruction at a time on-the-fly while the program is running. Each instruction is converted to machine code once the previous instruction has been executed. Interpreters are good for debugging code because the program stops as soon as the error has been found. However running code this way is much slower running compiled code. The machine code is not saved • Compiler – A program that converts high level languages into machine code before the program is run. A compiler saves the machine code, so the source code is no longer needed A compiler allows a program to be run faster that interpreted code. Software is normally distributed as compiled machine code. For proprietary software this is good because other people cannot copy the code and use it for their own applications. • Assembler – Assembler converts assembly language instructions into machine code.

  15. Plenary (interpreter, compiler, assembler, assembly language, machine code, high level, low level) • Translates a program one instruction at a time • Code the computers understand • Translates the high level programming language before being run into machine code • Code that humans understand • Translates from assembly language into machine code • Programming languages that allows code to run on different processors • Only allows code to be run on specific processors • There is a one to one relationship between the programming language and machine code

More Related