What is the correct order of the following data What is the purpose of order of operation in
sizes from smallest to largest? Megabytes, software programming? - -It tells the
Terabytes, Bytes, Petabytes, Bits, Exabytes, computer which mathematical operation to
Gigabytes - -Bits, Bytes, Megabytes, perform first.
Terabytes, Petabytes, Exabytes
How does the ++ symbol in programming change
How many megabytes are in a gigabyte? - a variable? - -It adds 1 to the value of itself.
-1000
How does the -- symbol in programming change
How many bits would you need if you wanted to a varibale? - -It subtracts 1 from the value
have the ability to count up to 1000? - -10 of itself.
An interpreter or compiler converts data into What data type is used for fractional numbers? -
which numerical value? - -Binary -Float
Which decimal is equivalent to the binary value Which data representation system utilizes both
1100100? - -100 letters and numbers? - -Hexadecimal
What is the core number system that most When utilizing an if/else statement in your code,
computers use to calculate & process logic? - how many possible choices can be available to
-Binary Code the user? - -2
What can a hexadecimal be utilized for? - - When writing an if/else statement, what should
HTML color codes be utilized to contain the sequence of
statements? - -{ }
How many unique IP addresses could be made
using a 6 bit fixed-length adress sysem? - - What comes first in the if / else statement? -
64 -if
Which operator returns the remainder value in a What is the best statement to use if checking to
calculation? - -Modulus evaluate a single variable value across many
conditions? - -Switch
Operators of equal precedence are evaluated in
which order? - -Left to Right What does the == symbol in programming mean?
- -equal
1/7
, TSA Coding Study Guide with Complete Solutions
What does the = symbol in programming mean? What is another name for indenting? - -
- -assignment Nesting
What does the && symbol in programming What are nesting statements? - -They are
mean? - -and statements inside another statement.
What does the || symbol in programming mean? Which statement allows more than one condition
- -or in an if statement? - -elif
What does the ! symbol in programming mean? - What does a computer program use as a means
-not to evaluate a condition as True or False? -
-A Boolean expression.
What does the > symbol in programming mean?
- -greater than "A program contains the following statements:
x= grade
If x >90:
What does the < symbol in programming mean? print ("You are an A student!")
- -less than What action will the program take when x=89?" -
-Nothing will print.
What does the >= symbol in programming
mean? - -greater than or equal Computer Program - -Any software that
runs on top of the operating system.
What does the <= symbol in programming
mean? - -less than or equal Programming Language - -A system of
conventions and symbols used to create
instructions for computers, which read through
What does the === symbol in programming and follow the instructions in the code.
mean? - -equal value and equal type
Machine Code - -A binary system that is
What does the != symbol in programming mean? made of a series of 1s and 0s. It is considered
- -not equal the lowest level of programming and is the set of
instructions with which the computer's CPU
works directly.
What does the !== symbol in programming
mean? - -not equal value and not equal
type Low-level Language - -A programming
language whose code is more similar to what the
2/7