Which of the statements below will create the String r1 = "JAVA: How to Program"?

Consider the statements below:
```
String a = "JAVA: ";
String b = "How to ";
String c = "Program";
```

a. String r1 = c.concat(b.concat(a));
b. String r1 = a.concat(b.concat(c));
c. String r1 = b.concat(c.concat(a));
d. String r1 = c.concat(c.concat(b));

b. String r1 = a.concat(b.concat(c));

Computer Science & Information Technology

You might also like to view...

A multi-core processor contains multiple processors that are stored on ________ chip(s)

A) one B) two C) three D) four

Computer Science & Information Technology

A(n) ________ task must be completed before the next task can start

Fill in the blank(s) with correct word

Computer Science & Information Technology