Programming - Implementation Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

Implementation (pre-defined functions):

Character to ASCII Code

A

Asc(“A”)
Returns 65

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

Implementation (pre-defined functions):

ASCII to Character Code

A

Chr(65)
Returns A

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

Implementation (pre-defined functions):

Decimal to Integer Code

A

CInt(3.14)
Returns 3

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

Implementation (pre-defined functions):

Find the Remainder Code

A

13 mod 2
Returns 1

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

Implementation (sub-string functions):

Left Code

A

Microsoft.VisualBasic.Left(VARIABLE, CHAR NUM)

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

Implementation (sub-string functions):

Right Code

A

Microsoft.VisualBasic.Right(VARIABLE, CHAR NUM)

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

Implementation (sub-string functions):

Mid Code

A

Microsoft.VisualBasic.Mid(VARIABLE, CHAR NUM)

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

Implementation (sub-string functions):

Uppercase Code

A

UCase(word)

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