Question: what is the output? public class Test1{ public static void main(String[] args) { String[] a = {TRUE, FALSE); swap(a); System.out.println(a[0] = + a[0] +

what is the output? what is the output? public class Test1{ public static void main(String[] args)

public class Test1{ public static void main(String[] args) { String[] a = {"TRUE", "FALSE"); swap(a); System.out.println("a[0] = " + a[0] + " a[1] = " + a[1]); public static void swap(String [] a) { String temp = a[0]; a[0] = a[1]; a[1] = temp

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!