|  Home   |  Contact Us   |  Online Exam   |  Tech World   |  Jobs    |  Member Login
Java Interview Questions
Jdbc Interview Questions
Servlet Interview Questions
Jsp Interview Questions
Struts Interview Questions
Ajax Interview Questions
Webservice Interview Questions
Designpattern Interview Questions
J2me Interview Questions
EJB Interview Questions
Spring Interview Questions
Hibernet Interview Questions
Enterprise IT Training
Java Program Examples
Ask Technical Expert!
Write Online Exam and Get Job Opportunity Here!
        JAVA Interview Questions          
     |  Previous  |   1  |   2  |   3  |   4  |   Next  |   Sample JAVA Programs  |  

101. What are the different primitive data type in java ?
     There are 8 primitive types in java. boolean , char, byte, short, int long, float, double.
102. What is static ?
     static means one per class. static variables are created when the class loads. They are associated with the class. In order to access a static we don't need objects. We can directly access static methods and variable by calling classname.variablename..
103. Why we cannot override static methods?
     Static means they are associated with a class. In static methods , the binding mechanism is static binding. So it must be available at the compile time.
104. What is the difference between static and non static variables ?
     A static variable is associated with the class as a whole rather than with specific instances of a class. There will be only one value for static variable for all instances of that class. Non-static variables take on unique values with each object instance.
105. When does a compiler supplies a default constructor for a class?
     If there is no other constructor exist in a class, the compiler will supply a default constructor.
106. What are the restrictions placed on overriding a method ?
      The overridden method have the exact signature of the super class method, including the return type. The access specified cannot be less restrictive than the super class method. We cannot throw any new exceptions in overridden method.
107. What are the restrictions placed on overloading a method ?
     Overloading methods must differ in their parameter list, or number of parameters.
108. What is casting ?
     Casting means converting one type to another. There are mainly two types of casting. Casting between primitive types and casting between object references. Casting between primitive numeric types is used to convert larger data types to smaller data types. Casting between object references is used to refer to an object by a compatible class, interface, or array type reference.
109. What is the difference between == and equals ?
     The equals method can be considered to perform a deep comparison of the value of an object, whereas the == operator performs a shallow comparison. If we are not overriding the equals method both will give the same result. == will is used to compare the object references. It is used to check whether two objects are points to the same reference.
110. What is a void return type ?
     void indicates that the method will not return anything.
111. What will happen if an exception is not caught ?
     An uncaught exception results in the uncaughtException() method of the thread's ThreadGroup, which results in the termination of the program.
112. What are the different ways in which a thread can enter into waiting state?
     There are three ways for a thread to enter into waiting state. By invoking its sleep() method, by blocking on I/O, by unsuccessfully attempting to acquire an object's lock, or by invoking an object's wait() method.
113. What is a ResourceBundle class?
     The ResourceBundle class is used to store locale-specific resources that can be loaded by a program to create the program's appearance to the particular locale in which it is being run.
114. What is numeric promotion?
     Numeric promotion is the conversion of a smaller numeric type to a larger numeric type. In numerical promotion, byte, char, and short values are converted to int values. The int, long and float values are converted to the desired types if required.
115. What is the difference between the prefix and postfix forms of the ++ operator?
      The prefix form first performs the increment operation and then returns the value of the increment operation. The postfix form first returns the current value of the expression and then performs the increment operation on that value.
116. What are synchronized methods and synchronized statements?
     Synchronized methods are methods that are declared with the keyword synchronized. A thread executes a synchronized method only after it has acquired the lock for the method's object or class. Synchronized statements are similar to synchronized methods. It is a block of code declared with synchronized keyword. A synchronized statement can be executed only after a thread has acquired the lock for the object or class referenced in the synchronized statement.
117. How can we create a thread?
     A thread can be created by extending Thread class or by implementing Runnable interface. Then we need to override the method public void run().
118. What is the difference between a switch statement and an if statement?
     If statement is used to select from two alternatives. It uses a boolean expression to decide which alternative should be executed. The expression in if must be a boolean value. The switch statement is used to select from multiple alternatives. The case values must be promoted to an to int value.
119. What is hashCode?
     The hashcode of a Java Object is simply a number (32-bit signed int) that allows an object to be managed by a hash-based data structure. A hashcode should be, equal for equal object (this is mandatory!) , fast to compute based on all or most of the internal state of an object, use all or most of the space of 32-bit integers in a fairly uniform way , and likely to be different even for objects that are very similar. If you are overriding hashCode you need to override equals method also.
120. What is an I/O filter?
      An I/O filter is an object that reads from one stream and writes to another, usually altering the data in some way as it is passed from one stream to another.
121. What is the difference between RandomAccessFile and File?
      The File class contains information the files and directories of the local file system. The RandomAccessFile class contains the methods needed to directly access data contained in any part of a file.
