assuming this snippet of pseudocode is sitting by itself with
nothing written above or below it, what, if anything, is wrong with
it?
int currentYear = 2250;
int age = currentYear-birthYear;
Display age;
A. 2250 is not a valid value for an integer type variable
B. it is perfectly fine
C. we are trying to do a subtraction operation on some variable that has not been assigned a value. (it is not defined yet).
D. we should be calculating the age before we set the
currentYear:
int age = currentYear - birthYear;
int currentYear = 2019 ;
(There can be multiple Answers)
C. we are trying to do a subtraction operation on some variable that has not been assigned a value. (it is not defined yet).

assuming this snippet of pseudocode is sitting by itself with nothing written above or below it,...