Data Types Flashcards

Identify Data Types (33 cards)

1
Q

analog data

A

continuous data

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

American Standard Code for Information Interchange (ASCII):

A

A text-encoding standard that represents English letters, numbers, and symbols using numeric codes.

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

bandwidth

A

The maximum speed that data can be transmitted across a network.

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

binary

A

When data is represented with one of two values, a 1 or a 0

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

Boolean expression:

A

A logical true or false statement that uses the operators and, or, and not.

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

character

A

a single letter, number or special character used for writing text.

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

character set

A

What characters a computer is able to use.

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

control structure

A

A construct that instructs the order in which tasks run in a program. (Example: loops, conditionals, if/else)

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

data

A

Raw facts and figures that haven’t been synthesized into meaningful information.

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

data compression

A

Reducing data size to improve storage or transmission efficiency.

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

data types

A

categories of data that define what can be stored and how it can be used.

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

declaration

A

When you introduce a variable or function by name (and often type) but don’t provide its value or full implementation

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

digital data

A

Data represented as binary values of 1s and 0s.

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

Huffman encoding

A

An encoding strategy where frequently occurring characters are assigned less bits and infrequently occurring characters are given more bits.

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

floating point

A

Representing a real number using a mantissa (significand) multiplied by a base raised to an exponent.

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

information

A

data that have been processed or organized in a meaningful way to be useful

16
Q

integer

A

All numbers on the number line that can be represented without using a fractional part.

17
Q

keyword encoding

A

compression strategy where frequently occurring keywords in that language are encoded to have less bits.

18
Q

lossless

A

When a compression technique doesn’t lose any information.

19
Q

lossy

A

When compression results in loss of data that can’t be recovered.

20
Q

pulse-code modulation (PCM)

A

a method used to digitally represent analog signals

20
Q

overflow

A

When a value has more bits than its spot in memory can hold.

20
Q

radix point

A

the decimal point in a number system that indicates the separation between integer and fractional parts

21
Q

numeric

A

Any data that’s represented by a number.

22
scientific notation
Representing very large or very small numbers with powers of 10
22
reclocking
When digital signals are re-synchronized and correct timing is restored.
23
real
Any number that includes a fractional part. Also called floating point numbers. (Different from mathematical reals)
24
string:
Any collection of characters that’s treated as a single piece of data.
24
signed-magnitude representation:
Using one bit for the sign and the rest for the absolute value of a number.
24
run-length encoding
compressing by replacing repeated characters with one character and a count.
25
strong typing:
When values are assigned a specific type which can't be changed without explicit conversions. Reduces errors.
26
ten's complement:
a way of representing negative numbers with base ten arithmetic
27
Unicode:
A character set that includes characters from all languages to allow for consistent programming across systems and languages