122. What is final ?
     A final is a keyword in java. If final keyword is applied to a variable, then the variable will become a constant. If it applied to method, sub classes cannot override the method. If final keyword is applied to a class we cannot extend from that class.
123. What is the difference among JVM Spec, JVM Implementation, JVM Runtime ?
      The JVM spec is the blueprint for the JVM generated and owned by Sun. The JVM implementation is the actual implementation of the spec by a vendor and the JVM runtime is the actual running instance of a JVM implementation.
124. How is the difference between thread and process?
      A process runs in its own address space. No two processes share their address space. Threads will run in the same address space of the process that owns them.
125. What is the difference between Vector and ArrayList ?
     Vector is synchronized, ArrayList is not. Vector is having a constructor to specify the incremental capacity. But ArrayList don't have. By default Vector grows by 100% but ArrayList grows by 50% only.
126. What is the difference between Hashtable and HashMap ?
     Hashtable is synchronized . but HashMap is not synchronized. Hashtable does not allow null values , but HashMap allows null values.
127. What are the access modifiers available in Java.
     Access modifier specify where a method or attribute can be used. Public is accessible from anywhere. Protected is accessible from the same class and its subclasses. Package/Default are accessible from the same package. Private is only accessible from within the class.
128. Why java is said to be pass-by-value ?
     When assigning an object to a variable, we are actually assigning the memory address of that object to the variable. So the value passed is actually the memory location of the object. This results in object aliasing, meaning you can have many variables referring to the same object on the heap.
129. What do you mean by immutable ? How to create an immutable object ?
     Immutability means an object cannot be modified after it has been initialized. There will not be any setter methods in an immutable class. And normally these classes will be final.
130. What is class loader in java?
     A class loader is a class that is responsible for loading the class. All JVM contains one class loader called primordial class loader.
131. What is a weak reference ?
     A weak reference is the one that does nor prevent the referenced object from being garbage collected. The weak reference will not keep the object that it refers to alive. A weak reference is not counted as a reference in garbage collection. This will make the memory use more effective.
132. What is object cloning?
     It is the process of duplicating an object so that two identical objects will exist in the memory at the same time.
133. What is object pooling?
     Creating a large number of identical short lived objects is called object pooling. This helps to minimize the need of garbage collection and makes the memory use more effective.
134. What is garbage collection?
     Garbage collection is the process of releasing memory used by unreferenced objects. It relieves the programmer from the process of manually releasing the memory used by objects .
135. What is the disadvantage of garbage collection?
     It adds an overhead that can affect performance. Additionally there is no guarantee that the object will be garbage collected.
136. What is a Dictionary?
     Dictionary is a parent class for any class that maps keys to values., In a dictionary every key is associated with at most one value.
137. What is JAR file ?
     JAR stands for Java Archive. This is a file format that enables you to bundle multiple files into a single archive file. A jar file will contains a manifest.mf file inside META-INF folder that describes the version and other features of jar file.
138. Why Java is not fully objective oriented ?
     Due to the use of primitives in java, which are not objects.
139. What is a marker interface ?
      An interface that contains no methods. Eg: Serializable, Cloneable, SingleThreadModel etc. It is used to just mark java classes that support certain capability.
140. What are tag interfaces?
     Tag interface is an alternate name for marker interface.
141. What are the restrictions placed on static method ?
     We cannot override static methods. We cannot access any object variables inside static method. Also the this reference also not available in static methods.
142. What is JVM?
     JVM stands for Java Virtual Machine. It is the run time for java programs. All are java programs are running inside this JVM only. It converts java byte code to OS specific commands. In addition to governing the execution of an applications byte codes, the virtual machine handles related tasks such as managing the system's memory, providing security against malicious code, and managing multiple threads of program execution.
143. What is java byte code?
     Byte code is an sort of intermediate code. The byte code is processed by virtual machine.
144. What is method overloading?
     Method overloading is the process of creating a new method with the same name and different signature.It means argument must be different.
145. What is method overriding?
     Method overriding is the process of giving a new definition for an existing method in its child class. It means argument must be same.
146. What is finalize() ?
     Finalize is a protected method in java. When the garbage collector is executes , it will first call         finalize( ), and on the next garbage-collection it reclaim the objects memory. So finalize( ), gives you the chance to perform some cleanup operation at the time of garbage collection.
147. What is multi-threading?
     Multi-threading is the scenario where more than one threads are running.
148. What is deadlock?
     Deadlock is a situation when two threads are waiting on each other to release a resource. Each thread waiting for a resource which is held by the other waiting thread.
149. What is the difference between Iterator and Enumeration?
     Iterator differ from enumeration in two ways Iterator allow the caller to remove elements from the underlying collection during the iteration with well-defined semantics. And , method names have been improved.
150. What is the Locale class?
     A Locale object represents a specific geographical, political, or cultural region.
Previous  |   1  |   2  |   3  |   4  |   Next  |   Sample JAVA Programs  |   Back to Top
All Rights Reserved : skdotcom technologies