1
2
3
100

To identify errors or bugs in computer hardware or programs and fix them

debugging

100

What did we first learn

MIT

100

 Which of the following is not true about string operations?

Concatenating strings automatically adds a space between the strings

200

 a block of organized and reusable code that performs a single action

function

200

The values “17” and “3.2” are what type?

string (str)

200

 What function is used to convert string values to integers?

int

300

A programming statement that evaluates a true/false Boolean expression to determine the next steps in a program

conditional statement

300

How would you print the integer 1,000,000

print(1000000)

300

What are comments used for?

To add notes to code.

400

To direct a program to execute or reference a certain procedure

call a procedure

400

 How would you assign the variable name to the string Penelope

name = "Penelope"

400

Mnemonic means:

memory aid

500

A joining together of separate items—without changing them—into one place

concatenation

500

What is the result of 3 / 4

0.75

500

 What is the value of 15 // 12

1