Contents

………… is an underscore that is immediately preceded by a space and is located at the end of the physical line of code.
a) Underscore                      
b) Hyphen
c) Line continuation character
d) Line termination character

c

Explanation: Line continuation character is an underscore that is immediately preceded by a space and is located at the end of the physical line of code. It is used to split a long instruction into two or more physical lines in the Code Editor Window.


The InputBox functions prompt argument should be entered using……………
a) Book title capitalization
b) Sentence capitalization
c) Text capitalization
d) Post capitalization

b

Explanation: Sentence Capitalization is used for prompt, whereas book capitalization is used for the title. The capitalization (if any) you use for the defaultResponse depends on the text itself. In most case, you enter the value return by an Inputbox function to a string variable.


The value returned by the Inputbox depends on the……… the user chooses.
a) Button                              
b) Message
c) Property                           
d) Return type

a

Explanation: The value returned by the Inputbox depends on the button the user chooses. If the user chooses the Ok button, the inputBox function returns the value contained in the input area of the dialog box; the return value is always treated as a string. If the user clicks the Cancel button or the Close button in the title bar, the InputBox function returns an empty String.


The………. argument contains the message to display inside the dialog box.
a) defaultResponse            
b) prompt
c) title                                    
d) message

b

The……… constant instructs the computer to advance the insertion point to the next line in control.
a) ControlChars.NewLine
b) ControlChars.NextLine
c) ControlChars.Line
d) ControlChars.blankLine

a

Explanation: The ControlChars.NewLine constant when inserted at the right location in the code, the control shifts to the next line. Thus it instructs the computer to advance the insertion point to the next line in control.


………can be used to advance the insertion point in a file or on the printer.
a) Advance pointer
b) Nextpoint pointer
c) NextLine constant
d) ControlChars.NewLine constant

d

Explanation: The ControlChars.NewLine constant when inserted at the right location in the code, the control shifts to the next line. Thus it can be used to advance the insertion point in a file or the pointer.