Bytes, Petabytes, Bits, Exabytes, Gigabytes - ✔ ✔ Bits, Bytes, Megabytes, Terabytes, Petabytes,
Exabytes
How many megabytes are in a gigabyte? - ✔ ✔ 1000
How many bits would you need if you wanted to have the ability to count up to 1000? - ✔ ✔ 10
An interpreter or compiler converts data into which numerical value? - ✔ ✔ Binary
Which decimal is equivalent to the binary value 1100100? - ✔ ✔ 100
What is the core number system that most computers use to calculate & process logic? - ✔ ✔ Binary
Code
What can a hexadecimal be utilized for? - ✔ ✔ HTML color codes
How many unique IP addresses could be made using a 6 bit fixed-length adress sysem? - ✔ ✔ 64
Which operator returns the remainder value in a calculation? - ✔ ✔ Modulus
Operators of equal precedence are evaluated in which order? - ✔ ✔ Left to Right
, What is the purpose of order of operation in software programming? - ✔ ✔ It tells the computer
which mathematical operation to perform first.
How does the ++ symbol in programming change a variable? - ✔ ✔ It adds 1 to the value of itself.
How does the -- symbol in programming change a varibale? - ✔ ✔ It subtracts 1 from the value of
itself.
What data type is used for fractional numbers? - ✔ ✔ Float
Which data representation system utilizes both letters and numbers? - ✔ ✔ Hexadecimal
When utilizing an if/else statement in your code, how many possible choices can be available to the
user? - ✔ ✔ 2
When writing an if/else statement, what should be utilized to contain the sequence of statements? - ✔
✔ {}
What comes first in the if / else statement? - ✔ ✔ if
What is the best statement to use if checking to evaluate a single variable value across many conditions?
- ✔ ✔ Switch
What does the == symbol in programming mean? - ✔ ✔ equal
What does the = symbol in programming mean? - ✔ ✔ assignment