WGU Scripting-and-Programming-Foundations - WGU Scripting and Programming Foundations Exam
Total 138 questions
The steps in an algorithm to build a picnic table are given.
1) Measure and mark the lumber cuts that need to be made
2) Buy the needed materials
3) Determine the needed materials
4) Cut the lumber to the proper dimensions
5) Assemble the pieces and paint.
Which two steps of the algorithm should be switched to make the algorithm successful?
Given integer x = 12 and integer y = 4. What is the value of the expression x - y * 2?
What does the following algorithm determine?
if x < 0
a = 1
else if x = 0
a = 2
else
a = 3
Which kind of languages are C, C++ and Java?
Which kind of language is HTML?
A sample function is shown:
What is returned for F (3)?
A programmer has been hired to create an inventory system for a library. What is the Waterfall phase in which outlining all the functions that need to be written to support the inventory system occurs?
A software developer creates a list of all objects and functions that will be used in a board game application and then begins to write the code for each object. Which two phases of the Agile approach are being carried out?
Which two operators are found in the snippet not (g != 8)?
Choose 2 answers.
What is output by calling Greeting() twice?