Computer Unit 6 yur

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

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 5:17 PM on 3/26/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

13 Terms

1
New cards
<p><span style="background-color: transparent;"><span>List</span></span></p>

List

An ordered collection of elements

2
New cards
<p><span style="background-color: transparent;"><span>Element</span></span></p>

Element

An individual value in a list that is assigned a unique index

3
New cards

Index

A common method for referencing the elements in a list or string using numbers

4
New cards

Iteration

a repetitive portion of an algorithm which repeats a specified number of times or until a given condition is met.

5
New cards

Infinite loop

occurs when the needing condition will never evaluate to true

6
New cards

Traversal

The process of accessing each item in a list one at a time

7
New cards

Data abstraction

manage complexity in programs by giving a collection of data a name without referencing the specific details of the representation.

8
New cards

List.length

gives the length of the list

9
New cards

List.length-1

Gives the index of the list

10
New cards

list[index]

Returns an item from the list at the specific index

11
New cards

insertItem(list, index, item)

Inserts an item into the list at a specific index, shifts other elements to the right.

12
New cards

removeItem(list, index)

remove item from the list making it smaller, shifts other elements to the left

13
New cards

appendItem(list, item)

adds a new element to the end of the end