Multiple Choice
Consider having three String variables a, b, and c. The statement c = a + b; also can be achieved by saying
A) c = a.length( ) + b.length( ) ;
B) c = (int) a + (int) b;
C) c = a.concat(b) ;
D) c = b.concat(a) ;
E) c = a.plus(b) ;
Correct Answer:

Verified
Correct Answer:
Verified
Related Questions
Q4: What are the syntax errors from the
Q10: You specify the shape of an oval
Q18: For the following questions, refer to the
Q19: Write an assignment statement to compute the
Q33: A double is wider than a float
Q38: Write a set of instructions to prompt
Q39: Write a program that will input some
Q42: If String name = "George W. Bush";
Q57: Given two points in an applet represented
Q67: The values of (double)5/2 and (double)(5/2) are