Introduction to Arrays Flashcards

1
Q

is a structured collection containing multiple data values, all of which
share the same data type.

A

array

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

Why array data structures is needed?

A

Structured Data
Storage. Data Retrieval, Memory
Optimization

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

_________
Arrays provide a way to
organize and store data
______, enabling easy
access through indexing.

A

Structured Data
Storage

efficiently

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

_________

They allow for quick
_________ of
elements, making them
essential for various
___________

A

retrieval and comparison
algorithms and operations

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

_________
Arrays help in _________ usage by allowing
the allocation of a fixed-size
collection of elements.

A

Memory
Optimization

optimizing
memory

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

Adds element to the array

A

append()

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

remove element from index 1

A

pop()

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

remove the value of “specific value”

A

remove()

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