How do you remove spaces in java?
what are synchronized methods and synchronized statements? : Java thread
write java code to print second max number in the array
What's a method in programming?
What are constants?
can we Connect Applet to Data Base ? with Discriptiom. and also What is Diff. from Applet & Servlet?
There are three interfaces A,B & C. A extends B, B extends C, and C extends A.Is it multiple Inheritance? please anybody help me.....
How a string is stored in memory?
How to reduce flicking in animation?
How java uses the string and stringbuffer classes?
abstract class Demo { public void show() { System.out.println("Hello I am In show method of Abstract class"); } } class Sample extends Demo { public void show() { super.show(); System.out.println("Hello I am In Sample "); } } public class Test { public static void main(String[] args) { //I WANT TO CALL THE METHOD OF BASE CLASS IT IS POSSIBLE OR NOT CAN WE USE SCOPE RESOLUTION OPERATOR TO CALL OR JAVA NOT SUPPORTED THAT :: OPERATORE } }
How do you use final keywords and final variables in Java?
What is exception handling in java?