Edit Game
C# Conditionals Review
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public




Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






 Save   18  Close
What will be printed to the console?
"Not sure"
What will be printed to the console?
"Hold"
What will be printed to the console?
"Good"
True or False?
True
True or False?
False
True or False?
Trick question - neither! Should have two equals signs
True or False?
False
What is the data type?
bool
What is the data type?
double (or float)
What is the data type?
int
What is the data type?
string
What will be printed to the console?
"It is not a great sledding day."
How can a developer check if two things are equal?
==
When will the program enter the else clause?
When the if condition is false
What characters go around the body of an if statement?
Curly brackets
What are the two possible values a boolean can be?
true, false
What is the first keyword needed to create a conditional?
if
What is the data type for a condition?
boolean