Вы находитесь на странице: 1из 3

1. The Solution Explorer window allows you to browse solution files.

2. A form's Text property specifies the text displayed in the Form's title bar.
3. The toolbox contains the controls that you can add to a Form.
4. Property TextAlign specifies how text is aligned within a Label's boundaries.
5. If there are errors in an app, they appear in a window known as the Immediate Window
6. All variables must be declared before they can used in a Visual Basic program.
7. A program control refer(s) to the task of ordering an app's statement correctly.
8. The number that refers to a particular element of an array is called subscript.
9. An array's length is one more than the array's last index.
10. The expression ....................creates an integer array of two rows and five columns.
12. The smallest data item a computer can process is called a bits.
13. A (n) OpenFileDialog control allows the user to select a file to open.
14. Digits, letters and special symbols are referred to as characters.
15. Methods from class StreamReader can be used to read data from a file.
16. A (n) procedure is a unit of code enclosed either between the Sub and End Sub statements.
17. The WriteAllText method writes text to a file.
18 Structured exception handling is a mechanism for handling both hardware and software
exceptions.
19. Almost any problem can be described in terms of declarations, input, processing and output.
20. The developer is the person that develops the specifications, designs the program, creates the
algorithm, write the code and tests the program.
21. Toolbox contains the controls used to build the user interface and located on the left side of
the screen.
22. Private, Sub and End are examples of keywords or words in Visual Basic that have a special
function and cannot be used as variables or control names.
23 Compiling is the process of converting a developer forms and code into a standalone program.
24 Binary storage is storage containers come in different sizes and are designed for storing
different types of items.
25 Data type is a set of specific methods for storing data in a variable.
26. Run-time errors can be avoided using the correct data types
27 Debugging is the process of locating and fixing or bypassing bugs (errors) in computer
program code or the engineering of a hardware device.
28. Short Integer or short is a data type that stores integers from -32768 to 32767.
29. A field is a group of characters or bytes that conveys meaning. For example, it consisting of
decimal digits that represent a person's age.
30. The logical AND operator is used to ensure that two conditions are both true.

1. Translator programs called assembler convert assembly-language code to machine language


code quickly.
2. Translator programs called compiler convert high-level language code into machine language
code.
3. The language, known as the Unified Modeling Language (UML) is now the most widely used
graphical scheme for modeling object-oriented systems.
4. The Window menu contains commands for hiding, opening, closing and displaying IDE
windows.
5. The technique of Visual Programming allows you to create GUIs without writing any code.
8. A Button's Text property sets the text on the face of the Button.
9. Assignment operator and the equality operator both use the = symbol.
10. Pseudocode is an informal language that helps you develop algorithms. It's similar to
everyday English but not an actual computer programming language.
11. The if-Then statement either performs an action if a condition is true, or skips the action if
the condition is false.
12. A UML activity diagram models the workflow (also called the activity) of a software system.
13. A condition containing the logical exclusive OR (Xor) operator is true if and only if one of its
operands results in a true value and the other results in a false value.
14. A unary operator requires exactly one operand.
15. The .Do...Loop While statement body repeats when the loop-continuation condition is true
after the body executes.
16. A variable's lifetime is the period during which the variable exists in memory.
17. Variables with method or block scope are called local variables. They cannot be referenced
outside the method or block in which they're declared.
18. A method is invoked by a method call.
19. Use keyword Enum to define groups of related constants.
20. The return statement in a Function sends a value back to the calling method.
22. The statement ReDim enables you to dynamically change an array's size.
23. All arrays are objects of and have the methods and properties of class .
24. Every array "knows" its own length via its nameOfArray.length
25. Typically, foreach statements are used to iterate over each element in a two dimensional
array.
26. Methods from the StreamWriter class can be used to write data to a file.
29. Data maintained in files is often called transient data.
30. A collection of programs designed to create and manage databases is called database
management system (DBMS).

1. Computers process data under the control of sequences of instructions called computer
programs.
2. A database is a collection of data that's organized for easy access and manipulation.
3. The Unicode character set contains characters for many of the world's languages.
7. A (n) variable is a name that represents a numerical quantity, a string, or some other basic data
item.
8. The toolbox that can combines the capabilities of a text box and a list box is called combobox.
9. A (n) event procedure is an independent group of commands that is executed whenever an
event occurs during program execution.
10. A (n) dialog box is used to exchange information between the program and the user.
11. Dividing by zero or attempting to take the square root of a negative number are the examples
of run time errors.
12. The Visual basic debugger contains features that can assist programmers in location the
source of the errors.
13 User-induced errors are the result of mistakes made by the user when program is executing,
for example, entering number that are out of range.
14. A (n) error handler is a series of Visual Basic statements that is intended to recognize an
error when it occurs and then provide appropriate corrective action.
15. The watch values are the current values of certain variables or expressions that are displayed
at breakpoint.
16 Form Modules contain declarations, event procedures and various support information their
respective forms and control.
17. A (n) procedure is a self-contained group of Visual Basic commands that can be accessed
from a remote location within a Visual Basic program.
18. Scope refers to the portion of a program within which a procedure definition is recognized.
19. Visual Basic supports three types of procedures; Sub procedure (19), function procedure (20)
and Property procedures (21).
22. The individual elements within an array are called subscript variables
23. A (n) dynamic array is an array whose size can be changed at various place within a program
24. Function LowerBound (24) in array returns the subscripts lower limit of the array argument
while UpperBound (25) returns the subscripts upper limit of the array argument.
26. Visual Basic recognizes three different types of data files; Sequential files (26), Random
access files (27) and Binary files (28).
29. Function EOF () checks for end-of-file condition within a specified file.
30. Function LOF returns the length (in bytes) of the specified file.

Вам также может понравиться