Popular posts from this blog
What is programming language??
What is programming language?? It is medium for communication. we, human being need language to communicate between us. Similarly, to communicate with computer we need language and we call them programming language. The computer understands binary/machine language i.e. A language made up with combination of zeros and ones. It is impossible for human to understand such difficult language. In result, we have programming languages which we can understand partially. These languages will be converted to machine language using some other program (using Compiler or Interpreter) in order to instruct the computer or system. Based on the human understanding we have following types of languages. Please note as we are moving down understand-ability of human will be strong and understand-ability machine will be weak. 1. Binary Language (Machine Language): Binary stand for two, the computer understand this language, it is made up with combination of two elements zero's and one's. OR a lan...
Compiler, Interpreter and Assembler
Hello Programmers, every programmer must know about Compiler, Interpreter and Assembler as a programmer if we know programming languages, we can't interact with computer directly becauase computer understand Binary Language. In order to communicate with computer we required mediator (translator) between computer and we human . the programme gives instruction in programming language which he knows, then translator convert it into machine language according to instruction. Translator: It is System Software( it is nothing but program which it design either to run hardware or our application program) which is use to convert programming language code into machine, Translator classified into three types 1. Compiler Compiler is system software which is use to convert programming language instruction into binary language in single step. i.e when you compile your program compiler check all instruction of a program and generate machine code for that instruction which are syntactically cor...
Comments
Post a Comment