DOT Net Objective Test

Reviewed by Editorial Team
The ProProfs editorial team is comprised of experienced subject matter experts. They've collectively created over 10,000 quizzes and lessons, serving over 100 million users. Our team includes in-house content moderators and subject matter experts, as well as a global network of rigorously trained contributors. All adhere to our comprehensive editorial guidelines, ensuring the delivery of high-quality content.
Learn about Our Editorial Process
| By Aniketve
A
Aniketve
Community Contributor
Quizzes Created: 2 | Total Attempts: 825
| Attempts: 275 | Questions: 70
Please wait...
Question 1 / 70
0 %
0/100
Score 0/100
1. What does IDE stand for?                               

Explanation

IDE stands for Integrated Development Environment. This is a software application that provides comprehensive tools and features for software development. It includes a code editor, debugger, compiler, and other tools that help programmers write, test, and debug their code. An IDE integrates all these tools into a single user-friendly interface, making it easier for developers to manage and streamline their development process.

Submit
Please wait...
About This Quiz
DOT Net Objective Test - Quiz

This DOT NET Objective Test assesses knowledge of Visual Studio. NET, IDE components, and object-oriented programming languages. It is ideal for learners aiming to enhance their programming skills... see moreand understanding of. NET framework. see less

2. Which are the standard prefixes for the Button and Combo box controls respectively?

Explanation

The standard prefixes for the Button and Combo box controls are "btn" and "cbo" respectively. These prefixes are commonly used in programming to indicate the type or purpose of a control. "btn" is short for button, indicating a control that triggers an action when clicked. "cbo" is short for combo box, indicating a control that allows the user to select an option from a dropdown list.

Submit
3. Visual Studio .NET provides which feature:

Explanation

The correct answer is "All of the above" because Visual Studio .NET provides all the mentioned features. It allows for debugging, which helps in identifying and fixing errors in the code. It also provides application deployment capabilities, which allow developers to package and distribute their applications. Additionally, Visual Studio .NET includes syntax checking, which helps in identifying and correcting syntax errors in the code. Therefore, all the given options are correct.

Submit
4. The Date data type does not hold which type of information.

Explanation

The Date data type in computer programming typically does not hold information about quarters. It is commonly used to store and manipulate information about specific dates, including the day, month, and year. However, quarters are not a standard component of the Date data type.

Submit
5.  Which is not a main component of the Visual Studio IDE? 

Explanation

The Start Menu is not a main component of the Visual Studio IDE. The Solution Explorer, Tool Box, Designer Window, and Properties Window are all essential components that are commonly used in the development process. The Start Menu, on the other hand, is a feature of the operating system and is not directly related to the functionality of the IDE.

Submit
6. The Tick event is found only in which object?

Explanation

The Tick event is found only in the Timer object. This event is triggered at regular intervals specified by the Interval property of the Timer. It allows you to perform certain actions or update the UI periodically. The Timer control is commonly used in scenarios where you need to execute code repeatedly after a certain time interval.

Submit
7. The standard prefix for a dialog control is:

Explanation

The standard prefix for a dialog control is "dlg." This prefix is commonly used in programming languages to indicate that a variable or function is related to a dialog control. It helps to differentiate dialog controls from other types of controls or variables in the program. By using a consistent prefix, it becomes easier to understand and maintain the code.

Submit
8. Which language is not a true object-oriented programming language?

Explanation

VB 6 is not a true object-oriented programming language because it does not fully support the key principles of object-oriented programming, such as inheritance and polymorphism. VB 6 primarily uses procedural programming concepts and lacks the features and syntax necessary for proper object-oriented programming. In contrast, languages like C++, C#, Java, and VB.NET are considered true object-oriented programming languages as they provide robust support for object-oriented programming paradigms.

Submit
9. With A = False and B = True, which statement evaluates as False?

Explanation

The statement "A OR A" evaluates as False when A is False. This is because the OR operator returns True if at least one of the operands is True. Since A is False in this case, both operands are False, resulting in the overall statement being False.

Submit
10. Which menu object property places a check mark in the display of the menu text?                                

Explanation

The menu object property "Checked" places a check mark in the display of the menu text.

Submit
11. Which statement about objects is true?

Explanation

One class can create many objects. In object-oriented programming, a class serves as a blueprint or template for creating objects. Multiple objects can be created based on the same class, each having its own unique set of attributes and behaviors. This allows for code reusability and the ability to create multiple instances of the same type of object with different values.

