How do I find jre path in windows?
No Answer is Posted For this Question
Be the First to Post Answer
what is class/object diagram
How to implement or use the singleton class in java?
What is need of DAO? Write one simple DAO example?
What is a constructor?
Should we create system software ( e.g operating system ) in java ?
What are the interfaces in java collections? : java collections
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()); } }
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()
lll
What is iterator in the java collections framework? : java collections
What are the queues in the java collection framework? : java collections
who should use JNDI?