Unit 7 - Module 4 - Python Automation Flashcards

1
Q

What is a container that stores data?

A

A Variable

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

What is a statement that evaluates code to determine if it meets a specified set of conditions?

A

Conditional Statement

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

What is code that repeatedly executes a set of instructions?

A

Iterative statement

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

What is a section of code that can be reused in a program?

A

a Function

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

What statement handles errors and manages external resources?

A

with

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

What function opens a file in Python?

A

open()

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

What is the process of converting data into a more readable format?

A

Parsing

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

What process converts a string into a list?

A

.split()

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

What process concatenates the elements of an iterable into a string?

A

.join()

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

What is an error that involves invalid usage of a programming language?

A

Syntax Error

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

What is an error that results when the lgic used to code produces unintended results?

A

Logic Error

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

What is an error that involves code that cannot be executed even though it is syntactically correct?

A

Exception

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

What is a software application for writing code that procides editing assistance and error correction tools?

A

Integrated Development Enviroment (IDE)

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

What is a software tool that helps to locate the source if an error and assess its causes?

A

Debugger

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