Submit
12. Which property determines whether a control is displayed to the user?

Explanation

The property that determines whether a control is displayed to the user is the "Visible" property. If the Visible property is set to true, the control will be displayed on the screen. However, if the Visible property is set to false, the control will not be visible to the user.

Submit
13. Which is not a standard dialog box?

Explanation

The correct answer is e.) ZoomDialog. This is because the other options (ColorDialog, FontDialog, OpenDialog, and PrintDialog) are all standard dialog boxes commonly found in software applications. However, ZoomDialog is not a standard dialog box and is not commonly used in software applications.

Submit
14. Which is a numeric data type?

Explanation

Both floating point and integer are numeric data types. Floating point represents decimal numbers with a fractional part, while integer represents whole numbers without any fractional part. Therefore, both options a and b are correct as they represent different types of numeric data. Option c (Boolean) is not a numeric data type as it represents true/false values. Option e (All of the above) is incorrect as it includes option c which is not a numeric data type.

Submit
15. Which method of a ListBox will remove just one item at a time?

Explanation

The correct answer is a.) Items.RemoveAt. This method is used to remove just one item at a time from a ListBox control. It takes the index of the item as a parameter and removes that specific item from the list.

Submit
16. Which is not an integer data type?

Explanation

The data types mentioned in options b, c, d, and e (Byte, Short, Integer, and Long) are all integer data types. However, option a (Single) is not an integer data type. Single is a data type used to represent floating-point numbers with single precision, meaning it can store decimal values but not whole numbers.

Submit
17. Which is true about the name and text property of a control?

Explanation

When a control is first created, the name and text properties are set to the same value. This means that the name property and the text property initially have the same content. However, it is important to note that this does not mean they will always remain the same. The text property can be changed independently from the name property, and any changes made to the text property will not automatically update the name property.

Submit
18. Setting the SelectedIndex property of a ListBox to -1 will:                                 

Explanation

Setting the SelectedIndex property of a ListBox to -1 will de-select any selected item. This means that if there is currently an item selected in the ListBox, setting the SelectedIndex to -1 will remove the selection and no item will be highlighted as selected. This does not cause an error and can be done. Therefore, the correct answer is c.) de-select any selected item.

Submit
19. With A = False and B = True, which statement evaluates as True?

Explanation

The statement "B AND B" evaluates as True when A is False and B is True because the AND operator returns True only if both operands are True. In this case, both B and B are True, so the statement evaluates as True.

Submit
20. The standard prefix for a menu item is:

Explanation

The standard prefix for a menu item is "mnu." This is a commonly used abbreviation for "menu" and is widely recognized in the context of software interfaces. It is intuitive and concise, making it an ideal choice for labeling menu items.

Submit
21. Which is not a property of the Common control class?

Explanation

The property "Show" is not a property of the Common control class. The properties "BackColor", "Font", "ForeColor", and "Name" are commonly used properties in the Common control class to set the background color, font style, foreground color, and name respectively. However, "Show" is not a valid property in this context.

Submit
22. Which TextBox method does not use the clipboard?

Explanation

The Clear method in TextBox does not use the clipboard because it simply clears the content of the TextBox without involving any clipboard operations. This method is used to delete the text present in the TextBox, without affecting the clipboard or any copied or cut content.

Submit
23. The Button control can be activated:

Explanation

The Button control can be activated both programmatically through the click event and by clicking the button with the mouse. This means that the button can be triggered either by code or by a user interacting with it using the mouse.

Submit
24. The Activated event is found only in which object?

Explanation

The Activated event is found only in the Form object. This event is triggered when a form becomes the active form in the application, meaning it gains focus and is ready to receive user input. Other objects like Button, TextBox, Label, and Timer do not have the Activated event.

Submit
25. The Rnd statement will generate a(n):

Explanation

The Rnd statement in programming is used to generate random numbers. In this case, it will generate a decimal value between 0.0 and up to 1.0, but it will not include 1.0. This means that the generated value can be any decimal number between 0.0 and 1.0, but it will not be exactly 1.0.

Submit
26. Which phase of project development typically costs the most?

Explanation

Maintenance typically costs the most in project development because it involves ongoing support, bug fixes, updates, and enhancements to the project. Once the project is implemented and in use, it requires regular maintenance to ensure its functionality and performance. This can involve significant time, effort, and resources, especially if the project is complex or large-scale. Additionally, maintenance costs may increase over time as the project ages and requires more extensive updates and improvements. Therefore, maintenance is the phase that typically incurs the highest costs in project development.

