Data Tables Flashcards

(18 cards)

1
Q

AND (∧) definition

A

a logical operator which returns TRUE (or 1) if and only if all inputs are TRUE (or 1)

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

ASCII definition

A

a character set used to represent alphanumeric characters or symbols as a set of 8 bits

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

binary definition

A

a number system that only uses ones and zeros to represent numbers (a base 2 system)

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

bitwise manipulation definition

A

operations performed on a set of bits

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

boolean definition

A

a data type that can only store one of two possible values (1 or 0, TRUE or FALSE etc.)

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

character definition

A

a data type for storing a letter, number or special character

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

denary definition

A

a number system that only uses 10 characters (0 to 9) to represent numbers ( a base 10 system)

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

floating point arithmetic definition

A

performing arithmetic operations on floating point numbers in binary

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

hexadecimal definition

A

a number system that only uses 16 characters (0 to 9 and A to F) to represent numbers ( a base 16 system)

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

integer definition

A

a data type for storing whole number values (positive or negative) with no decimal parts

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

OR (v) definition

A

a logical operator which returns TRUE (or 1) if and only if any one of the inputs are TRUE (or 1)

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

primitive data type definition

A

a basic built-in data type provided by a programming language

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

real/floating point definition

A

a data type for storing numbers with decimal or fractional parts

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

shifts definition

A

a bitwise manipulation where a set of bits are all moved by one place in a given direction, and the end bit may be taken as a carry or appended to the other end depending on the shift method

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

string definition

A

a data type for storing a sequence of alphanumeric characters or symbols, typically within quotation marks

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

two’s complement definition

A

a method of storing negative numbers in binary

it involves flipping all the bits of the binary representation of the positive number and then adding one

17
Q

UNICODE definition

A

a character set that is a superset of ASCII

it is used to represent alphanumeric characters or symbols as an integer code point which is equal to that character’s ASCII code

18
Q

XOR definition

A

a logical operator which returns TRUE (or 1) if and only if exactly 1 of the inputs are TRUE (or 1)