Computing Test Revision on Python

studied byStudied by 6 people
5.0(2)
learn
LearnA personalized and smart learning plan
exam
Practice TestTake a test on your terms and definitions
spaced repetition
Spaced RepetitionScientifically backed study method
heart puzzle
Matching GameHow quick can you match all your cards?
flashcards
FlashcardsStudy terms and definitions

1 / 14

flashcard set

Earn XP

15 Terms

1

String

anything enclosed in speech marks.

New cards
2

Float

A decimal number.

New cards
3

Integer

A whole number.

New cards
4

Boolean

A data type that represents logical values. A boolean variable can only have 2 possible values, true or false. Examples of this are if and else

New cards
5

Iteration

Looping

New cards
6

Sequences

The first programming construct. They carry out the instructions.

New cards
7

Selection

It is the process of making a decision.

New cards
8

Count controlled Iteration

It tells the program how many times to loop the text or thing it is reffering to.

New cards
9

Condition-Controlled Iteration

A type of looping structure in programming where the iteration continues as long as a specified condition is true.

New cards
10

Nested Selection

A selection structure within another selection structure. It allows for complex decision-making based on multiple conditions.

New cards
11

While Loops in Python

It continues to execute a block of code as long as a specified condition is true.

New cards
12

Array

A data structure that holds a collection of items, typically of the same type, and allows for indexed access to its elements.

New cards
13

Procedure

A set of instructions for a computer that has a name by which it can be called into action.

New cards
14

Parameter

Information that can be passed into a function.

New cards
15

Function in Python

A reusable block of code that performs a specific task. It can take inputs, known as parameters, and can return outputs.

New cards
robot