Submit
27. Which two controls combined to form the ComboBox control?

Explanation

The ComboBox control is formed by combining the ListBox and TextBox controls. The ListBox component allows the user to select an item from a list, while the TextBox component allows the user to enter text manually. By combining these two controls, the ComboBox control provides a dropdown list with the ability to also enter custom text.

Submit
28. The .Net class library:

Explanation

The correct answer is "All of the above." The .Net class library contains over 25,000 classes and uses namespaces to manage all of these classes. Additionally, it includes the System.Form namespace specifically for classes used in Windows-based applications. Therefore, all of the given statements are true.

Submit
29. Which is an example of Visual Basic Objects?

Explanation

The correct answer is "All of the above." This is because control objects, ASP.NET, and ADO.NET are all examples of Visual Basic Objects. Control objects are used to create user interfaces in Visual Basic, ASP.NET is a web development framework that uses Visual Basic, and ADO.NET is a data access technology that is also used in Visual Basic programming. Therefore, all of these options are valid examples of Visual Basic Objects.

Submit
30. An object is composed of:                                

Explanation

The correct answer is "All of the above" because an object can have properties, methods, and events. Properties represent the characteristics or attributes of an object, methods define the behavior or actions that an object can perform, and events are actions or occurrences that can be triggered by the object or by external factors. Therefore, an object can be composed of all three components - properties, methods, and events.

Submit
31. Which TextBox property should always be changed first?

Explanation

The Name property should always be changed first because it serves as a unique identifier for the TextBox control. It is important to assign a meaningful and distinguishable name to each TextBox in order to easily reference and manipulate it in the code. The other properties listed, such as AcceptsReturn, BorderStyle, Font, and Text, are all customizable properties that can be changed after the TextBox has been named.

Submit
32. Which type of project can a developer choose in the New Project dialog box?

Explanation

In the New Project dialog box, a developer can choose any type of project, including Visual Basic Projects, Visual C# Projects, and Visual C++ Projects. The option "All of the above" indicates that the developer can select any of these project types.

Submit
33. For which task does the IDE provide multiple ways to accomplish the task?                               

Explanation

The correct answer is "All of the above." The IDE provides multiple ways to accomplish the task of putting a control on the form, running the program, and activating the property window for a control. This allows users to choose the method that is most convenient or comfortable for them, increasing flexibility and efficiency in the development process.

Submit
34. Which sequence of char data types is listed from lowest to highest?

Explanation

The sequence of char data types is listed from highest to lowest based on their ASCII values. The ASCII value of uppercase letters is lower than lowercase letters, so 'A' comes before 'a'. Similarly, the ASCII value of uppercase letters is lower than lowercase letters, so 'Z' comes before 'z'. Therefore, the correct sequence is A, Z, a, z.

Submit
35. Which menu item is not typically found in the File Menu?

Explanation

The menu item "Copy" is not typically found in the File Menu. The File Menu usually consists of options related to managing files such as opening, saving, closing, printing, and exiting the program. Copying, on the other hand, is a function that involves duplicating selected content and is commonly found in the Edit or Context menus.

Submit
36. Which function will return the monthly payments of a loan?

Explanation

The correct answer is b.) Pmt (Rate, Nper, PV). This function calculates the monthly payments of a loan based on the interest rate, the number of payment periods, and the present value of the loan.

Submit
37. Which are the standard prefixes for the text box and label controls respectively?

Explanation

The standard prefixes for the text box and label controls are "txb" and "lbl" respectively. These prefixes are commonly used in programming to provide a consistent naming convention for controls in order to make the code more readable and maintainable. By using these prefixes, it becomes easier to identify and differentiate between different types of controls in the code.

Submit
38. Which function returns the numbers represented in the string "$56.7"?

Explanation

The CDbl function is used to convert a string to a double-precision floating-point number. In this case, the string "$56.7" represents a number and can be converted to a double-precision floating-point number using the CDbl function.

Submit
39. In order to process a number typed in a TextBox the programmer must:

Explanation

The correct answer is d.) Both a and b. The Val function is used to convert the Text value to a numeric value, while the CDbl function is also used to convert the Text value to a numeric value. Both functions can be used by the programmer to process a number typed in a TextBox.

Submit
40. The right side of an assignment statement will hold:

Explanation

The right side of an assignment statement can hold an expression. An expression is a combination of values, variables, and operators that can be evaluated to produce a result. In an assignment statement, the expression on the right side is evaluated and the result is assigned to the variable or object property on the left side. Therefore, option c) "an expression" is the correct answer.

