To identify errors or bugs in computer hardware or programs and fix them
debugging
What did we first learn
MIT
Which of the following is not true about string operations?
Concatenating strings automatically adds a space between the strings
a block of organized and reusable code that performs a single action
function
The values “17” and “3.2” are what type?
string (str)
What function is used to convert string values to integers?
int
A programming statement that evaluates a true/false Boolean expression to determine the next steps in a program
conditional statement
How would you print the integer 1,000,000
print(1000000)
What are comments used for?
To add notes to code.
To direct a program to execute or reference a certain procedure
call a procedure
How would you assign the variable name to the string Penelope
name = "Penelope"
Mnemonic means:
memory aid
A joining together of separate items—without changing them—into one place
concatenation
What is the result of 3 / 4
0.75
What is the value of 15 // 12
1