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