Common Facilities Flashcards

1
Q

What is DIV?

A

Integer division. Only rounds down. Doesn’t give the remainder.

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

What is MOD?

A

Finds and returns the remainder from an integer division.

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

What is meant by operator precedence?

A

The order in which operations are carried out.

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

What is the order of boolean operator precedence?

A

NOT
AND
OR

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

What is POS()?

A

Pos(SubString, MainString)

Pos will find the location of a substring in a main string.

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

What is Length()?

A

Length(yourString)

This will return the length of yourString.

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

What is LeftStr()?

A

LeftStr(yourString, Count)

LeftStr will get the number of characters in yourString, given by Count, starting on the left.

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

What is RightStr()?

A

RightStr(yourString, Count)

RightStr will get the number of characters in yourString, given by Count, starting on the right.

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

What is Copy()?

A

Copy(yourString, Start, Count)

Copy will get the number of characters in yourString given by Count, starting at the character given by Start.

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

What is Concat()?

A
Concat(String1,String2, etc )
This concatenates (puts together) two or more strings.

You can also use + in some languages.

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