a procedure or formula used for solving a problem
ALGORITHM
used for data values that are made up of ordered sequences of characters
String
The values “17” and “3.2” are what type?
float
Which of the following is not true about string operations?
Concatenating strings automatically adds a space between the strings
used to hide background details or any unnecessary implementation about the data so that users only see the required information.
ABSTRACTION
a sequence of instruction s that is continually repeated until a certain condition is reached
Loop
How would you print the integer 1,000,000
print(1000000)
What function is used to convert string values to integers?
int
the set of instructions, or a system of rules, written in a particular programming language
CODE
chunk of code that you can use over and over again, rather than writing it out multiple times
Function
What is the result of 3 / 4
0.75
How would you assign the variable name to the string Penelope
name = "Penelope"
Data entered into a program, either by the programmer or digitally
INPUT
a number of items in an ordered or unordered structure
List
What is the result of 18 % 5
3
Mnemonic means:
memory aid
the signals or data sent from it.
OUTPUT
a value that can change, depending on conditions or on information passed to the program
Variable
What is the result of 25 % 4
1
What is the value of 15 / 12
1.25