1/19
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
What is A
Access Modifier
What is B
Return Types
What is C
Method Name
What is D
Parameter List
What is E
Method Body
Which method will wipe out all text on the screen?
Console.Clear();
Which keyword is used to return a value inside a method?
return
void means that a method does not have a return value.
t/f
t
A ____________ is commonly used to control the number of times that a loop iterates.
counter variable
The term ___________ is used to describe a file that data is written to.
output file
When you work with a __________ file you access data from the beginning of the file to the end of the file.
sequential access
What is contained in the body of a loop?
A statement or series of statements in a loop that are executed if the Boolean expression is true.
The symbols >, <, and ==
are all ___________ operators.
relational
You use a(n) _________ statement to write a single-alternative decision structure.
if
A __________ decision structure is written inside another decision structure.
nested
A compound Boolean expression created with the ___________ operator is true if either of its subexpressions is true.
||
If several ________ controls exist in a GroupBox, only one of them may be selected at a time.
RadioButton
The while
loop is known as a pretest loop, which means it tests its condition before performing an iteration.
t/f
t
To append data to an existing file, you open it with the File.AppendText
method.
tf
True
If an item is not selected in a ListBox, the control’s SelectedIndex property will be set to 0.
t/f
f