Questions involving wrapper classes did appear on my exam about 10 days ago. Key points to remember are that wrapper objects are immutable and their toString() method allows concatenation with other strings. For example,
Integer someNum = new Integer(15);
System.out.println("Number is " + someNum);
will display "Number is 15".
They are also handy for
string <-> primitive conversion, displaying the hexadecimal string for an integer, etc..