Question: Name the containers which uses
Border Layout as their default layout?
Answer: Containers which uses Border Layout as their default are:
window, Frame and Dialog classes.
Question: What do you understand by
Synchronization?
Answer: Synchronization is a process of controlling the access of
shared resources by the multiple threads in such a manner that only one
thread can access one resource at a time. In non synchronized multithreaded
application, it is possible for one thread to modify a shared object while
another thread is in the process of using or updating the object's value.
Synchronization prevents such type of data corruption.
E.g. Synchronizing a function:
public synchronized void Method1 () {
// Appropriate method-related code.
}
E.g. Synchronizing a block of code inside a function:
public myFunction (){
synchronized (this) {
//
Synchronized code here.
}
}
Question: What is Collection API?
Answer: The Collection API is a set of classes and interfaces that
support operation on collections of objects. These classes and interfaces
are more flexible, more powerful, and more regular than the vectors, arrays,
and hashtables if effectively replaces.
Example of classes: HashSet, HashMap, ArrayList,
LinkedList, TreeSet and TreeMap.
Example of interfaces: Collection, Set, List
and Map.
Question: Is Iterator a Class or Interface?
What is its use?
Answer: Iterator is an interface which is used to step through the
elements of a Collection.
Question: What is similarities/difference
between an Abstract class and Interface?
Answer: Differences are as follows:
Similarities:
Question: How to define an Interface?
Answer: In Java Interface defines the methods but does not implement
them. Interface can include constants. A class that implements the
interfaces is bound to implement all the methods defined in Interface.
Emaple of Interface:
public interface sampleInterface {
public void functionOne();
public long CONSTANT_ONE = 1000;
}
Question: Explain the user defined
Exceptions?
Answer: User defined Exceptions are the separate Exception classes
defined by the user for specific purposed. An user defined can created by
simply sub-classing it to the Exception class. This allows custom exceptions
to be generated (using throw) and caught in the same way as normal
exceptions.
Example:
class myCustomException extends Exception {
// The class simply has to exist to be an exception
}
Question: Explain the new Features of JDBC
2.0 Core API?
Answer: The JDBC 2.0 API includes the complete JDBC API, which
includes both core and Optional Package API, and provides inductrial-strength
database computing capabilities.
New Features in JDBC 2.0 Core API:
Question: Explain garbage collection?
Answer: Garbage collection is one of the most important feature of
Java. Garbage collection is also called automatic memory management as JVM automatically
removes the unused variables/objects (value is null) from the memory. User
program cann't directly free the object from memory, instead it is the job
of the garbage collector to automatically free the objects that are no
longer referenced by a program. Every class inherits finalize()
method from java.lang.Object, the finalize() method is called by
garbage collector when it determines no more references to the object
exists. In Java, it is good idea to explicitly assign null into a
variable when no more in use. I Java on calling System.gc() and Runtime.gc(),
JVM tries to recycle the unused objects, but there is no guarantee when all
the objects will garbage collected.
Question: How you can force the garbage
collection?
Answer: Garbage collection automatic process and can't be forced.
Question: What is OOPS?
Answer: OOP is the common abbreviation for Object-Oriented Programming.
Question: Describe the principles of OOPS.
Answer: There are three main principals of oops which are called Polymorphism, Inheritance and Encapsulation.
Question: Explain the Encapsulation principle.
Answer: Encapsulation is a process of binding or wrapping the data and the codes that operates on the data into a single entity. This keeps the data safe from outside interface and misuse. One way to think about encapsulation is as a protective wrapper that prevents code and data from being arbitrarily accessed by other code defined outside the wrapper.
Question: Explain the Inheritance principle.
Answer: Inheritance is the process by which one object acquires the properties of another object.
Question: Explain the Polymorphism principle.
Answer: The meaning of Polymorphism is something like one name many forms. Polymorphism enables one entity to be used as as general category for different types of actions. The specific action is determined by the exact nature of the situation. The concept of polymorphism can be explained as "one interface, multiple methods".
Question: Explain the different forms of Polymorphism.
Answer:
From a practical programming viewpoint, polymorphism exists in three distinct forms in Java:
Question: What are Access Specifiers available in Java?
Answer:
Access specifiers are keywords that determines the type of access to the member of a class. These are:
Question: Describe the wrapper classes in Java. Following table lists the primitive types and the corresponding
wrapper classes:
Answer: Wrapper class is wrapper around a primitive data type. An instance of a wrapper class contains, or wraps, a primitive value of the corresponding type.
Primitive
Wrapper
boolean
java.lang.Boolean
byte
java.lang.Byte
char
java.lang.Character
double
java.lang.Double
float
java.lang.Float
int
java.lang.Integer
long
java.lang.Long
short
java.lang.Short
void
java.lang.Void
Question: Read the following program: public class test { What is the result? Question: What is the difference between the instanceof and getclass,
these two are same or not ?
Recommend the tutorial
public static void main(String [] args) {
int x = 3;
int y = 1;
if (x = y)
System.out.println("Not equal");
else
System.out.println("Equal");
}
}
A. The output is ?Equal?
B. The output in ?Not Equal?
C. An error at " if (x = y)" causes compilation to fall.
D. The program executes but no output is show on console.
Answer: C
Question: what is the class variables ?
Answer: When we create a number of objects of the same class, then each object will share a common copy of variables. That means that there is only one copy per class, no matter how many objects are created from it. Class variables or static variables are declared with the static keyword in a class, but mind it that it should be declared outside outside a class. These variables are stored in static memory. Class variables are mostly used for constants, variable that never change its initial value. Static variables are always called by the class name. This variable is created when the program starts i.e. it is created before the instance is created of class by using new operator and gets destroyed when the programs stops. The scope of the class variable is same a instance variable. The class variable can be defined anywhere at class level with the keyword static. It initial value is same as instance variable. When the class variable is defined as int then it's initial value is by default zero, when declared boolean its default value is false and null for object references. Class variables are associated with the class, rather than with any object.
Answer: instanceof is a operator, not a function while getClass is a method of java.lang.Object class. Consider a condition where we use
if(o.getClass().getName().equals("java.lang.Math")){ }
This method only checks if the classname we have passed is equal to java.lang.Math. The class java.lang.Math is loaded by the bootstrap ClassLoader. This class is an abstract class.This class loader is responsible for loading classes. Every Class object contains a reference to the ClassLoader that defines. getClass() method returns the runtime class of an object. It fetches the java instance of the given fully qualified type name. The code we have written is not necessary, because we should not compare getClass.getName(). The reason behind it is that if the two different class loaders load the same class but for the JVM, it will consider both classes as different classes so, we can't compare their names. It can only gives the implementing class but can't compare a interface, but instanceof operator can.
The instanceof operator compares an object to a specified type. We can use it to test if an object is an instance of a class, an instance of a subclass, or an instance of a class that implements a particular interface. We should try to use instanceof operator in place of getClass() method. Remember instanceof opeator and getClass are not same. Try this example, it will help you to better understand the difference between the two.
Interface one{
}
Class Two implements one {
}
Class Three implements one {
}
public class Test {
public static void main(String args[]) {
one test1 = new Two();
one test2 = new Three();
System.out.println(test1 instanceof one); //true
System.out.println(test2 instanceof one); //true
System.out.println(Test.getClass().equals(test2.getClass())); //false
}
}

