WGU Scripting and Programming Foundations - Scripting-and-Programming-Foundations Exam Practice Test

Which statement describes a compiled language?
Correct Answer: D Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
A programmer has been hired to create an inventory system for the books in a library. What is the waterfall phase in which waterfall outlining all the functions that need to be written to support the inventory system?
Correct Answer: C Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
Which snippet represents the loop variable update statement in the given code?
integer h = 7
while h < 30
Put h to output
h = h + 2
Correct Answer: D Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
What is an argument?
Correct Answer: D Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
Which kind of languages are C and Java?
Correct Answer: B Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
What is a string?
Correct Answer: D Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
A particular sorting takes integer list 10,8 and incorrectly sorts the list to 6, 10, 8.
What is true about the algorithm's correctness for sorting an arbitrary list of three integers?
Correct Answer: B Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
Which two situations would be helped by using a programming library?
Correct Answer: D,E Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).
Which output results from the given algorithm?
i = 61
d = 6
c = 0
while i >= d
c = c + 1
i = i - d
Put c to output
Correct Answer: C Vote an answer
Explanation: Only visible for PassTestking members. You can sign-up / login (it's free).