Q: Define JIT compiler?
A: It improves the runtime performance of computer programs based on bytecode.
Q: What is the difference between object oriented programming language and object based programming language?
A: Object based programming languages follow all the features
of OOPs except Inheritance. JavaScript is an example of object based
programming languages
Q: What is the purpose of default constructor?
A: The java compiler creates a default constructor only if there is no constructor in the class.
Q: Can a constructor be made final?
A: No, this is not possible.
Q: What is static block?
A: It is used to initialize the static data member, It is excuted before main method at the time of classloading.
Q: Define composition?
A: Holding the reference of the other class within some other class is known as composition.
Q: What is function overloading?
A: If a class has multiple functions by same name but different parameters, it is known as Method Overloading.
Q: What is function overriding?
A: If a subclass provides a specific implementation of a
method that is already provided by its parent class, it is known as
Method Overriding.
Q: Difference between Overloading and Overriding?
A: Method overloading increases the readability of the
program. Method overriding provides the specific implementation of the
method that is already provided by its super class parameter must be
different in case of overloading, parameter must be same in case of
overriding.
Q: What is final class?
A: Final classes are created so the methods implemented by that class cannot be overridden. It can’t be inherited.
Q: What is NullPointerException?
A: A NullPointerException is thrown when calling the instance
method of a null object, accessing or modifying the field of a null
object etc.
Q: What are the ways in which a thread can enter the waiting state?
A: A thread can enter the waiting state by invoking its
sleep() method, by blocking on IO, by unsuccessfully attempting to
acquire an object’s lock, or by invoking an object’s wait() method. It
can also enter the waiting state by invoking its (deprecated) suspend()
method.
Q: How does multi-threading take place on a computer with a single CPU?
A: The operating system’s task scheduler allocates execution
time to multiple tasks. By quickly switching between executing tasks, it
creates the impression that tasks execute sequentially.
Q: What invokes a thread’s run() method?
A: After a thread is started, via its start() method of the
Thread class, the JVM invokes the thread’s run() method when the thread
is initially executed.
Q: Does it matter in what order catch statements for FileNotFoundException and IOException are written?
A: Yes, it does. The FileNoFoundException is inherited from the IOException. Exception’s subclasses have to be caught first.
Q: What is the difference between yielding and sleeping?
A: 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.
Q: Why Vector class is used?
A: The Vector class provides the capability to implement a
growable array of objects. Vector proves to be very useful if you don’t
know the size of the array in advance, or you just need one that can
change sizes over the lifetime of a program.
Q: How many bits are used to represent Unicode, ASCII, UTF-16, and UTF-8 characters?
A: 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.
Q: What are Wrapper classes?
A: These are classes that allow primitive types to be accessed as objects. Example: Integer, Character, Double, Boolean etc.
Q: What is the difference between a Window and a Frame?
A: The Frame class extends Window to define a main application window that can have a menu bar.
For more Visit: http://www.quontrasolutions.com/blog/category/java
For more Visit: http://www.quontrasolutions.com/blog/category/java
No comments:
Post a Comment