Data Types Flashcards

1
Q

Array

A

Data structure used to store one or more rows of values that share the same data type

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

ASCII

A

Simple character set that can represent 128 different characters

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

Binary

A

Number system in base 2 that computers use to represent data and instructions

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

Boolean

A

Data type that can only store one of two values

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

Character

A

Data type that stores a single symbol

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

Data Type

A

Property of a particular piece of data that specifies how the data should be treated

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

Denary

A

Number system in base 10

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

Floating Point

A

Data type that stores a decimal number

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

Hash Table

A

Data structure that maps values to keys, where the key for a value is generated by applying an algorithm to that value

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

Hexadecimal

A

Number system in base 16 where each digit represents four binary digits

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

Integer

A

Data type that stores a whole number

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

Linked List

A

List that uses pointers to refer to the location of other elements of the list, allowing it to be reordered without creating a new list

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

List

A

Collection of data elements of the same data type

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

Queue

A

Data structure where elements are removed in the order in which they are added

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

Record

A

Data structure that permits a combination of different data types

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

Sign and Magnitude Negative Binary

A

Signed binary that has a 0 added to the front if the value if positive, or a 1 added to the front if the value is negative

17
Q

Signed Binary

A

Binary values that can store both positive and negative values

18
Q

Stack

A

Data structure where only the most recently added element can be removed

19
Q

String

A

Data type that can store a series of characters

20
Q

Tuple

A

An ordered list of elements, used to store the data for each record in a database

21
Q

Two’s Complement Negative Binary

A

Signed binary that converts between negative and positive values by flipping all bits and adding 1

22
Q

Unicode

A

Industry-standard character set that can represent thousands of different characters

23
Q

Unsigned Binary

A

Binary values that can store only positive values