1z0-808 Exam Question 76
Given the code fragment:

What is the result?

What is the result?
1z0-808 Exam Question 77
Given the code fragment:

Assume that the system date is June 20, 2014. What is the result?


Assume that the system date is June 20, 2014. What is the result?

1z0-808 Exam Question 78
Given the code fragment:

Which code fragment, when inserted at line n1, enables the App class to print Equal?


Which code fragment, when inserted at line n1, enables the App class to print Equal?

1z0-808 Exam Question 79
Given:
public class Equal {
public static void main(String[] args) {
String str1 = "Java";
String[] str2 = {"J","a","v","a"};
String str3 = "";
for (String str : str2) {
str3 = str3+str;
}
boolean b1 = (str1 == str3);
boolean b2 = (str1.equals(str3));
System.out.print(b1+", "+b2);
}
What is the result?
public class Equal {
public static void main(String[] args) {
String str1 = "Java";
String[] str2 = {"J","a","v","a"};
String str3 = "";
for (String str : str2) {
str3 = str3+str;
}
boolean b1 = (str1 == str3);
boolean b2 = (str1.equals(str3));
System.out.print(b1+", "+b2);
}
What is the result?
1z0-808 Exam Question 80
Given:

What is the result?

What is the result?
