READ Free Dumps For Oracle- 1z0-804
Question ID 3565 | Given a language code of fr and a country code of FR, which file name represents a resource bundle file name that is not the default? |
Option A | A. MessageBundle_fr_FR.properties |
Option B | B. MessageBundle_fr_FR.profile |
Option C | C. MessageBundle_fr_FR.xinl |
Option D | D. MessageBundle__fr__FR.Java |
Option E | E. MessageBundle__fr__FR.Locale |
Correct Answer | A |
Question ID 3566 | Assuming the port statements are correct, which two (three?) code fragments create a one-byte file? |
Option A | A. OutputStream fos = new FileOutputStream(new File("/tmp/data.bin")); |
Option B | B. OutputStream fos = new FileOutputStream ("/tmp/data.bin"); DataOutputStream dos = new DataOutputStream(fos); |
Option C | C. OutputStream fos = new FileOutputStream (new File ("/tmp/data.bin")); DataOutputStream dos = new DataOutputStream(fos); |
Option D | D. OutputStream fos = new FileOutputStream ("/tmp/data.bin"); fos.writeByte(0); fos.close(); |
Correct Answer | A,B,C |