second lecture Flashcards

1
Q

is an event-driven programming language and Integrated Development Environment (IDE) developed by Microsoft.

A

Visual Basic (VB)

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

It is designed to be easy to learn and use, with a focus on building Windows applications with a graphical user interface (GUI).

A

Visual Basic (VB)

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

4 core descriptions

A

Easy to learn

Event-Driven

Easy to use

Focused on Windows Applications

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

Visual Basic is commonly used for developing Windows applications, including

A

business software, automation tools, and educational programs.

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

Visual Basic is also used in ___ due to its user-friendly nature.

A

prototyping and quick application development

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

Visual Basic was first released
in ___.

A

1991

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

Beginnings: It was based on the ___ and was designed to ___ by providing a graphical interface for designing applications.

A

BASIC programming language; simplify the process of software development

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

Evolution: Over the years, Visual Basic has undergone several iterations, with significant updates in ___, which integrates with the ___, enhancing its capabilities and performance.

A

VB.NET, .NET framework

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

Containers for storing data values. In Visual Basic, ___ must be declared with ___.

A

variables; a specific data type

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

Most used Variables:

A

Count
Index
Sum
Total
Name
Value
isActive
result
message
temp

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

Include Integer, String, Boolean, Double, etc. They define the kind of data a variable can hold.

A

DATA TYPES

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

Most used Data Types:

A

Integer
Long
Single
Double
Decimal
String
Boolean
Date
Char
Object

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

OPERATORS

A

Arithmetic Operators
Comparison Operators
Logical Operators

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

Used for mathematical
calculations (e.g., +, -, *, /)

A

Arithmetic Operators:

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

Used to compare values (e.g., =, <>, <, >)

A

Comparison Operators:

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

Used to combine conditions (e.g., And, Or, Not)

A

Logical Operators: