Explain the OOPS concept in Realtime Scenarion ? Take example
as CAR.
Please explain indetail ?
No Answer is Posted For this Question
Be the First to Post Answer
What is the difference between Eclipse and MyEclipse?
What is the enumerator of the java collection framework? : java collections
What is the Spring2.5 MVC Navigation flow?
Write a interface "CarOperations" with the following methods void turnOnEngin() void turnOffEngin() void turnOnLigths() void turnOffLights() void turnLeft() void turnRight() void accelerate() void deaccelerate() void putBreaks() void releaseBreaks()
In HashSet duplicates are allowed while adding to the HashSet, but while retreiving the object from HashSet is not shown the duplicate values, WHY ?
How to call the m1() method of Base class in below snippet ? class Base { public void m1() { System.out.println("Base m1 "); } public void m2() { System.out.println("Base m1 "); } } ====================== class Derived extends Base { public void m1() { System.out.println("Derived m1"); } public void m3() { System.out.println("Derived m3"); } public static void main(String[] args) { Base ob=new Derived(); ob.m1(); //System.out.println("Hello World!"+ob.m1()); } }
What are the types of java collections? : java collections
What do you understand by synchronization? Why is it important?
When to use the Collection Classes(HashSet, LinkedHashSet, TreeSet....etc) in real time scenario ?
wnet use DAO design in u r project?
How to implement or use the singleton class in java?
what are callback methods?