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

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

Question

Given the code fragment:

public static void main(string[] args) {
Short sl = 200;
Integer s2 = 400;
Long $3 = (long) sl + 82; //line ni
String #4 = (string) (83 * 82); //line n2
System.out.println ("Sum is "+ $4);

What is the result?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D. E.

C.