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

A. India
B. Hindi
C. English
D. HINDI
E. None of these
Answer» C. English


Discussion

No Comment Found