ASSESSMENT EXAM LATEST 2025 COMPLETE 150 ACTUAL
TEST QUESTIONS AND CORRECT ANSWERS (100%
CORRECT VERIFIED SOLUTIONS) NEWEST UPDATED
VERSION |GUARANTEED PASS.
Which data type is used for items that are measured in length?
An 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?
An Integer
B Float
C String
D Boolean
Answer- A
,Rationale: 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?
An 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
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
, Function F ()
Put "Hey" to output
What entire output appears after three successive calls to F ()?
A Hey
B Whey
C HeyHeyHey
D Hey Hey Hey
C
What is a valid user-defined function name?
An A reserved word
B Any valid identifier
C Any variable name
D A floating-point number
B