The FileOutputStream class is used to perform simple file output operations. It is used to write binary data to a…
September 22nd, 2009
What are the accessibility of members or variables with different modifiers?
No Comments, Java Facts, by Daisy Williams.The following table summarizes the accessibility of members in various forms: Members/Variables PrivatePublic Protected No modifier Same classYes Yes Yes…
September 19th, 2009
What is constructor overloadng?
No Comments, Java Facts, by Daisy Williams.Constructor overloading is a methodology that allows a class can have any number of constructors that differ in parameter lists….
September 18th, 2009
What is the rule for multiple catch blocks?
No Comments, Java Facts, by Daisy Williams.For multiple catch blocks, the rule is to place the subclass exception before the superclass exception. If a program has…