Ask your own question, for FREE!
MIT 6.189 A Gentle Introduction to Programming Using Python (OCW) 19 Online
OpenStudy (anonymous):

Which of the following statements will result in a value of 3 being assigned to x? int x = 10 % 3; int x = 7 / 2; int x = 12 % 4; int x = 3.0;

OpenStudy (anonymous):

B if you don't specify a double when dividing it will drop the decimal

OpenStudy (anonymous):

A will give you 1 because it returns the remainder after it does the division C will give you zero for the same reason and D will give you a compilation error

OpenStudy (anonymous):

Is there a way I can tell if the statement will give me a compilation error?

OpenStudy (anonymous):

You have to follow the java syntax, you can get compilation error for so many things. Normally when you're coding and compile, the compiler will tell you all the errors with a note saying what's wrong.

OpenStudy (anonymous):

Alright. Thanks for your help!

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!