Distinguish between compiler and interpreters. -Technology

1 Answer

Answer :

CompilerInterpreter1. Compiler takes entire program as input.1. Interpreter takes single instruction as input.2. Conditional control statements execute faster.2. Conditional control statements execute slower.3. Memory requirement is more (since, object code is generated).3. Memory requirement is less.4. Errors are displayed after entire program is checked.4. Errors are displayed for every instruction interpreted.5. e.g. Compiler in C language.5. e.g. Interpreter in Basic language.6. Intermediate object code is generated.6. No intermediate object code is generated.

Related questions

Description : Which is more beneficial a compiler or an interpreter and why? -Technology

Last Answer : Compiler is more bent fi cial than an interpreter for translating a high leve, language program into machine language program because compilation process of a compiler is nearly 5 to 25 times faster than interpreter.

Description : Which software takes control of computer system on startup? (a) Compiler (b) Operating system (c) Application software (d) All of these -Technology

Last Answer : (b) Operating system takes control of computer system on startup.

Description : converts high level language into machine language is (a) assembler (b) compiler (c) interpreter -Technology

Last Answer : (d) Both compiler and interpreter are language processors that converts high level language into machine language.

Description : Ok you fantastic dream interpreters, can you please help me with this one?

Last Answer : It obviously means that you hate your parents.

Description : Compare and contrast compilers from interpreters.

Last Answer : Compilers and interpreters often deal with how program codes are executed. Interpreters execute program codes one line at a time, while compilers take the program as a whole and convert it into object ... of the entire program and will only proceed to execution when no syntax errors are found.

Description : In a rule-based system, procedural domain knowledge is in the form of __________ a) production rules b) rule interpreters c) meta-rules d) control rules

Last Answer : a) production rules

Description : Which of the following are examples of software development tools? a) debuggers b) editors c) assemblers, compilers and interpreters d) all of the mentioned

Last Answer : d) all of the mentioned

Description : In a rule-based system procedural domain knowledge is in the form of A : Production rules B : Rule interpreters C : Meta-rules D : control rules

Last Answer : A : Production rules

Description : In a rule-based system procedural domain knowledge is in the form of A : Production rules B : Rule interpreters C : Meta-rules D : control rules

Last Answer : A : Production rules

Description : In a rule-based system procedural domain knowledge is in the form of A : Production rules B : Rule interpreters C : Meta-rules D : control rules

Last Answer : A : Production rules

Description : __are used to translate high level language instructions to a machine code. a. Translators b. Interpreters c. Compilers d. None of these

Last Answer : c. Compilers

Description : Distinguish between FTP and Telnet. -Technology

Last Answer : FTP (File Transfer Protocol) facilitates the transfer of files from one point to another while Telnet is a connection protocol that allows a user to connect to a remote server.

Description : Distinguish between a record and a field in a table, with an example. -Technology

Last Answer : Distinguish between a record and a field in a table are as follows:RecordFieldIt is a collection of data items, which represent a complete unit of information about a thing or a person.It is an ... called a record.e.g. if Employeeis a table, then empId, empName, department, salary arethe fields.

Description : Distinguish between Text and Memo data types. -Technology

Last Answer : Distinguishing between Text and Memo are as follows:TextMemoIt is used for relatively short entries.It is used for long text paragraphs.It can store upto 255 characters only.It can store upto 65536 ... the number of characters.It does not use field size property.e.g. Emp_namee.g. Emp_description

Description : Distinguish between Number and AutoNumber data type field. Give example of each. -Technology

Last Answer : Distinguishing between Number and AutoNumber dataNumberAutoNumberIt holds numeric values whichare used for calculations.It allows to store numbers thatare automatically generatedfor each record.The field ... for every newcustomer, this field willautomatically increase and willprovide a new number.

Description : Distinguish between container and empty tags. -Technology

Last Answer : Container elements HTML container elements require a starting as well as an ending tags.e-g , , .They affect the text appearing between their starting and ending tags.Empty elements HTML empty elements require just a ... and not an ending tag.e.g. , , .They just carry out the job assigned to them.

Description : How will you distinguish hypermedia from hypertext? -Technology

Last Answer : Hypertext includes only plain text and links while hypermedia is a logical extension of hypertext, which includes graphics, audio, video, alongwith plain text and links.

Description : Distinguish between tag and tag with the help of an example of each. -Technology

Last Answer : tag is used to specify the default setting of the text. It takes the same attributes as tag. The only difference is that the tag affects all the text that follows until a new tag affect that is encountered. tag affects the text that comes upto its closing tag.e.g.

Description : Distinguish between tag and tag with the help of an example. -Technology

Last Answer : Distinguishing between tag and tag are as follows: tag tagIt is a container element.It is an empty element.It is used to define a paragraph ofthe text on the Web page.It is used to insert line break.It ... no attribute.e.g. This ts a paragraph.e.g.This is a 1 line break into the Web document.

Description : Distinguish between and tags with example. -Technology

Last Answer : Distinguishes between and tags are as follows: Tag TagThe tag is known assuperscript tag.The tag is known assubscript tag.It is used to definesuperscripted text.It is used to define subscripted text.Tags that are ... to display(a+ b)2is(a+ b) 2e.g. HTML command to displaylog2+log x islog 2+logx

Description : Write the purpose of HTML. Distinguish between tag and tag. -Technology

Last Answer : HTML is used to represent page, data on website with proper manner and attractive look to get maximum users.Difference between tag and tagtag is a block level element, and is mainly used to add content, whereas the tag is used to force a line break within the element.

Description : Distinguish between ComboBox and ListBox. When would you prefer using them over Radiobutton and Checkbox? -Technology

