Declaration and Access Control
What will be the output?public class Test{ public static void main(String[] args){ String value = "abc"; changeValue(value); System.out.println(value); } public static void changeValue(String a){ a = "xyz"; }}

Compilation fails
None of these
Compilation clean but no output
xyz
abc

ANSWER DOWNLOAD EXAMIANS APP