Programming Flashcards

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

Integer?

A

A Whole number that can be positive or negative, including 0.

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

Real/Float?

A

A positive or negative number which can be have a fractional part.

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

Boolean?

A

A value which is either true or false.

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

Character?

A

A single number, letter or symbol.

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

String?

A

A collection of characters.

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

Date / Time?

A

A way of storing a point in time, different methods are used.

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

Records?

A

A collections of field.

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

Pointer / Reference?

A

A way of storing memory addresses.

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

Arrays?

A

An indexed set of elements, which each has the same data type.

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

Variable Declaration?

A

Creating a variable for the first time, which will need a name and sometimes a data type.

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

Constant Declaration

A

Creating a Variable but the value of a constant does not change while the program is running.

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

Assignment?

A

Giving a constant or variable to a value

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

Iteration?

A

Repeating a set of instruction, which can be definite or indefinite

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

Selection?

A

Comparing values, then selecting an action based on those values

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

Subroutine

A

A named block of code that contains a set of instructions that can be reused if the name given is called.

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

What does the Length Function do?

A

Returns the number of characters in a specific string.

17
Q

What does the Position Function do?

A

Returns the position of a specified character within a string.

18
Q

Substring

A

Returns a portion of a String when given a starting position and a length.

19
Q

What does concatenation do?

A

Joins two or more strings together, to form a new string.

20
Q

What does “Character to Character” mean?

A

Returns the character code which is corresponding to a specified character.

21
Q

What does “String to Integer” do?

A

Converts a String into an Integer.

22
Q

What does “String to float” do?

A

Converts the String into a Float.

23
Q

What does “Integer to string” do?

A

Converts an Integer into a String.

24
Q

What does a “Float to String” do?

A

Converts a Float to a String.

25
Q

What does “Date/Time to string” do?

A

Converts Date/Time data type to a String

26
Q

What does “String to Date/Time” do?

A

Converts the String into a Date/Time data type.