May 5, 2011
Javascipat
can i use java script in servlet

May 5, 2011
Java
can i use java script in servlet

May 26, 2011
java.net package
i want chat implemented by using core java, java.net package in single tier

May 30, 2011
java
it is useful in our careers it is well good

May 31, 2011
All concepts in core java
could you please send me the all concepts in core java?
waiting for reply.
regards,
Parivallal.S

June 1, 2011
Java JDBC
I request to Explain Java with easy programs Each & every topics with real time Examples....For Example if we take Garbage collection first u mention some matter about it & a easy understandable program...So for Every Concepts of java U give neat programs to understand.

June 8, 2011
core java
Ok its good for this stage to freshers...to learn something about something about java...

June 12, 2011
overloading
method overloading means when a method in a class having same method name and different arguemennts is said to be method overloading

June 21, 2011
interview question
sir,
i am surya narayan tiwari and i have complted my mca 2009 in uptu lucknow i want to some interview question paper j2ee

June 27, 2011
send me java interview que in ma mail id
very good site for view java que

July 4, 2011
java
According my opinion JAVA LANGUAGE is not superset of c/c++.
but C++ IS A superset of c language.

July 6, 2011
oops
what is inheritence?

July 18, 2011
corejava
interve questions

July 19, 2011
java
I want to share these type of java questions.

August 19, 2011
java
i need many help in java

August 20, 2011
java
encapsulation is class or interface or keyword..
plese define it..

August 27, 2011
sfdf
this is good

August 29, 2011
java
13.Difference between JRE/JVM/JDK?

September 1, 2011
plz send java interview qns & ans to my mail
plz send java interview qns & ans to my mail

June 5, 2013
How to define an Abstract class
your answer is not correct. An abstract class is defined with abstract modifier. An abstract class can contains no abstract method.
And ofcourse, an abstract class can not be instantiated. There are some other consequences...