Submit
41. Which is not true about forms and controls in Visual Basic?

Explanation

Forms and controls in Visual Basic are pre-built and are graphical objects. Buttons can indeed be created with the drag and drop method. However, it is not true that new versions of the classes must be created with each project. Classes are reusable templates that can be used across multiple projects without the need to create new versions every time.

Submit
42. Which value for the ComboBox DropDownStyle property allows a user to type in data?

Explanation

The correct answer is a.) DropDown. The DropDownStyle property allows the user to type in data in the ComboBox. This means that the user can manually enter text in addition to selecting options from the drop-down list.

Submit
43. A click event procedure stud for the label control can be created by:

Explanation

The correct answer is e.) All of the above. This is because a click event procedure for a label control can be created by either selecting the object and event from the code editor window's drop-down boxes (option a), typing the code in the code editor window (option b), or by double clicking the control (option c). Therefore, all of these options are valid ways to create a click event procedure for a label control.

Submit
44. In event-driven programming an event is generated by:                                

Explanation

In event-driven programming, an event can be generated by the system, such as a timer or a hardware interrupt, or by a user's action, such as clicking a button or pressing a key. Additionally, the program itself can also generate events, such as when a certain condition is met or a specific function is called. Therefore, all of the options (a, b, c) are correct, as events can be generated by the system, a user's action, or the program itself. Hence, the correct answer is e) All of the above.

Submit
45. The name of the class used to programmatically create a color dialog box is:

Explanation

The correct answer is c.) ColorDialog. This class is used to programmatically create a color dialog box. It allows users to select a color from a predefined set of colors or to define a custom color. The ColorDialog class provides properties and methods to customize the appearance and behavior of the color dialog box, such as setting the initial color, enabling or disabling specific color options, and handling events when the user selects a color.

Submit
46. In order to process a number typed in a TextBox the programmer must:

Explanation

The correct answer is d.) Both a and b.
The programmer must use either the Val function or the CDbl function to convert the Text value in order to process a number typed in a TextBox. Both functions can be used to convert a string representation of a number into a numeric value that can be used in calculations or other operations. Therefore, using either the Val function or the CDbl function would be necessary to process the number correctly.

Submit
47. Which does the solution explorer not display?

Explanation

The solution explorer does not display the Form Properties. The solution explorer is a tool in integrated development environments (IDEs) that allows users to navigate and manage the files and resources in a software project. It typically displays folders, files, and other elements that make up the project. However, the Form Properties, which include settings and attributes specific to a form or user interface, are not displayed in the solution explorer.

Submit
48. The Boolean data type:

Explanation

The correct answer is "Both a and b." The Boolean data type is not unsigned, as it can only have two states: true or false. It is also displayed by the program as yes or no, depending on its state. Therefore, the correct answer is that the Boolean data type is both unsigned and has two states.

Submit
49. The proper operator precedence, from first to last, is:

Explanation

The proper operator precedence, from first to last, is arithmetic, comparison, and logical. This means that arithmetic operations are evaluated first, followed by comparison operations, and finally logical operations. This order ensures that calculations are performed correctly and comparisons are made in the correct order before logical operations are applied.

Submit
50. The left side of an assignment statement will hold:

Explanation

The left side of an assignment statement can hold both a variable and an object property. In programming, when assigning a value to a variable or an object property, the left side of the assignment statement is where the value is being assigned to. Therefore, the correct answer is d) Both a and b.

Submit
51. The CancelButton property belongs to which object?

Explanation

The CancelButton property belongs to the Form object. This property is used to specify the button on a form that is clicked when the user presses the Esc key. When the CancelButton property is set to a button on the form, pressing the Esc key will trigger the button's Click event. This property is commonly used to provide a convenient way for users to cancel or close a form without clicking on a specific button.

Submit
52. Which is not a common control event?

Explanation

The correct answer is b.) SingleClick. This is not a common control event because typically, when interacting with a control, the common events are Click, DoubleClick, MouseMove, and MouseDown. SingleClick is not a recognized event in most programming languages or frameworks.

Submit
53. Which is not a valid value for the ListBox SectionMode Property?

Explanation

The ListBox SectionMode Property allows the user to select multiple items in the list. The options for this property include None, One, MultiSimple, and MultiExtended. All of these values are valid for the ListBox SectionMode Property, so the correct answer is e.) All of the above.

Submit
54. Which operator is evaluated first?

