Question 12 of 76 from exam 1Z0-808: Java SE 8 Programmer I

Question 12 of 76 from exam 1Z0-808: Java SE 8 Programmer I

Question

Given:

public static void main(string[] args) {(

String ta = "A";

ta = ta.concat ("B ");
String th = "Cc";

ta = ta.concat (tb);
ta.replace('C', 'D');

ta = ta.concat (tb);
System. out. println (ta);

What is the result?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D. E.

E.