MCQOPTIONS
Saved Bookmarks
| 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", "PAKISTAN") ; System.out.print(obj.getDisplayLanguage()); } } |
| A. | Pakistan |
| B. | PAKISTAN |
| C. | URDU |
| D. | Nothing is displayed |
| Answer» D. Nothing is displayed | |