COMPUTER PROGRAMMING FUNDAMENTALS
PROGRAMMING LANGUAGES
Question
[CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
|
|
Language Translator
|
|
Compiler
|
|
Interpreter
|
|
None of the above
|
Detailed explanation-1: -Google Translate needs no introduction, being probably the most well-known machine translation software out there. Launched in 2006, the translation tool previously used SMT to churn out word-for-word translations.
Detailed explanation-2: -All source code programs need to be translated before they can be executed. Assemblers, compilers, and interpreters are all types of program translator. However, they use different methods to translate programs.
Detailed explanation-3: -Compilers have several advantages: Compiled programs run quickly, since they have already been translated. A compiled program can be supplied as an executable file.
Detailed explanation-4: -They make debugging easier as each line of code is analysed and checked before execution. Interpreted programs will launch immediately, but your program may run slower then a complied file. No executable file is produced. The program is interpreted again from scratch every time you launch it.