1.
_________ are objects on a form
Correct Answer
C. Controls
Explanation
Controls are objects on a form. In a graphical user interface, controls are the visual elements that allow users to interact with the software. They include buttons, text boxes, checkboxes, drop-down menus, and more. Controls are used to display information, accept user input, and trigger actions within the application. By selecting the correct answer, it is implied that controls are the objects on a form that are being referred to in this context.
2.
Displays a message to a user during a successful run time.
Correct Answer
D. Message Boxes
Explanation
Message Boxes are a type of user interface element that display a message to the user during a successful runtime. They are commonly used to provide information, notifications, or alerts to the user. Message Boxes are typically displayed as pop-up windows with a message and an OK button for the user to acknowledge the message. They are a useful way to communicate important information to the user and ensure they are aware of any relevant updates or actions they need to take.
3.
Location where the interface of a form is produced.
Correct Answer
A. Design Window
Explanation
The design window is where the interface of a form is produced. This is where the visual elements of the form, such as buttons, text boxes, and labels, are created and arranged. The design window allows the user to drag and drop these elements onto the form and customize their properties. It provides a visual representation of how the form will look when it is run. The code window, on the other hand, is where the programming logic for the form is written. The directory of the project and project properties are not directly related to the production of the form's interface.
4.
Property that has a true or false setting that if set to false the control will not be seen.
Correct Answer
D. Visible
Explanation
The "Visible" property determines whether a control is visible or not. If the value of this property is set to false, the control will not be seen on the screen. This property is commonly used to hide or show certain controls based on certain conditions or user interactions.
5.
The _________ is the text associated with a control.
Correct Answer
B. Text
Explanation
The text associated with a control is referred to as "Text". This term is commonly used in programming to describe the content or label that is displayed on a control, such as a button or a label. It helps to identify and provide information about the purpose or function of the control to the user.
6.
All of the following are shortcuts in the VB Environment except....
Correct Answer
B. F3
Explanation
The answer is F3 because F3 is not a shortcut in the VB Environment. Shortcuts such as F4, F7, and F5 are commonly used in the VB Environment for various functions, but F3 does not have a specific function or shortcut associated with it.
7.
_______________ are written to explain code actions and procedures and appear in green.
Correct Answer
C. Comments
Explanation
Comments are written to explain code actions and procedures and appear in green. They are used to provide additional information about the code, such as its purpose, functionality, or any important details that may not be immediately obvious from the code itself. Comments are not executed by the computer and are purely for the benefit of the human readers of the code. They can help improve code readability and make it easier for other developers to understand and maintain the code in the future.
8.
___________ are directions given to computers.
Correct Answer
A. Programs
Explanation
Programs are a set of instructions or commands that are given to computers to perform specific tasks. These instructions can be written in programming languages and are executed by the computer's processor. Programs can range from simple tasks like calculating numbers to complex operations like running an operating system or software applications. Therefore, programs are the correct answer as they are the directions given to computers to carry out desired actions.
9.
Where all files/forms/images are stored in a project.
Correct Answer
A. Solution Explorer
Explanation
The Solution Explorer is where all files, forms, and images are stored in a project. It provides a hierarchical view of the project's structure, allowing easy navigation and management of the project's files and resources. This makes it convenient for developers to locate and organize the different components of their project in one central location.
10.
This property determines the sequence of tab order from control to control.
Correct Answer
C. Tab Index
Explanation
Tab Index is the correct answer because it is a property that determines the sequence of tab order from control to control. This property is used in user interfaces to specify the order in which controls receive focus when the user presses the tab key. By setting the Tab Index property, developers can control the navigation flow and ensure a logical and intuitive user experience.
11.
A project during run time.
Correct Answer
D. Executable file
Explanation
The given options represent different forms or components of a project. The executable file is the final output of the project that can be run on a computer or device. It is the file that contains the compiled code and resources necessary for the project to be executed. Therefore, the executable file is the correct answer as it represents the project during runtime.
12.
________________ multiple lines of code.
Correct Answer
B. Procedures
Explanation
The given options "Events," "Procedures," "Actions," and "Methods" are all commonly used terms in programming. However, when referring to multiple lines of code, the most appropriate term is "Procedures." Procedures are a set of instructions or code blocks that can be called and executed multiple times within a program. They are used to organize and group related lines of code together, making the code more modular and easier to understand and maintain. Therefore, "Procedures" is the correct answer in this context.
13.
______________________ are events that include procedures.
Correct Answer
B. Subroutines
Explanation
Subroutines are events that include procedures. A subroutine is a sequence of instructions that performs a specific task and can be called from different parts of a program. It is a type of event that contains a set of procedures or actions to be executed. Subroutines are commonly used in programming to break down complex tasks into smaller, more manageable parts, making the code more organized and easier to understand and maintain.
14.
This was the first VB project you made this semester.
Correct Answer
D. Web Browser
Explanation
The given correct answer is "Web Browser" because it is the only option that is related to creating a VB project. "MyCalculator", "About You", and "MyLucky7" do not indicate any connection to VB projects, whereas a "Web Browser" can be a common project for a semester.
15.
_______________ are used for user input, multi-line editing and display information.
Correct Answer
A. TextBoxes
Explanation
TextBoxes are used for user input, multi-line editing, and displaying information. They provide a way for users to enter text or data into an application and can be used for various purposes such as filling out forms, entering passwords, or writing messages. TextBoxes also allow for the editing and manipulation of text, including features like copy, paste, and undo. Additionally, TextBoxes can display information or text that is dynamically generated or retrieved from a database, making them versatile components for user interaction and data display.
16.
A snapshot of the VB IDE environment
Correct Answer
D. Interface
Explanation
The term "Interface" refers to the graphical user interface (GUI) of the VB IDE environment. It includes the various panels and windows that are displayed within the IDE, allowing users to interact with the programming environment. The interface provides a visual representation of the code, allowing developers to easily navigate, edit, and debug their programs. It also provides access to various tools and features that aid in the development process, such as the code editor, project explorer, properties window, and debugging tools.
17.
Control used for titles/captions of information.
Correct Answer
B. Label
Explanation
A label control is used for titles/captions of information. It is commonly used to display text that provides a description or identifies another control on a form. Unlike a textbox, checkbox, or radio button, a label does not allow user input. It is primarily used for displaying static text and does not have any associated functionality or interaction.
18.
The ______________ property shows width and height measurements.
Correct Answer
A. Size
Explanation
The "size" property is used to display the width and height measurements of an element. It allows developers to specify the dimensions of an element, such as a box or an image, on a web page. By setting the size property, the width and height of the element can be adjusted to achieve the desired layout and appearance.
19.
Click, text changed, load are examples of _____________.
Correct Answer
C. Events
Explanation
The given examples, "Click, text changed, load," are all related to specific occurrences or happenings. These occurrences can be considered as events because they are actions that are triggered by some external factors or interactions. Therefore, the correct answer is "Events."
20.
A pre-coded form that appears while a computer program is loading.
Correct Answer
C. Splashscreen
Explanation
A splash screen is a pre-coded form that appears while a computer program is loading. It is usually used to display the program's logo or branding and provides visual feedback to the user that the program is loading. It helps to improve the user experience by reducing the perception of waiting time and providing a professional and polished appearance to the program.