Array Data Structures Practice Flashcards

0.0(0)
Studied by 0 people
call kaiCall Kai
Locked
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/14

flashcard set

Earn XP

Description and Tags

A set of vocabulary flashcards covering the definition, syntax, memory characteristics, and basic operations of the Array data structure based on the lecture by Dr. Maria Crystal E. Orozco.

Last updated 2:37 PM on 7/28/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai
Chat

No analytics yet

Send a link to your students to track their progress

15 Terms

1
New cards

Array

A type of linear data structure defined as a collection of elements with same or different data types, existing in both single and multiple dimensions.

2
New cards

Array Index

A key value used to label the elements in an array, acting as an identifier for each location.

3
New cards

Memory Address

The starting address of free memory available, distinct from an array index.

4
New cards

Element

Each individual item stored within an array.

5
New cards

Index

A numerical value assigned to each location of an element in an array, used to identify that specific element.

6
New cards

Array Declaration Syntax (C/C++)

\text{data_type array_name[array_size]={elements separated by commas}} or \text{data_type array_name[array_size];}

7
New cards

Linear Data Structure Memory Allocation

Memory is allocated sequentially, where each element occupies an entire memory block.

8
New cards

Space Complexity Optimization

Achieved by non-linear data structures which use memory more efficiently and reduce the wastage found in sequential allocation.

9
New cards

Array Index Start

In array representation, the index always starts with 00.

10
New cards

Traverse

A basic operation that involves printing all the array elements one by one.

11
New cards

Insertion

A basic operation that adds an element at a specified index within the array.

12
New cards

Deletion

A basic operation that removes an element from a given index.

13
New cards

Search

A basic operation used to find an element either by its index or by its value.

14
New cards

Update

A basic operation that changes the value of an element at a given index.

15
New cards

Display

A basic operation that shows the entire contents of the array.