-
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());
}
}
-
- ENGLISH
- Compilation Error
- Runtime Error
- english
- None of these
Correct Option: D
english