Components Of VB Environment Flashcards

0
Q

These are tools that serve as shortcuts to the different menu items.

A

Standard toolbar

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

It has menus that “drop down” to reveal a list of commands.

A

Menu bar

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

It contains controls that you use to add objects to a user from interface.

A

Toolbox

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

This is the main object used to creat the user interface for your application and it has a standard grid where you place the objects and elements of your programs’ user interface.

A

Form windows

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

It displays several forms.

A

Project explorer window

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

It displays a list of all the properties available to the object that has the focus.

A

Properties window

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

It is where you add codes to tie the controls together and perform calculations and data manipulation when needed.

A

Code window

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

They define the kind of value the variable holds and the memory space that is reserved as you create a variable.

A

Data types

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

Logical values.

A

Boolean

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

Whole numbers

A

Byte

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

Numbers with up to 15 digits left of the decimal and 4 digits right of the decimal.

A

Currency

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

Date and time information.

A

Date

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

Decimal numbers

A

Double

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

Whole numbers.

A

Integer or long

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

Pictures and any object reference.

A

Object

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

Decimal numbers.

A

Single

16
Q

Text information

A

String

17
Q

It is the standard division you are familiar with, that is, you divide one number with the other number and the qoutient produces a decimal number.

A

Floating-point division

18
Q

It is when you divide one number with the other number and the qoutient only produces the integer part or thewhole number, discarding the decimal part of the result.

A

Integer division

19
Q

It is when the result is the remaining integers after dividing the two given numbers.

A

Modulus or remainder division

20
Q

It is raising a valie by a power, which is multiplying the value ot the base by itself a certain number of times as indicated by the power or the exponent.

A

Exponentiation

21
Q

Visual basic provides arithmetic opertations that are useful in processing numeric data to be used in program code.

A

Arithmetic Operators