Explanation

The NOT operator is evaluated first because it has the highest precedence among the given operators. The NOT operator is a unary operator that negates the value of the operand. It is evaluated before any binary operators like AND, XOR, and OR. Therefore, in an expression, the NOT operator will be evaluated first before any other operators.

Submit
55. What will the function Val ($165.30) return?

Explanation

The function Val ($165.30) will return 0.

Submit
56. Which task is accomplished in the Code editor?

Explanation

In the Code editor, the task of adding event procedures to the form is accomplished. This means that the Code editor allows the user to write and edit code that specifies what actions should be taken when certain events occur in the form. This can include actions such as button clicks, mouse movements, or keyboard inputs. By adding event procedures in the Code editor, the user can customize the behavior and functionality of the form according to their requirements.

Submit
57. Which is true about the prompt argument?                                

Explanation

The correct answer is e.) All of the above. This means that all of the statements a.), b.), and c.) are true about the prompt argument. The prompt argument can be made of multiple values concatenated into one string, it can include the vbCrLf constant, and it can include the ampersand symbol to concatenate strings.

Submit
58. Which is not a feature of a GUI that makes learning a program easy for users?

Explanation

Detailed key strokes and commands are not a feature of a GUI that makes learning a program easy for users. GUIs (Graphical User Interfaces) are designed to provide visual representations of functions and operations, allowing users to interact with a program through icons, menus, and graphical elements. Online help, WYSIWYG formatting, dialog boxes, and icons are all features of a GUI that contribute to making learning a program easier for users by providing intuitive and visual cues. However, detailed key strokes and commands are typically associated with command-line interfaces, which require users to memorize specific commands and their corresponding keystrokes.

Submit
59. A GUI:

Explanation

A GUI, which stands for Graphical User Interface, uses buttons, menus, and icons to provide an interactive and user-friendly experience. It should be easy for a user to manipulate, meaning that the interface should be intuitive and straightforward to navigate. Therefore, the correct answer is "Both a and b" because a GUI incorporates buttons, menus, and icons while also being designed for easy user manipulation.

Submit
60. The Items property of a ComboBox:

Explanation

The Items property of a ComboBox is a collection of items, just like the Items property of a ListBox. Additionally, the Items property of a ComboBox also contains methods and properties. Therefore, the correct answer is e.) All of the above.

Submit
61. The analysis phase of software development involves:

Explanation

The analysis phase of software development involves collecting the requirements about what the program will accomplish. This phase is focused on understanding the needs and goals of the software, gathering information from stakeholders, and defining the functionalities and features that the software should have. It is an important step in the development process as it lays the foundation for the subsequent phases of designing, coding, and testing the software. This phase helps ensure that the final product meets the expectations and requirements of the users.

Submit
62. What is the method used to activate the color dialog box?

Explanation

The correct method used to activate the color dialog box is "ShowDialog". This method is commonly used in programming languages to display a dialog box to the user. By calling the "ShowDialog" method, the color dialog box will be shown on the screen, allowing the user to select a color.

Submit
63. Which function displays a pop-up window?

Explanation

The correct answer is d.) Both a and b. Both MsgBox and InputBox functions can display a pop-up window. MsgBox function is used to display a message in a dialog box while InputBox function is used to prompt the user to enter input in a dialog box.

Submit
64. The name of a constant:

Explanation

A constant in programming is a value that does not change during the execution of a program. The name of a constant does not have to begin with a letter and can be either upper or lower case. This means that it can start with a letter or any other character, and it can be written in either uppercase or lowercase letters. The important thing is that the name is consistent throughout the program and does not change.

Submit
65. Why are standard dialog boxes used?

Explanation

Standard dialog boxes are used because they are easy to create and provide functionality that is familiar to users. This means that developers can quickly create dialog boxes without much effort, and users will already be familiar with how to interact with them. This improves the user experience and makes it easier for developers to create user-friendly interfaces.

Submit
66. How are dialog boxes implemented in a program?

Explanation

Dialog boxes in a program can be implemented in two ways. Firstly, they can be generated programmatically, meaning that the code of the program creates the dialog box dynamically during runtime. Secondly, a dialog control can be placed in the component tray, which allows the user to drag and drop the dialog box onto the form. Therefore, the correct answer is d) Both a and b.

Submit
67. Which is a valid statement for declaring a variable?

Explanation