September 3, 2011
core java
hi

September 8, 2011
JAVA
good

September 15, 2011
question
what is the deligate/deligation object?

September 18, 2011
java
plz provide me interview questions for java

September 26, 2011
java
good

October 3, 2011
java and J2EE
i want all Object type question of java and J2EE question with answer, as well as interview question with answer.

October 8, 2011
java
wat is mean by serialize

October 11, 2011
core java and c intervie questions
i like this

January 30, 2013
java
.net to java por

November 1, 2011
JAVA,CORE JAVA,ADV JAVA
INFO IS VERY NICE

November 14, 2011
core java interview question
please send me interview question

November 18, 2011
core java
interview question

November 18, 2011
core java
online Interview conduct.

November 28, 2011
java
not comment

November 29, 2011
thread(java)
how work Synchronization in java?

November 30, 2011
java core and JAVA2EE,and .net
i want to saved programme

December 16, 2011
good code...
please send compareToString() method with example...

December 19, 2011
Thank you
Thank you for helping freshers.
It helps me a lot.
Keep it up.:D

January 2, 2012
Indirection in case of abstract class vs interface
abstract class vs interface you have mentioned that abstract classes are fast - i highly doubt the fact.
whenever any instance is created in - java depends on double indirection both in cases of interface and abstract classes - any others, have any comments on this.

January 16, 2012
core java
i want interview questions in core java

January 30, 2012
java
difference between procedure and object oriented language?

February 13, 2012
Complet Java
technical interview question in mca level...

February 27, 2012
core java
why we will use of nextInt();
and what we will write for character???

March 1, 2012
Core Java
its oosom, do something more abt it

March 2, 2012
Java
there is only three access specifiers
pubic , private , protected
there is no such thing like default

March 16, 2012
java & c,c++
plese help me

March 17, 2012
about java simple program
very helpfull for us..............
now wr are studing in oxford university ...........
thankss..............

April 22, 2012
core java
i wana improve the core java

April 17, 2012
java question
Does interface includes interface?

April 29, 2012
java
what is the super class for collectionframework

April 30, 2012
Core java
This is v.useful to understand some basic concepts of core java...i like it!!!

May 11, 2012
array in java program
I want your help to solve this program by java:
1. WAP in Java( Only one Program) that can do the following operations:-
a. Read the Internal Mark/50 & Final Exam Mark/50 from the user into an array.
b. Check & Display the Highest mark from the array.
c. Calculate & Display the Result of the student by passing the array into a method( the method must return the result).
d. Result is ‘P’ if the Total Mark is above 50 otherwise the result is ‘F’.
e. Add suitable

May 12, 2012
Core java
Today I read this information about core java on net and i get realy impressed the information available here realy very valuable and easly understandable. Thanks for this information

May 10, 2012
java interview quetions
these are java interview quetions.

May 24, 2012
instrumentatiomn
nice skil this kind jobuchls i like so m

May 30, 2012
java core
please give important question of core java

June 16, 2012
java
what is byte code?

July 8, 2012
j2se(core java)
please give the imporant question asked in the software companies such as tcs ,wipro,infosys e.t.c latest type question as give in the above e_mail id.

July 9, 2012
hello sir good ques..but not enouph
good

July 16, 2012
c++
your question should be top level and good questions.

July 21, 2012
Java Business and scope
what is most popular language today java or .net plz give me correct view.and what are their future scope

July 24, 2012
jse,j2ee
explain inheritance

July 28, 2012
core java
why the core java we learn . hows the useful for life??

July 28, 2012
core java
questions are very theritical

August 1, 2012
as i need of some qus
model interview qustion & ans

August 13, 2012
about the questions......
this questions are useful for interview preparation.thank you very much....

August 14, 2012
question
what is concurrent class in java

August 30, 2012
coreljava
subjest class arrange me must

August 30, 2012
hiii
can u provide interview questions on applet and why applets wont use main method.

September 2, 2012
core java
very usefull on preparing for interviews and so for increase my confident level

September 11, 2012
Questions
Good Questions provided

October 24, 2012
java
i want to java interview quastion
then i want to read more quadtion

September 25, 2011
CorejavaQ
very good and plz provide with daigramatically
thanki you sir

December 8, 2011
interview question
java

January 18, 2012
Get interview Questions
dear sir,
i want to get a new interview questions in j2se in java

February 29, 2012
Core java Questions
What is the use of clone?
Why we use cloning define with example?
Where we implements the cloning.
Ask Questions? Discuss: Core Java Interview Questions! View All Comments
Post your Comment