Question: need help What is output by the following code? String s1 = new String(z); String s2 = new String(z); boolean b1 = (s1==s2); boolean b2

need help

need help What is output by the following code? String s1 =

new String("z"); String s2 = new String("z"); boolean b1 = (s1==s2); booleanb2 = (s1.equals(s2)); System. out.print(b1 +"=+b2); What is output by the following

What is output by the following code? String s1 = new String("z"); String s2 = new String("z"); boolean b1 = (s1==s2); boolean b2 = (s1.equals(s2)); System. out.print(b1 +"=+b2); What is output by the following code? String s0 = "Java"; char c1 = s0. charAt(1); char c2 = s0.charAt (3); boolean b1=(c1==c2); System.out.print (b1+"n+c1+c2); What is output by the following code? String s0 = "Java"; int i1= s0. indexOf('a'); int i2 =s0.indexOf('a', i1); int i3 =s0 indexOf('a', i1 +1); System.out.print(i1 +""+i2+""+i3)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!