justify c is portable
Answer / deepakkumar1887
yes, c is protable for device configuration not for platform
| Is This Answer Correct ? | 2 Yes | 0 No |
Name few "optional" classes introduced with java 8 ?
Hi all, I am dng a mini project on FileSplitter application which splits the GBs of logfile into Smaller chunks(mbs) depending on the split size." How to handle GBs file? I am getting OutOfMemoryException, when I input such GB sized file. Thx
How core java/j2ee project performance can be measured ?
Explain wait() method of object class ?
84. try { 85. ResourceConnection con = resourceFactory.getConnection(); 86. Results r = con.query(”GET INFO FROM CUSTOMER”); 87. info = r.getData(); 88. con.close(); 89. } catch (ResourceException re) { 90. errorLog.write(re.getMessage()); 91. } 92. return info; Which is true if a ResourceException is thrown on line 86? 1 Line 92 will not execute. 2 The connection will not be retrieved in line 85. 3 The resource connection will not be closed on line 88. 4 The enclosing method will throw an exception to its caller.
What is one third plus one third as a fraction?
Is nullpointerexception checked or unchecked?
How many bits are used to represent unicodde,ASCII,UTF-16 and UTF-8 characters?
In the below Java Program, how many objects are eligible for garbage collection?
This is related to threads. I have a class with synchronized method m1(). Can I create different instances of this class and execute the m1() for different threads?
Which are the two subclasses under exception class?
Advantages of Inheritance in java.