Answer:
The data is transformed to usually make it smaller. It can always be re-constructed back to the original.
Explanation:
I'm on the same lesson on code.org as you, so just go to the question before and the answer to that question was the answer! ;)
Let me know if you got it right!
Answer:
a. A nonconstant pointer to nonconstant data
Explanation:
Pointer can be used to pass an argument by reference. Pointers may be assigned to any integer value. Functions parameters are passed by an array. The function which modifies an array by arithmetic pointer is nonconstant pointer to nonconstant data to process every value in array. Pointer arithmetic allows us to perform integer additions or subtractions for the operation in pointer.
Because of the or keyword in the if statement, only one of the conditions has to be true.
The if statement is true if numA equals 2 or numB equals 2, and numA does equal 2, therefore, the output is yes.