Question: How many bytes does the following code write to file destfile?
By: Ash Printer Friendly Format
1. try{
2. FileOutputStream fos = new FileOutputStream("destfile");
3. DataOutputStream dos = new DataOutputstream(fos);
4. dos.writeInt(3);
5. dos.writeDouble(0.0001);
6. dos.close();
7. fos.close();
8. }
9. catch (IOException e) {}
A. 2
B. 8
C. 12
D. 16
E. The number of bytes depends on the underlying system.
Answer:C is correct. The writeInt() call writes out an int, which is 4 bytes long; the writeDouble() call writes out a double, which is 8 bytes long, for a total of 12 bytes.
 
Comment on this tutorial
- Data Science
- Android
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Subscribe to Tutorials
Related Tutorials
Question: Readers have methods that can read and return floats and doubles. True or False?
Question: Execute the following code in an empty directory. What is the result?
Question: What is result of attempting to compile and execute the code below:
Getting started with Java Certification. (SCJA, SCJP,...SCEA)
Sun Certified Java Associate (SCJA) Certification
Question: Consider the following application: what value is printed at line 6?
Question: Consider the following application: what value is printed at line 6?
Question: How can you force garbage collection of an object?
Question: What is the range of values that can be assigned to a variable of type short?
Question: What is the range of values that can be assigned to a variable of type byte?
Question: Which of the following statements are true about UTF and Unicode?
Question: Which of the following statements are true about File? (Choose none, some , or all)
Question: The File class contains a method that changes the current working directory.
Question: How many bytes does the following code write to file destfile?