1/19
From textbook
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
What kind of structure executes a set of statements only under certain circumstances?
Decision
What kinf os structure provides one alternative path of execution?
Single execution decision
What kind of expression has a value of either true or false?
Boolean
What kind of operators are >,<, and ==?
relational
What kind of structure tests a condition and then takes one path if the condition is true or another path if false?
Dual alternative decision
What kind of statement do you use to write a single alternative decision structure?
if statement
What kind of statement do you use to write a dual alternative decision structure?
if-else
What kind of decision structure is written inside another decision structure?
nested
&&, ||, and ! are what kinf of operators?
logial
A compound Boolean expression created with the _____ operator is true only if both of its subexpressions are true.
and
A compound Boolean expression created with the ____ operator is true if either of its subexpressions is true.
or
What kind of operator takes a Boolean expression as its operand and reverses its logical value?
not
What is a boolean variable that signals when some condition exists in the program?
flag
What family of methods can be used to convert a string to a specific data type without throwing an expression?
‘TryParse’
If several ____ controls exist in a GroupBox, only one of them may be selected at a time.
RadioButton
what statement is used to create a multiple alternative decision structure?
‘switch’
what section of a switch statement is branched to if none of the cases values match the text expression?
‘default’
what number does a ListBox’s index start at?
0
What property is used to determine whether an item is selected in a ListBox?
SelectedIndex
What property holds the item that is selected in a ListBox control?
SelectedItem