kapil pahuja


{ City } bangalore
< Country > india
* Profession * s/w developer
User No # 81007
Total Questions Posted # 1
Total Answers Posted # 3

Total Answers Posted for My Questions # 3
Total Views for My Questions # 12751

Users Marked my Answers as Correct # 23
Users Marked my Answers as Wrong # 10
Questions / { kapil pahuja }
Questions Answers Category Views Company eMail

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 } }

3 Core Java 12751




Answers / { kapil pahuja }

Question { Vimukti Technologies, 5878 }

can we override the main() method in java????


Answer

yes we can override the main method but different argument
bcz jvm always look for String[] args argument

Is This Answer Correct ?    2 Yes 3 No

Question { IBM, 3206 }

what are the steps in JDBC connectivity..???


Answer

1.Load the Driver
2.Create Connection
3.Use Statement,PreparedStatement,CallableStatement for the
Querry
4.Use ResultSet to print the data...

Is This Answer Correct ?    12 Yes 1 No


Question { CTS, 8111 }

what is struts? why Struts?


Answer

Struts is a Framework,Struts bcz it help us to make a good
MVC Model .

Is This Answer Correct ?    9 Yes 6 No