Topic 10 CS Data Types and Structures

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/14

flashcard set

Earn XP

Description and Tags

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

15 Terms

1
New cards

Data type

a classification attributed to an item of data, which determines the types of value it can take and how it can be used.

2
New cards

Identifier

a unique name applied to an item of data.

3
New cards

Record (data type)

a composite data type comprising several related items that may be of different data types.

4
New cards

Composite data type

a data type constructed using several of the basic data types available in a particular programming language.

5
New cards

Array

a data structure containing several elements of the same data type.

6
New cards

Index (array)

a numerical indicator of an item of data’s position in an array.

7
New cards

Lower bound

the index of the first element in an array, usually 0 or 1.

8
New cards

Upper bound

the index of the last element in an array.

9
New cards

Linear search

a method of searching in which each element of an array is checked in order.

10
New cards

Bubble sort

a method of sorting data in an array into alphabetical or numerical order by comparing adjacent items and swapping them if they are in the wrong order.

11
New cards

File

a collection of data stored by a computer program to be used again.

12
New cards

Abstract data type (ADT)

a collection of data and a set of operations on that data.

13
New cards

Stack

a list containing several items operating on the last in, first out (LIFO) principle.

14
New cards

Queue

a list containing several items operating on the first in, first out (FIFO) principle.

15
New cards

Linked list

a list containing several items in which each item in the list points to the next item in the list.