1.

What is the output of this program?
 import java.util.*;
public class LOCALE_CLASS_Example
{
public static void main(String args[])
{
Locale object = new Locale("ENGLAND") ;
System.out.print(object.getCountry());
}
}

A. INDIA
B. ENGLAND
C. Runtime Error
D. Compilation Error
E. Nothing is displayed
Answer» E. Nothing is displayed


Discussion

No Comment Found