Last Answer : Differences between ComboBox and ListBox are as follows :ComboBox ListBoxIt occupies less space but show only one value for visbility.It occupies more space but shows more than one value.Multiple select ... you need to select only one option then you would prefer using ComboBox over Radio Button.

Description : I am having problems with, "C++ for Dummies", can you help me download the compiler?

Last Answer : answer:Why not? Have you even tried to install it? Also, how does your i5 laptop not have a disc drive?

Description : What's the best combiantion C++ Compiler+IDE for windows?

Last Answer : im not a 1337 c++ programmer, but my teacher had us use visual c++ express (you could use visual studio if u wanna pay) for a couple of my classes and it was pretty good as far as formatting and readability

Description : Best C++ compiler and tutorial/book?

Last Answer : Your best bet for a compiler is probably gcc, despite your experience with it. On Linux, you'll need to worry about an editor or IDE as well, and on that I can't really advise you, since I've been using Emacs ... learned C++ (in the days of cfront), the book C++: How to Program was one of the best.

Description : What kind of program is the compiler ?

Last Answer : Compiler Translator Program.

Description : What does the compiler do ?

Last Answer : 1. Translates source program into object program. 2. Link to the program . That means adding the necessary routine to the program . Routine is a small part of the program that is given appropriate ... memory space in the main memory . 5. If necessary, print out the object or source program.

Description : What is the difference between a compiler and an interpreter ?

Last Answer : Compiler vs. Interpreter Compilers and interpreters convert high level presenter language into machine language. The compiler reads and translates the entire program together. But the interpreter reads ... program. Improper editing and modification in the interpreter is easier than in the compiler.

Description : What is a compiler ?

Last Answer : What is a compiler? The compiler reads and translates the entire program together. Both the assembler and the compiler are in Auxilliary Memory . Radam is brought to them when needed. Translating high ... assembler. As a result, the compiler occupies more space for memory. That is called compiler.

Description : What is the problem with the compiler ?

Last Answer : : The disadvantage of the compiler is that since the compiler translates the entire program into an object program at once , its error cannot be detected step by step and therefore cannot be modified immediately.

Description : Differences between Compiler and Interpreter ?

Last Answer : 1) The compiler translates the whole program together. But the interpreter reads one line and translates. 2) Both Compiler and Interpreter display program errors. However, the compiler displays the errors ... programs. 6) It takes less time than Interpreter to execute the program through Compiler .

Description : Which Companion is called Jamiul Qur'an (Qur'an Compiler) ?

Last Answer : Hazrat Uthman Ghani Radiyallahu Anhu is called Jami-ul-Quran.

Description : What is a compiler ?

Last Answer : The compiler is said to translate high-level language source programs into object programs.

Description : C program Compiler What ?

Last Answer : Compile Yes One Kind of Translator Which Hi Level In language Written To the program Machine In language Transformation By

Description : Why is a compiler a necessary part of a computer?

Last Answer : Compilers are only necessary for programmers; ordinary users donot require them. A compiler is a program which converts ahigh-level source input into a lower-level source output, reducingthe amount of abstraction. ... , not increase it. If you want to add more abstraction, youneed to do so manually.

Description : A computer Program that translates one program instruction at a time into machine language is called a/an A) Interpreter B) CPU C) Compiler D) Simulator

Last Answer : Answer : A

Description : A computer program that converts an entire program into machine language is called a/an A) Interpreter B) Simulator C) Compiler D) Commander

Last Answer : Answer : C

Description : A computer program that converts an entire program into machine language at one time is called a/an A) Interpreter B) CPU C) Compiler D) Simulator

Last Answer : Answer : C

Description : What do you call the translator which takes assembly language program as input & produce machine language code as output? A) Compiler B) Interpreter C) Debugger D) Assembler

Last Answer : Answer : D

Description : A Compiler is

Last Answer : Answer : C

Description : The translator program used in assembly language is called A) Compiler B) Interpreter C) Assembler D) Translator

Last Answer : Answer : C

Description : What is a compiler? A) A compiler does a conversion line by line as the program is run B) A compiler converts the whole of a higher level program code into machine code in one step C) A compiler is a general purpose language providing very efficient execution D) None of the above

Last Answer : Answer : B

Description : A compiler is a translating program which A) Translates instruction of a high level language into machine language B) Translates entire source program into machine language program C) It is not involved in program’s execution D) All of above

Last Answer : Answer : D

Description : A ________ is a special program that processes statements written in a particular programming language and turns them into machine language. A. Compiler B. Device Driver C. Assembler D. None of the above

Last Answer : A. Compiler

Description : Which analyses and executes the source code in line-by-line manner, without looking at the entire program? A. Compiler B. Interpreter C. Assembler D. None of the above

Last Answer : B. Interpreter

Description : Which of the following language is the closest to the machine code? A. Compiler B. Interpreter C. Assembler D. None of the above

Last Answer : C. Assembler

Description : Language Translators can be divided into three major categories.They are _________ A. Compiler, Operating System and Assembler B. Compiler, Device Driver and Assembler C. Compiler, Interpreter and System Utility D. Compiler, Interpreter and Assembler

Last Answer : D. Compiler, Interpreter and Assembler

Description : How do you generate documentation from the C# file commented properly with a command-line compiler? 

Last Answer : Compile it with the /doc switch. 

Description : List some compiler directives?

Last Answer : #if #else #elif #endif #define #undef #warning #error #line #region #endregion

Description : How do you generate documentation from the C# file commented properly with a command-line compiler?

Last Answer : Compile it with the /doc switch.