.............means to assign a beginning value to the counter or accumulator.
a) Initializing
b) Updating
c) Incrementing
d) Checking
Explanation: Initializing means to assign a beginning value to the counter or accumulator. Typically, counters and accumulators are initialized to the number 0. However, they can be initialized to any number, depending on the value required by the procedure.
…… means adding a number to the value stored in the accumulator or counter.
a) Initializing
b) Updating
c) Backtracking
d) Checking
Explanation: Updating often referred to as incrementing, means adding a number to the value stored in the counter or accumulator. The number can be either positive or negative, integer or non-integer. A counter is always updated by a constant value typically the number 1 whereas an accumulator is updated by a value that varies.
When a checkbox’s……..property is set to true, it can both accept and display multiple lines of text.
a) Multiline Property
b) ReadOnly Property
c) ReadWrite Property
d) ScrollBars Property
Explanation: When a text box’s Multiline property is set to True, the text box can both accept and display multiple lines of text; otherwise, only one line of text can be entered in the text box, that is when the property is set to false, it can only accept and display one line of text.
Text box’s ReadOnly Property is set to ………by default.
a) True
b) False
Explanation: Text box’s ReadOnly property is set to false by default. Changing a text box’s ReadOnly property from its default value (False) to True prevents the user from changing the contents of the text box during run time.
A text box’s……… property specifies whether the text box has scroll bar.
a) Multiline Property
b) ReadOnly Property
c) ReadWrite Property
d) ScrollBars Property
Explanation: A text box’s ScrollBars property specifies whether the text box has scroll bar. A text box’s ScrollBars property specifies whether the text box has no scroll bars (the default), a horizontal scroll bar, a vertical scroll bar, or both horizontal and vertical scroll bars.
The instruction above the loop is known as the……..
a) Priming read
b) After read
c) Before read
d) Reading
Explanation: The instruction above the loop is referred to as the priming read, because it is used to prime (prepare or set up) the loop. The priming read initializes the loop condition by providing its first value.