Programming Foundations Questions
with Accurate Answers
A car drove 200 miles using 10 gallons of fuel.
Which operation should be used to compute the miles per gallon,
which is 20?
A Addition
B Subtraction
C Multiplication
D Division correct answer Division
A company has a new project it wishes to implement to track and
analyze employee and customer interactions. The company leadership
determines that the system should support direct data entry as well as
automated data capture of phone calls and emails.
Which phase of the waterfall process is occurring?
A Analysis
B Design
C Implementation
D Testing correct 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 correct answer D
A function MyFct has an input x and an output z.
What does MyFct return?
A Nothing
B x only
C z only
D x and z correct 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 correct 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 correct answer C
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?
A Dynamically typed
B Object-oriented
C Markup
D Statically typed correct answer B