All of the given options (a, b, c, d) are valid statements for declaring a variable. However, option d.) "Dim myForm As Integer" is the correct answer as it follows the standard syntax for declaring a variable in many programming languages, including Visual Basic. The "Dim" keyword is used to declare a variable, followed by the variable name (in this case, "myForm") and the data type (in this case, "Integer").

Submit
68. Which symbol creates an access key in the text of a menu item?

Explanation

The symbol "&" creates an access key in the text of a menu item. Access keys are keyboard shortcuts that allow users to quickly navigate to a specific menu item without using a mouse. By assigning an access key to a menu item, users can press a combination of keys (usually Alt key + access key) to activate that menu item. This improves accessibility and efficiency for users who prefer to navigate through menus using keyboard shortcuts.

Submit
69. VB.Net identifiers:

Explanation

In VB.Net, identifiers are case sensitive, which means that uppercase and lowercase letters are treated as distinct characters. Additionally, identifiers can begin with an underscore. However, they cannot begin with a number. Therefore, the correct answer is b.) can begin with an underscore.

Submit
70. What is the name of the control for putting menus on a form?

Explanation

The correct answer is "d.) MainMenu". The MainMenu control is used to put menus on a form in a graphical user interface. It provides a way for users to access different functions and options in an application. This control allows developers to create and customize menus with various items and submenus, making it easier for users to navigate and interact with the application's features.

Submit
View My Results

Quiz Review Timeline (Updated): Mar 19, 2023 +

Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.

  • Current Version
  • Mar 19, 2023
    Quiz Edited by
    ProProfs Editorial Team
  • Aug 14, 2013
    Quiz Created by
    Aniketve
Cancel
  • All
    All (70)
  • Unanswered
    Unanswered ()
  • Answered
    Answered ()
What does IDE stand...
Which are the standard prefixes for the Button and Combo box controls...
Visual Studio .NET provides which feature:
The Date data type does not hold which type of information.
 Which is not a main component of the Visual Studio IDE? 
The Tick event is found only in which object?
The standard prefix for a dialog control is:
Which language is not a true object-oriented programming language?
With A = False and B = True, which statement evaluates as False?
Which menu object property places a check mark in the display of the...
Which statement about objects is true?
Which property determines whether a control is displayed to the user?
Which is not a standard dialog box?
Which is a numeric data type?
Which method of a ListBox will remove just one item at a time?
Which is not an integer data type?
Which is true about the name and text property of a control?
Setting the SelectedIndex property of a ListBox to -1...
With A = False and B = True, which statement evaluates as True?
The standard prefix for a menu item is:
Which is not a property of the Common control class?
Which TextBox method does not use the clipboard?
The Button control can be activated:
The Activated event is found only in which object?
The Rnd statement will generate a(n):
Which phase of project development typically costs the most?
Which two controls combined to form the ComboBox control?
The .Net class library:
Which is an example of Visual Basic Objects?
An object is composed...
Which TextBox property should always be changed first?
Which type of project can a developer choose in the New Project dialog...
For which task does the IDE provide multiple ways to accomplish the...
Which sequence of char data types is listed from lowest to highest?
Which menu item is not typically found in the File Menu?
Which function will return the monthly payments of a loan?
Which are the standard prefixes for the text box and label controls...
Which function returns the numbers represented in the string "$56.7"?
In order to process a number typed in a TextBox the programmer must:
The right side of an assignment statement will hold:
Which is not true about forms and controls in Visual Basic?
Which value for the ComboBox DropDownStyle property allows a user to...
A click event procedure stud for the label control can be created by:
In event-driven programming an event is generated...
The name of the class used to programmatically create a color dialog...
In order to process a number typed in a TextBox the programmer must:
Which does the solution explorer not display?
The Boolean data type:
The proper operator precedence, from first to last, is:
The left side of an assignment statement will hold:
The CancelButton property belongs to which object?
Which is not a common control event?
Which is not a valid value for the ListBox SectionMode Property?
Which operator is evaluated first?
What will the function Val ($165.30) return?
Which task is accomplished in the Code editor?
Which is true about the prompt...
Which is not a feature of a GUI that makes learning a program easy for...
A GUI:
The Items property of a ComboBox:
The analysis phase of software development involves:
What is the method used to activate the color dialog box?
Which function displays a pop-up window?
The name of a constant:
Why are standard dialog boxes used?
How are dialog boxes implemented in a program?
Which is a valid statement for declaring a variable?
Which symbol creates an access key in the text of a menu item?
VB.Net identifiers:
What is the name of the control for putting menus on a form?
Alert!

Advertisement