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("PAKISTAN") ; System.out.print(obj.getCountry()); } } |
| A. | Pakistan |
| B. | PAKISTAN |
| C. | Compilation Error |
| D. | Nothing is displayed |
| Answer» E. | |