MTA SOFTWARE DEVELOPMENT FUNDAMENTALS
EXAM NEWEST 2025 ACTUAL EXAM| COMPLETE 150
QUESTIONS AND VERIFIED ANSWERS (100%
CORRECT) ALREADY GRADED A+
Which of the following data types would be the best choice for
keeping track of player's ages and jersey numbers using the
least amount of memory?
A)short
B)byte
C)int .....ANSWER..... byte
Which of the following data will be stored on the heap?
A)player's name
B)height
C)age .....ANSWER..... player's name
,Page 2 of 26
Which variable would make sense to store as a char?
A)player's name
B)weight
C)gender .....ANSWER..... Gender
What data type uses the least amount of memory?
.....ANSWER..... Byte
What are 4 examples of integral data types? .....ANSWER.....
Byte, integer, short, and long whole numbers
What are floating point data types? .....ANSWER..... Type that
includes fractional data
What are 3 examples of floating point data types?
.....ANSWER..... Float, single, and double
Where do value data types go? .....ANSWER..... On the stack
Where do reference data types go? .....ANSWER..... On the
heap
, Page 3 of 26
The code in the parentheses of an if statement must be a
complete what? .....ANSWER..... Boolean expression
What do logical operators allow programmers to do?
.....ANSWER..... Join 2 expressions
When does a for loop work best? .....ANSWER..... The number of
iterations is known and unlikely to change during execution
What control structure would be best for a login system?
.....ANSWER..... while loop
How many times does a do..while loop execute? .....ANSWER.....
At least one time
What is the difference between a do..while loop and a while
loop? .....ANSWER..... A while loop may not execute at all
How does a for loop work? .....ANSWER..... Executes a statement
based on the value of a control variable