Question 96 of 130 from exam 1Z0-809: Java SE 8 Programmer II

Question 96 of 130 from exam 1Z0-809: Java SE 8 Programmer II

Question

Given the code fragment:

final string strl = "Java";
StringBuffer strBuf = new StringBuffer ("Course") ;
UnaryOperator<string> u = (str2) -> strl.concat(str2); // line ni
UnaryOperator<string> c = (str3) -> str3.toLowerCase ();
System.out.print1n(u. apply (c. apply (strBuf) )) + // line n2

What is the result?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

A.