Bagrut CS glossary
Bagrut CS glossary
Plain-language definitions for every term you'll see on exam day.
- AlgorithmA finite sequence of steps that leads from a given input to a correct output.
- ArrayAn ordered collection of values of the same type, held together under one name.
- BooleanA data type that holds one of two values: true or false.
- ClassA template that defines data and behaviour, from which instances can be created.
- LoopA structure that runs the same block of code repeatedly until a condition becomes false.
- MethodA function attached to a class that operates on a specific instance of it.
- ObjectA specific instance of a class — the concrete data that filled the template.
- RecursionA function that calls itself to solve a smaller version of the same problem.