ITSS Flashcards

1
Q

Computation

A

The process of performing mathematical calculations or processing data using a computer.

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

Algorithm

A

A step-by-step procedure or formula for solving a problem.

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

Complexity

A

The measure of the difficulty of solving a problem

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

Selection

A

Programming construct that allows for decision-making based on whether a condition is true or false.

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

Iteration

A

The repetition of a set of instructions in a program

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

range() function

A

Used in python to generate a sequence in a program.

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

Concatenation

A

The operation of joining two or more strings together using the + operator in Python.

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

add() method

A

Used in Python to add one item to a set.

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

Dictionary

A

A collection of key-value pairs in Python.

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

Comparison Operator

A

Used to compare two values and return a Boolean value

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

Decomposition

A

The process of breaking down a complex problem into smaller, more manageable parts.

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

Python

A

A high-level programming language known for its readability and ease of use

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

Parameter

A

A variable listed inside the parentheses in the function definition.

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

Break statement

A

Used to terminate the execution of a loop immediately

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

Built-in function

A

A function provided by Python that is always available for use.

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

sort() method

A

Used to sort the elements of a list alphanumerically.

17
Q

Recursion

A

A programming technique where a function calls itself to solve a smaller instance of the same problem.

18
Q

in Operator

A

Used to test if a value is a member of a sequence

19
Q

Indentation

A

The use of whitespace at the beginning of lines to define the structure of code blocks in Python