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("ENGLISH") ;
System.out.print(object.getDisplayLanguage());
}
}

A. ENGLISH
B. Compilation Error
C. Runtime Error
D. english
E. None of these
Answer» E. None of these


Discussion

No Comment Found