WGU C182 Introduction to IT 2024 /
2025 Exam Review | Complete
Exam Review with Questions and
Verified Answers | 100% Correct
Question:
How does a high level compiled language work?
Answer:
When it is compiled, the language translator, called a compiler, translates the
entire program. This creates an executable program which can be run at a
later time.
Question:
What is a disadvantage of a compiled language?
Answer:
It is not portable (cannot be moved to another type of operating system)
,Question:
How does an interpreted language work?
Answer:
The interpreter takes the most recently entered instruction, translates it into
machine language, and executes it. This allows the programmer to
experiment while developing code.
Question:
How are scripting languages translated?
Answer:
They are interpreted
Question:
What is a disadvantage of an interpreted language?
Answer:
It is slower since each line has to be processed
Question:
What are examples of compiled languages?
Answer:
Pascal, COBOL, FORTRAN, C, C++, Ada, Java, C#
,Question:
What are examples of scripting languages?
Answer:
JavaScript, ASP ,JSP ,PHP ,Perl ,Tcl ,Python
Question:
What is both a scripting language and a compiled language?
Answer:
Python
Question:
Is a Scripting language or Compiled language simpler?
Answer:
Scripting is, so will normally be used for simple scenarios (simple tasks, short
lived tasks, admin tasks, web pages, etc)
Question:
Are scripting or compiled languages typically used for automation?
Answer:
Scripting languages (TCL, Python, etc)
, Question:
Will each compiled or interpreted language have it's own compiler or
interpreter?
Answer:
Yes
Question:
What is an Algorithm?
Answer:
It is a formula or procedure for solving a problem. It can also be described as a
set of steps that are followed in order to complete a computer process.
Question:
What should an Algorithm be?
Answer:
Simple and clear
Question:
What is N-Tier development?
Answer:
In typical N-tier development projects, the tiers are divided between the
presentation tier, the logic tier, and the data tier.