answersLogoWhite

0


Best Answer

A compiler and a linker.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is used to translate an entire 3GL or 4GL program into machine language before any of the program is executed?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Which program translate assembly language into machine language?

Assembly langue is translated into machine language by an assembler.


Why machine language is the only language which is directly executed by computers?

Machine language is the native language of the machine and requires no translation. Every other programming language must be translated into machine code in order to execute, which means you need to program the computer to perform that translation. A compiler translates the entire source code to produce a machine code executable, whereas an interpreter translates high-level statements as they are executed within the runtime environment.


What is the process of writing specific instructions in computer language called?

A machine code program. Machine code is the native language of the machine and the only language actually understood by the machine. However, program instructions can be written using a high-level programming language that the computer can translate into machine code using another machine code program called a compiler.


Why do need translate a program written a high level language into machine language?

the reason why we translate is that source code may be in assembly( low level language) or high level language and the only language computer understand is 0s and 1s which is binary code so the program written in either assembly or high level language must be convert or translate to binary and program written in HLL are in English form while the assembly are equivalent machine language.


What is a compiler and an interpreter?

a compiler translates an entire program and then executes it while an interpreter translates and executes one line of a program at time

Related questions

Which program translate assembly language into machine language?

Assembly langue is translated into machine language by an assembler.


A computer program that translate one program instructions at a time into machine language is called?

That sounds like the description of an interpreter.


What is language translator program?

This is usually the first stage in compilation. The source code is read and checked for syntax and usability then passed to the compile stage to be converted to object (or machine) code that the computer can understand.Translator translates program written in one programming language into (equivalent) program written in another language. For example, Java to C# translator would translate Java program into (equivalent) C# program. This is similar to as if you would translate some text in English into Spanish or vice versa.If target language is lower level language like assembly language, machine language, or pseudocode, translator is called compiler. For example, some C++ compiler could compile (translate) program in C++ into machine code.


Why machine language is the only language which is directly executed by computers?

Machine language is the native language of the machine and requires no translation. Every other programming language must be translated into machine code in order to execute, which means you need to program the computer to perform that translation. A compiler translates the entire source code to produce a machine code executable, whereas an interpreter translates high-level statements as they are executed within the runtime environment.


What is Translator Programs?

This is usually the first stage in compilation. The source code is read and checked for syntax and usability then passed to the compile stage to be converted to object (or machine) code that the computer can understand.Translator translates program written in one programming language into (equivalent) program written in another language. For example, Java to C# translator would translate Java program into (equivalent) C# program. This is similar to as if you would translate some text in English into Spanish or vice versa.If target language is lower level language like assembly language, machine language, or pseudocode, translator is called compiler. For example, some C++ compiler could compile (translate) program in C++ into machine code.


What is the process of writing specific instructions in computer language called?

A machine code program. Machine code is the native language of the machine and the only language actually understood by the machine. However, program instructions can be written using a high-level programming language that the computer can translate into machine code using another machine code program called a compiler.


Why do need translate a program written a high level language into machine language?

the reason why we translate is that source code may be in assembly( low level language) or high level language and the only language computer understand is 0s and 1s which is binary code so the program written in either assembly or high level language must be convert or translate to binary and program written in HLL are in English form while the assembly are equivalent machine language.


What is the role of a translator app?

A translator takes a program written in source language as input and converts it into a program in target language as output. It also detects and reports the error during translation. • Translating the high-level language program input into an equivalent machine language program.


What is a compiler and an interpreter?

a compiler translates an entire program and then executes it while an interpreter translates and executes one line of a program at time


What is a program that translates a high level language like C plus plus to machine language?

A compiler. We can also use an interpreter to translate high-level code as it is executed, however in order to create a stand-alone executable we must use a compiler. A compiler is simply a program that translates high-level code to a lower-level code (but not necessarily machine code). For instance, the Java compiler emits Java byte code which is suitable for interpretation by the Java virtual machine.


How does c program works?

Actually computer does not understand any high level language. it understands only 1s and 0s i.e what we call machine language. So the high level language needs to be translate into machine language which is done by the compiler It doesn't work in itself, it has to be translated to machine code, that's what you call compilation.


What are the differences between computer program language and human language?

MOTHER TONGUE OF A COMPUTER:Everyone of us knows at least one or two human languages such as English ,Urdu ,Chinese .One of there is our tongue , the language which we learned from childhood . Similarly , computer have their own "mother tongue ". The mother tongue of a computer is machine language.Machine language instructions are in binary form.computer language(1) A programming language or machine language.(2) Everyday computer language, which includes computer technologies and concepts as well as hardware and software products .MACHINE LANGUAGE ADVANTAGES :Machine language program is written is machine code.This is the only language that the computer can understand directly . The main advantages of machine languages are:Machine code is carried out faster as it is the "native language" of the computer.It occupies less momory space.DISADVANTAGES :However , it has the following disadvantages:Each type of computer has its own set of instruction codes so each machine work ononly one type of computer.Its very laborious to write programs in machine codes. Programs in machine codeare also difficult to decode and modify.There was a time when programmers had to write programs in machine language.Now programmers can use programmiong language.We will look into programming languages next.TYPES OF PROGRAMMING LANGUAGE:We can write a program in a programing language and then translate it into a machine language look at the simple program written in a programming language called BASIC .This program tells the computer to find the area of a square and display the answer on the screen10 Rem Calculate The area of square20 Let side = 1230 AREA =Side * Side40 Print AREAAs you can see .the program statemnet are easier to read , unlike the machine code .A program written in any one of the programming languages is called the source code,The source code has to be translate to machine code before it can be executed. We need a computer translator for this purpose.The machine code is save as an executable file.The executable program file is called the object code.A COMPUTER TRANSLATOR:A computer translator is yet another program. Its function is like that of a human tanslator.Ahuman translator orinterpreter who knows both English and Urdu can help a Pakistani and an Englishman to converse.TYPES OF COMPUTER TRANSLATORS:There are two types of computer translators :InterpretersCompilersINTERPRETERS:An interpreter is a program that translates and executes each source code statment before translating and executing the next statment.COMPILERSCompiler is a program that translate all the source code statment before it executes the program.