TLE M 9-16

0.0(0)
studied byStudied by 3 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/26

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

27 Terms

1
New cards

Integer

It can either be a positive or a negative number. Often referred to as “natural numbers”

2
New cards

String

It can be a character or group of characters

3
New cards

Currency

Used for a variable that can hold monetary values

4
New cards

Long integer

Same as integer data type. Difference is that long integer can hold very large natural numbers

5
New cards

Boolean

It's value can either be true or false

6
New cards

Single precision

AKA single data type that can hold decimal numbers

7
New cards

Double precision

AKA double same as single butt he difference is that it gives more accurate or precise results than the single precision

8
New cards

Date

A numeric value that can hold date and time values

9
New cards

Variant

Can hold any type of data. Integer, string, or any data type depending on how you use them in your program

10
New cards

Dim statement

We use this statement to declare variables. Dim stands for dimension

11
New cards

Operators

Symbol or word that does mathematical and data manipulation

12
New cards

Mathematical operators

Used to calculate and assign expression results to variables

13
New cards

Concatenation

Joins one string to the end of another string. We can also use (+) sign in concentrating strings, but we use & as our standard operator

14
New cards

Comparison operators

Determines how data compares

15
New cards

Logical operators

Performed only on conditional statements. These operators can be used to check the truthfulness or falsity of an expression or group of statements

16
New cards

And

A logical operator that requires all conditions or statements to be true

17
New cards

Or

A logical operator that requires atleast one of the conditions to be true

18
New cards

Not

A logical operator that produces the opposite of the true or false result

19
New cards

If then else statements

It performs one or two possible code actions, depending on the result of the test given

20
New cards

If then else if statements

Also known as “Nested if then else” this structure allows you to implement multiple conditions

21
New cards

( )

Values enclosed in a parenthesis are evaluated first (1st)

22
New cards

^

Exponentiation (2)

23
New cards

-

Negation (3)

24
New cards

*and/

Multiplication and division (4)

25
New cards

/

Division is fifth

26
New cards

Mod

Remainder (6)

27
New cards

+And-

Addition and subtraction