Question 1
2.75 out of 2.75 points
To customize a VSTO template by adding interactive objects, the ____ view of Visual Studio is used. | ||||
Selected Answer: DesignCorrect Answer: Design |
Question 2
2.75 out of 2.75 points
The ____ constant returns the value for PI (the constant ratio between a circle and its diameter). | ||||
Selected Answer: Math.PICorrect Answer: Math.PI |
Question 3
2.75 out of 2.75 points
The ____ object acts as a container for Visual Basic objects in a Document Actions task pane. | ||||
Selected Answer: ActionsPaneCorrect Answer: ActionsPane |
Question 4
2.75 out of 2.75 points
The ____ object allows users either to select an existing value or enter a new value. | ||||
Selected Answer: ComboBoxCorrect Answer: ComboBox |
Question 5
2.75 out of 2.75 points
The ____ method of the Math class returns the square root of the number. | ||||
Selected Answer: Sqrt(x)Correct Answer: Sqrt(x) |
Question 6
2.75 out of 2.75 points
The ____ property of a ComboBox object returns the text value of the selected value. | ||||
Selected Answer: SelectedItemCorrect Answer: SelectedItem |
Question 7
2.75 out of 2.75 points
The Math class provides the____ method that returns the integer to the right of the number on the number line. | ||||
Selected Answer: Ceiling(x)Correct Answer: Ceiling(x) |
Question 8
2.75 out of 2.75 points
The ____ procedure converts a string value to uppercase letters. | ||||
Selected Answer: ToUpperCorrect Answer: ToUpper |
Question 9
0 out of 2.75 points
The ____ procedure of the String class is used to remove spaces from the string. | ||||
Selected Answer: TrimSpacesCorrect Answer: Trim |
Question 10
2.75 out of 2.75 points
The ____ object displays the days in each month as appropriate for the year. | ||||
Selected Answer: CalendarCorrect Answer: Calendar |
Question 11
2.75 out of 2.75 points
The prefix ____ is used when naming a CheckBox object. | ||||
Selected Answer: chkCorrect Answer: chk |
Question 12
2.75 out of 2.75 points
The ____-side computer is the computer that is requesting the Web page. | ||||
Selected Answer: clientCorrect Answer: client |
Question 13
2.75 out of 2.75 points
The name of a CheckBox object is stored in its ____ property. | ||||
Selected Answer: NameCorrect Answer: Name |
Question 14
0 out of 2.75 points
If you prefer to design a Web page without using starter templates, select ____ before you name the project when you create a new Web Site project. | ||||
Selected Answer: all of the aboveCorrect Answer: ASP.NET Empty Web Site |
Question 15
2.75 out of 2.75 points
The ____ property of a CheckBox indicates whether a CheckBox has been checked. | ||||
Selected Answer: CheckedCorrect Answer: Checked |
Question 16
0 out of 2.75 points
A Web page that displays information such as text and pictures with no interactivity is called a ____ Web page. | ||||
Selected Answer: standardCorrect Answer: static |
Question 17
0 out of 2.75 points
The ASP.NET 4.0 technology used with Visual Basic 2010 creates a(n) ____. | ||||
Selected Answer: concatenated server postCorrect Answer: active server page |
Question 18
2.75 out of 2.75 points
To remove all objects from a ListBox object, the ____ method is used. | ||||
Selected Answer: ClearCorrect Answer: Clear |
Question 19
2.75 out of 2.75 points
Which line of code will add the value “East” to a ListBox object named lstDirections? | ||||
Selected Answer: lstDirections.Items.Add(“East”)Correct Answer: lstDirections.Items.Add(“East”) |
Question 20
0 out of 2.75 points
A ____-controlled loop tests the condition after the code in the loop body has been executed. | ||||
Selected Answer: topCorrect Answer: bottom |
Question 21
2.75 out of 2.75 points
You can create a deployed version of a program by using the ____ process. | ||||
Selected Answer: ClickOnce DeploymentCorrect Answer: ClickOnce Deployment |
Question 22
2.75 out of 2.75 points
A loop’s ____ variable is a numeric variable that keeps track of the number of iterations the loop completes. | ||||
Selected Answer: controlCorrect Answer: control |
Question 23
2.75 out of 2.75 points
A ____ operator allows you to perform arithmetic operations with a variable and store the results back to that variable. | ||||
Selected Answer: compoundCorrect Answer: compound |
Question 24
2.75 out of 2.75 points
A(n) ____ variable collects a total value over a period of time. | ||||
Selected Answer: accumulatorCorrect Answer: accumulator |
Question 25
0 out of 2.75 points
The hot key for a menu item can be activated with the keyboard by pressing the ____ key and the hot key at the same time. | ||||
Selected Answer: CTRLCorrect Answer: ALT |
Question 26
2.75 out of 2.75 points
A For…Next loop with a beginning value of 1, an ending value of 25, and a Step value of 3 will execute ____ times. | ||||
Selected Answer: 9Correct Answer: 9 |
Question 27
0 out of 2.75 points
If ____ appears as the last line of a loop, the loop is a bottom-controlled Do loop that will stop execution when a condition becomes true. | ||||
Selected Answer: Loop WhileCorrect Answer: Loop Until |
Question 28
2.75 out of 2.75 points
The ____ follows the keyword For in a For…Next loop. | ||||
Selected Answer: control variableCorrect Answer: control variable |
Question 29
2.75 out of 2.75 points
The ____ exception type occurs when a variable with no value is passed to a procedure. | ||||
Selected Answer: ArgumentNullExceptionCorrect Answer: ArgumentNullException |
Question 30
2.75 out of 2.75 points
When the selected index of a ComboBox is equal to ____, it indicates that the first item in the ComboBox list was selected. | ||||
Selected Answer: 0Correct Answer: 0 |
Question 31
2.75 out of 2.75 points
To detect exceptions and take corrective action, the ____ structure is used. | ||||
Selected Answer: Try-CatchCorrect Answer: Try-Catch |
Question 32
2.75 out of 2.75 points
The ____ property allows you to change the generic graphic on the splash screen. | ||||
Selected Answer: BackgroundImageCorrect Answer: BackgroundImage |
Question 33
2.75 out of 2.75 points
The ____ keyword is placed before the Sub keyword when creating a Sub procedure to specify that the procedure can be called only by code within the class in which it exists. | ||||
Selected Answer: PrivateCorrect Answer: Private |
Question 34
2.75 out of 2.75 points
The ____ Information dialog box contains values that include the program title, description, company, product, and copyright date. | ||||
Selected Answer: AssemblyCorrect Answer: Assembly |
Question 35
2.75 out of 2.75 points
A(n) ____ is a named set of code that is executed only when called. | ||||
Selected Answer: procedureCorrect Answer: procedure |
Question 36
0 out of 2.75 points
A ____ procedure completes its task and returns a value of a specified data type. | ||||
Selected Answer: SubCorrect Answer: Function |
Question 37
2.75 out of 2.75 points
The ____ exception type occurs when a variable is converted to another data type that is not possible. | ||||
Selected Answer: FormatExceptionCorrect Answer: FormatException |
Question 38
2.75 out of 2.75 points
A ____ procedure can return only one value back to the calling procedure. | ||||
Selected Answer: FunctionCorrect Answer: Function |
Question 39
2.75 out of 2.75 points
The ____ keyword is used in a Function procedure to send a single value back to the call procedure. | ||||
Selected Answer: ReturnCorrect Answer: Return |
Question 40
2.75 out of 2.75 points
A Sub procedure ____ argument(s). | ||||
Selected Answer: can accept any number ofCorrect Answer: can accept any number of |