EXAM 70 QUESTIONS AND CORRECT DETAILED ANSWERS (VERIFIED
ANSWERS) |ALREADY GRADED A+
1. What does a programmer do first to use an existing programming library?-
: Include the library
2. What relationship is common among a programming library's functions?: -
Functions all relate to the same purpose.
3. What is an advantage of using a programming library?: The code has alreadybeen
tested.
4. Which language is dynamically typed?: Python
5. Which language is not built on object-oriented design principles?: C
6. A language substantially supports a programmer creating items like person,teacher,
and students. Each item has internal data and some operations.
Which characteristic describes that language?: Object-oriented
7. A programmer wants a compiler to report an error if an integer variable is
assigned with a string.
Which kind of language should the programmer use?: Statically typed
8. A language uses tags around text to indicate how that text should be
formatted.
Which characteristic describes a language having such tags?: Markup
9. What is a characteristic of a compiled language?: Converts to machine lan-guage
before running
10. What is a characteristic of an interpreted language?: Runs easily on differentkinds of
machines
11. What is an advantage of interpreted programs?: They can be modified at runtime.
12. Which characteristic specifically describes a markup language?: Tags sur-round
text to describe desired formatting.
13. Which characteristic specifically describes interpreted languages?: Theycan be
1/7
, 2024 D278 WGU SCRIPTING AND PROGRAMMING FOUNDATIONS ACTUAL
EXAM 70 QUESTIONS AND CORRECT DETAILED ANSWERS (VERIFIED
ANSWERS) |ALREADY GRADED A+
run one statement at a time.
14. Which characteristic specifically describes interpreted languages?: Theycan run
on any machine having the right interpreter.
15. A car drove 200 miles using 10 gallons of fuel.Which operation should beused to
compute the miles per gallon, which is 20?: Division
16. Which operator should be used to determine if a number is evenly divisibleby 5?: %
17. A variable should hold a person's height in meters.Which data type shouldthe
variable be?: Float
2/7