logo Practice-It logo

BJP4 Self-Check 2.5: expressions3

Language/Type: Java basics expressions Strings
Author: Leslie Ferguson (on 2016/09/08)

Trace the evaluation of the following expressions, and give their resulting values. Make sure to give a value of the appropriate type (such as including a .0 at the end of a double or quotes around a String).

2 + 2 + 3 + 4
"2 + 2 " + 3 + 4
2 + " 2 + 3 " + 4
3 + 4 + " 2 + 2"
"2 + 2 " + (3 + 4)
"(2 + 2) " + (3 + 4)
"hello 34 " + 2 * 4
2 + "(int) 2.0" + 2 * 2 + 2
4 + 1 + 9 + "." + (-3 + 10) + 11 / 3
8 + 6 * -2 + 4 + "0" + (2 + 5)
1 + 1 + "8 - 2" + (8 - 2) + 1 + 1
5 + 2 + "(1 + 1)" + 4 + 2 * 3
"1" + 2 + 3 + "4" + 5 * 6 + "7" + (8 + 9)

You must log in before you can solve this problem.


Log In

If you do not understand how to solve a problem or why your solution doesn't work, please contact your TA or instructor.
If something seems wrong with the site (errors, slow performance, incorrect problems/tests, etc.), please

Is there a problem? Contact a site administrator.