tamilvanan


{ City } chennai
< Country > india
* Profession * software trainee
User No # 12529
Total Questions Posted # 2
Total Answers Posted # 4

Total Answers Posted for My Questions # 11
Total Views for My Questions # 23034

Users Marked my Answers as Correct # 55
Users Marked my Answers as Wrong # 1
Questions / { tamilvanan }
Questions Answers Category Views Company eMail

how to change column into row in sql

ESS,

4 SQL Server 13421

what is the difference between ServletContext and ServletConfig

7 Servlets 9613




Answers / { tamilvanan }

Question { TCS, 17647 }

Driver manager is a class/interface.


Answer

DriverManager is a class that present in java.sql package
which is used to connect the our application with database.
that is DriverManager containing getConnection() method
that return Connection object

Is This Answer Correct ?    9 Yes 1 No

Question { IBM, 6811 }

what is difference between method overloading & method
overridding with example?


Answer

overloading:
method overloading means method name is same and different
parameter ie different signature.. and overloading method
are present in same class
for eg ,
let us consider show() is a method
1.show(int a)
2.show(int a,int b)
overriding:
method overriding means method name is same and
parameter also same. these are present in different levels
of class
for eg,
let us consider show() is a method
1.show(int a)
2.show(int a)

Is This Answer Correct ?    34 Yes 0 No


Question { CSS, 4814 }

how to handle exceptions in core applications?


Answer

in core java, we can handle the exception by the following
key words
1.try
2.catch
3.finally
4.throws(it throws only predefined exception)
5.throw(it throw both predefined and userdefined exception)

Is This Answer Correct ?    9 Yes 0 No

Question { 5854 }

What is Servlet?


Answer

Servlet:
simply say,Servlet is a serverside java code ... it is
mainly used to write business logic
there are two types of servlet


1.Generic Servlet
2.HttpServlet

Is This Answer Correct ?    3 Yes 0 No