WGU D278 OA Scripting And Programming
Foundations OA Final Actual Verified Exam Test Bank
1 Newest With Complete Questions And Correct
Detailed Answers|| Newest Exam!!!
Which expression evaluates to true only when the user is
within 3 years of 21 years, given a variable x containing a
user's age?
A x >= 18) or ( x <= 24)
B ( x >= 18) and ( x <= 24)
C ( x < 18) or ( x > 24)
D ( x < 18) and ( x > 24) - Answer-B
Which data type is used for items that are measured in
length?
A Integer
B Float
C String
D Boolean - Answer-B
Which data type should be used to keep track of how
many planes are in a hangar?
,2|Page
A Integer
B Float
C String
D Boolean - Answer-A
A function should convert hours and minutes to seconds,
such as converting 1 hour and 10 minutes to 4,200
seconds.
What should be the input to the function?
A Hours only
B Minutes only
C Hours and minutes
D Hours, minutes, and seconds - Answer-C
A function returns a number x cubed. For example, if x is
3, the function returns 3 * 3 * 3, or 27.
What should be the input to the function?
Ax
B x, x
,3|Page
C x, x, x
D 27 - Answer-A
A function calculates the weight difference (Diff) given two
sample weights (S1 and S2).
What should be the output from the function?
A S1 only
B S2 only
C S1 and S2
D Diff - Answer-D
function P(integer x) returns integer y
y=2*x
What does P(5) evaluate to?
A2
B5
C 10
D 25 - Answer-C
, 4|Page
Function F()
Put "Hey" to output
What entire output appears after three successive calls to
F()?
A Hey
B HHHey
C HeyHeyHey
D Hey Hey Hey - Answer-C
Which operator should be used to determine if a number is
evenly divisible by 5?
A+
B-
C*
D % - Answer-%
A car drove 200 miles using 10 gallons of fuel.
Which operation should be used to compute the miles per
gallon, which is 20?