1.

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

A. Pakistan
B. PAKISTAN
C. URDU
D. Nothing is displayed
Answer» D. Nothing is displayed


Discussion

No Comment Found