Scripting and Programming Actual FINAL PREP-
Foundations - C173 with C173 Pre-Assessment UPDATED ACTUAL
Questions and CORRECT Answers
Which operator should be used to determine if a number %
is evenly divisible by 5?
A car drove 200 miles using 10 gallons of fuel. Division
Which operation should be used to compute the miles
per gallon, which is 20?
floating-point literal a number with a fractional part, even if that fraction is 0, as in 1.0, 0.0, or 99.573
string literal consists of text (characters) within double quotes, as in "Go #57!". A character
includes any letter (a-z, A-Z), digit (0-9), or symbol (~, !, @, etc.).
A variable should hold a person's height in meters. Float
A variable should hold the names of all past U.S. String array
presidents.
integer A variable of type______ can hold whole number values, like 1, 999, 0, or -25 (but
not 3.5 or 0.001).
, A program uses the number of seconds in a minute in Constant integer secondsPerMinute
various calculations.
How should the item that holds the number of seconds in
a minute be declared?
A program determines if a user's age is high enough to Constant integer minAge
run for U.S. president. The minimum age requirement is
35.
How should the item that holds the minimum age be
declared?
Given integer x = 3 and integer y = 5. 6.5
What is the value of the expression ( x / 2.0) + y?
Given float x = 10.2 and float y = 1.0. 10.2
What is the value of the expression x / y ?
What kind of operator is the == in the expression i == 20? Equality
What is the purpose of parentheses () in a programming To group expressions
expression?
Given float x = 3.0. x / 2 + 0.5 /2 + .25
Which expression evaluates to 2.0?
Which expression evaluates to true only when the user is ( x >= 18) and ( x <= 24)
within 3 years of 21 years, given a variable x containing a
user's age?
Which data type is used for items that are measured in Float
length?
Which data type should be used to keep track of how Integer
many planes are in a hangar?
A function should convert hours and minutes to seconds, Hours and minutes
such as converting 1 hour and 10 minutes to 4,200
seconds.
What should be the input to the function?
Foundations - C173 with C173 Pre-Assessment UPDATED ACTUAL
Questions and CORRECT Answers
Which operator should be used to determine if a number %
is evenly divisible by 5?
A car drove 200 miles using 10 gallons of fuel. Division
Which operation should be used to compute the miles
per gallon, which is 20?
floating-point literal a number with a fractional part, even if that fraction is 0, as in 1.0, 0.0, or 99.573
string literal consists of text (characters) within double quotes, as in "Go #57!". A character
includes any letter (a-z, A-Z), digit (0-9), or symbol (~, !, @, etc.).
A variable should hold a person's height in meters. Float
A variable should hold the names of all past U.S. String array
presidents.
integer A variable of type______ can hold whole number values, like 1, 999, 0, or -25 (but
not 3.5 or 0.001).
, A program uses the number of seconds in a minute in Constant integer secondsPerMinute
various calculations.
How should the item that holds the number of seconds in
a minute be declared?
A program determines if a user's age is high enough to Constant integer minAge
run for U.S. president. The minimum age requirement is
35.
How should the item that holds the minimum age be
declared?
Given integer x = 3 and integer y = 5. 6.5
What is the value of the expression ( x / 2.0) + y?
Given float x = 10.2 and float y = 1.0. 10.2
What is the value of the expression x / y ?
What kind of operator is the == in the expression i == 20? Equality
What is the purpose of parentheses () in a programming To group expressions
expression?
Given float x = 3.0. x / 2 + 0.5 /2 + .25
Which expression evaluates to 2.0?
Which expression evaluates to true only when the user is ( x >= 18) and ( x <= 24)
within 3 years of 21 years, given a variable x containing a
user's age?
Which data type is used for items that are measured in Float
length?
Which data type should be used to keep track of how Integer
many planes are in a hangar?
A function should convert hours and minutes to seconds, Hours and minutes
such as converting 1 hour and 10 minutes to 4,200
seconds.
What should be the input to the function?