Computer Science Vocabulary - Page 1

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

Vocabulary flashcards covering key computer science terms and concepts from the provided transcript.

Last updated 2:54 PM on 9/3/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

Algorithm

a finite set of instructions that accomplish a task, every one can be constructed using combinations of sequencing, selection and iteration.

2
New cards

Application program interfaces (APIs)

specifications for how the procedures in a library behave and can be used- a form of documentation.

3
New cards

Bias

A systematic preference or unfairness in data, algorithms, or computing systems that can produce unequal or inaccurate outcomes.

4
New cards

Collaboration

Working with others to design, develop, test, or improve. Reduces bias!!

5
New cards

Computing Innovation

A product, process, or concept that uses a computer program to solve problems.

6
New cards

Comments

a form of documentation written into the program to be read by programmers. They do not affect how a program runs.

7
New cards

Consensus Building

The process of working with others to reach an agreement that everyone can support.

8
New cards

Documentation

a written description of the function of a code segment, event, procedure, or program and how it was developed.

9
New cards

Pair Programming

A collaborative programming technique where two programmers work together at one computer-one writes code (the driver) while the other reviews and guides (the navigator).

10
New cards

Parameter v. Argument

forward (distance)- distance is a parameter. When you call the procedure - forward(10), 10 is the argument.

11
New cards

Program User

A person who interacts with or uses a computer program.

12
New cards

Library

a file that contains procedures that may be used in creating new programs.

13
New cards

Logic Error

a mistake in a program's source code that results in incorrect or unexpected behavior- the program might run, but you aren't getting the results you want.

14
New cards

Sequencing

executing each step of an algorithm in the order in which the code statements are given.

15
New cards

Syntax Error

a mistake in the source code, such as spelling and punctuation errors.