Visual Basic Flashcards

1
Q

primary window in Visual Basic where you visually layout and design the user interface
of your application. It’s where you add controls like buttons, text boxes, labels, and other elements to create the
visual appearance of your application

A

Form Designer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

pre-built controls that you can drag and drop onto your forms to
create the user interface. These controls provide the interactive elements of your application, such as buttons
for user actions, text boxes for input, and labels for displaying information

A

Toolbox

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

where you modify the characteristics of a selected control. It allows you to change
properties like the control’s size, color, text, font, and other attributes that determine how the control looks and
behaves.

A

Properties Window

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

the Visual Basic project file. It stores information about your project, including its settings,
references, and the files that make up your application. This file is essential for managing and building your
Visual Basic project.

A

.vbproj

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

window in Visual Basic that organizes all the files and folders in your project. It allows you to navigate through your project files, add new files, and manage the structure of your application.

A

Solution Explorer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

The default event for a Button control in Visual Basic is the ________ . This event is triggered when the user
clicks on the button. You can write code in the Click event handler to perform actions when the button is clicked,

A

Click Event

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

where you write the Visual Basic code that defines the behavior of your application. This is
where you write the logic, calculations, and instructions that control how your application responds to user
interactions and events.

A

Code WIndow

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

the primary programming language used in the Visual Basic environment. It’s a powerful and
versatile language that allows you to create a wide range of applications, from simple desktop tools to more
complex business applications.

A

Visual Basic

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

the standard shortcut for running a Visual Basic program.

A

F5 key

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

common input control in Visual Basic. It allows users to enter text, which can then be
processed or used by your application.

A

TextBox control

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

The _________ of a Button control determines the text that is displayed on the button. You can change this
property to customize the text that appears on the button.

A

Text property

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

function in Visual Basic is used to calculate the square root of a number. It takes a numeric value as
input and returns its square root

A

Sqrt ()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

The Len() function in Visual Basic returns the length of a string, which is the number of characters in the string

A

Len()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

function in Visual Basic converts a string to uppercase. It takes a string as input and returns a new
string with all the characters converted to uppercase.

A

UCase()

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

You can access the __________ by pressing the shortcut key Ctrl+Alt+L

A

Solution Explorer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

The ______________ is where you write code. The Toolbox contains tools like buttons, labels, and textboxes that you
can add to your form.

A

Code Editor

16
Q

displays build errors and other messages during program execution.

A

Output Window

17
Q

in the Visual Basic IDE provides access to commands like File, Edit, and View.

18
Q

What operator is used to calculate the square of the number

19
Q

are important in Visual Basic programming because they provide the building blocks for creating user
interfaces, allowing developers to interact with users and gather input