Solutions
Which operator evaluates the remainder of division?
*
+
/
%
// Correct Answer - %
Find an operation's result. Give an example. Correct Answer - x
= x * 1.5
Which are relational operators?
!=
=
+=
not
*=
<=
>
and Correct Answer - <=
>
Classify each value type with the correct data type it describes.
Correct Answer -
What is the value of this expression? Correct Answer - True
What are we referring to when we talk about "Grammar" in
programming?
, A programming language's strict programming rules for structure
The proper syntax of loops
Conversations we have about programming
none of the above Correct Answer - A programming language's
strict programming rules for structure
Sue is writing a program that automatically emails her professor
when needed. Which type of data is best suited to hold the email
addresses?
integer
float
string
boolean Correct Answer - String
Which is a named item used to hold a value?
operator
object
variable
reserved word
assignment statement Correct Answer - Variable
John is writing a program that graphs his daughter's weight growth
over her first twelve months. He needs a variable the includes her
age at the time of weighing. Which type of data is best suited to hold
the age?
integer
string
boolean
float Correct Answer - Float