Conditional and iterative statements Flashcards

1
Q

>

A

greater than

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

<

A

less than

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

> =

A

greater than or equal to

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

<=

A

less than or equal to

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

==

A

equal to

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Automation:

A

The use of technology to reduce human and manual effort to perform common and repetitive tasks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Boolean data:

A

Data that can only be one of two values: either True or False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Command-line interface:

A

A text-based user interface that uses commands to interact with the computer

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Comment:

A

A note programmers make about the intention behind their code

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Conditional statement:

A

A statement that evaluates code to determine if it meets a specified set of conditions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Data type:

A

A category for a particular type of data item

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Dictionary data:

A

Data that consists of one or more key-value pairs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Float data:

A

Data consisting of a number with a decimal point

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Integer data:

A

Data consisting of a number that does not include a decimal point

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Integrated development environment (IDE):

A

A software application for writing code that provides editing assistance and error correction tools

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Interpreter:

A

A computer program that translates Python code into runnable instructions line by line

14
Q

Iterative statement:

A

Code that repeatedly executes a set of instructions

15
Q

List data:

A

Data structure that consists of a collection of data in sequential form

16
Q

Loop variable:

A

A variable that is used to control the iterations of a loop

17
Q

Notebook:

A

An online interface for writing, storing, and running code

18
Q

Programming:

A

A process that can be used to create a specific set of instructions for a computer to execute tasks

19
Q

Set data:

A

Data that consists of an unordered collection of unique values

20
Q

String data:

A

Data consisting of an ordered sequence of characters

21
Q

Syntax:

A

The rules that determine what is correctly structured in a computing language

22
Q

Tuple data:

A

Data structure that consists of a collection of data that cannot be changed

23
Q

Type error:

A

An error that results from using the wrong data type