Friday, August 31, 2007
26. What are wrapped classes?
Wrapped classes are classes that allow primitive types to be accessed as objects.
24. Which java.util classes and interfaces support event handling?
The EventObject class and the EventListener interface support event processing.
23What is the difference between yielding and sleeping?
When a task invokes its yield() method, it returns to the ready state. When a task invokes its sleep() method, it returns to the waiting state.
22. How many bits are used to represent Unicode, ASCII, UTF-16, and UTF-8 characters?
Unicode requires 16 bits and ASCII require 7 bits. Although the ASCII character set uses only 7 bits, it is usually represented as 8 bits. UTF-8 represents characters using 8, 16, and 18 bit patterns. UTF-16 uses 16-bit and larger bit patterns.
21. Which method of the Component class is used to set the position and
size of a component?
20. What is the difference between the >> and >>> operators?
19. What is an Iterator interface?
18. What modifiers may be used with an inner class that is a member of an outer class?
17. What is the Vector class?
16. How does Java handle integer overflows and underflows?
15. What is the List interface?
14. Which characters may be used as the second character of an identifier,
13. What is the Collections API?
12. What state does a thread enter when it terminates its processing?
11. Which containers use a FlowLayout as their default layout?
10. What method is used to specify a container's layout?
9. What is the preferred size of a component?
7. What's new with the stop (), suspend () and resume () methods in JDK 1.2?
6. Can a lock be acquired on a class?
5. What is synchronization and why is it important?
3. Why do threads block on I/O?
2. Which containers use a border Layout as their default layout?
What are different types of inner classes?
They are Nested -level classes, Member classes, Local classes, Anonymous classes
Nested -level classes- If you declare a class within a class and specify the static modifier, the compiler treats the class just like any other -level class. Any class outside the declaring class accesses the nested class with the declaring class name acting similarly to a package. eg, outer.inner. -level inner classes implicitly have access only to static variables.There can also be inner interfaces. All of these are of the nested -level variety.
Member classes - Member inner classes are just like other member methods and member variables and access to the member class is restricted, just like methods and variables. This means a public member class acts similarly to a nested -level class. The primary difference between member classes and nested -level classes is that member classes have access to the specific instance of the enclosing class.
Local classes - Local classes are like local variables, specific to a block of code. Their visibility is only within the block of their declaration. In order for the class to be useful beyond the declaration block, it would need to implement a more publicly available interface. Because local classes are not members; the modifiers public, protected, private, and static are not usable.
Anonymous classes - Anonymous inner classes extend local inner classes one level further. As anonymous classes have no name, you cannot provide a constructor.
What is Overriding?
What are Checked and UnChecked Exception?
checked exceptions are RuntimeException and any of its subclasses. Class Error and its subclasses also are unchecked. With an unchecked exception, however, the compiler doesn't force client programmers either to catch the exception or declare it in a throws clause. In fact, client programmers may not even know that the exception could be thrown. eg, StringIndexOutOfBoundsException thrown by String's charAt() method Checked exceptions must be caught at compile time. Runtime exceptions do not need to be. Errors often cannot be.
Will the JVM load the package twice at runtime?
Do I need to import java.lang package any time? Why ?
Can I have multiple main methods in the same class?
Can an application have multiple classes having main method?
What environment variables do I need to set on my machine in order to be able to run Java programs?
How can one prove that the array is not null but empty?
What is the first argument of the String array in main method?
What if I do not provide the String array as the argument to the method?
What if I write static public void instead of public static void?
What if the static modifier is removed from the signature of the main method?
What if the main method is declared as private?
The program compiles properly but at runtime it will give "Main method not public." message.
What one should take care of while serializing the object?
What happens to the object references included in the object?
What is Externalizable interface?
what is the common usage of serialization?
What is an abstract class?
How can I customize the serialization process?
Yes it is possible to have control over serialization process. The class should implement Externalizable interface. This interface contains two methods namely readExternal and writeExternal. You should implement these methods and write the logic for customizing the serialization process.