CC4 Q2 Flashcards

1
Q

Is a conclusion of homogenous, ordered, and finite set of elements

A

Array

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

Implies all elements must be off the same type and have the same structure

A

Homogenous

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

Means that elements are organized in sequence

A

Finite

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

Are built into a programming language with no extra definition needed in the part of the programmer

A

Primitive data type

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

T or F

An array uses a single variable to represent a large set of homogenous data collection

A

True

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

T or F

An array provides direct access to a storage area for an element

A

True

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

T or F

The elements on an array can be manipulated easily using an index

A

True

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

T or F

It is easy to create and initialize an array

A

True

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

T or F

Arrays are good at implementing iterative algorithms

A

True

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

T or F

Number dimensional arrays facilitate grouping of data collection into hierarchical structure

A

True

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

T or F

Array size cannot be undressed or decreased during runtime

A

True

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

T or F

Insertion and deleon in arrays are not efficient

A

True

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

For every large data sets the may run out of the storage space

A

True

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

In an array the position of an element is identified by a variable called

A

Index

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

The range of values is for the index is referred to as

A

Index set

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

Smallest value in of index is called ____ and largest ____

A

Lower bound, Upper bound

17
Q

Individual elements of an array are identified by an ____ and _____

A

Array name, array index

18
Q

Represents arrangement of data elements in the memory

A

Storage structure

19
Q

Address of the first elements is called

A

Base address

20
Q

Retrieving, it is also called

A

Accessing