A
Q. What will be the output of the following Java program?
import java.util.*;
class LOCALE_CLASS
{
public static void main(String args[])
{
Locale obj = new Locale("HINDI") ;
System.out.print(obj.getDisplayLanguage());
}
}
- Correct Answer - Option(C)
- Views: 14
- Filed under category Java
- Hashtags:
Discusssion
Login to discuss.