Cambridge (CIE) IGCSE Computer Science - Standard Methods of a Solution

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

1/10

flashcard set

Earn XP

Description and Tags

Flashcards covering key concepts from the lecture on standard methods of a solution in computer science, focusing on searching and sorting algorithms.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

11 Terms

1
New cards

Searching Algorithm

Precise step-by-step instructions that a computer can follow to efficiently locate specific data in massive datasets.

2
New cards

Linear Search

A searching algorithm that checks every value one at a time, starting from the first value in a dataset.

3
New cards

Dataset

A collection of related data points or values used for analysis or processing.

4
New cards

Bubble Sort

A simple sorting algorithm that checks values in pairs and swaps them if they are not in the correct order.

5
New cards

Pass (in sorting)

A complete run of comparisons from beginning to end of a dataset during a sorting process.

6
New cards

Pseudocode

A high-level description of an algorithm using a structured but informal programming language.

7
New cards

COUNT variable

A variable used in algorithms to keep track of iterations or occurrences.

8
New cards

Totalling

Keeping a running total of values entered into the algorithm.

9
New cards

Maximum Value

The largest value in a list.

10
New cards

Minimum Value

The smallest value in a list.

11
New cards

Average (Mean)

The total of a set of values divided by the number of values in that set.