sai


{ City } bangalore
< Country > india
* Profession * se
User No # 61165
Total Questions Posted # 3
Total Answers Posted # 5

Total Answers Posted for My Questions # 1
Total Views for My Questions # 6986

Users Marked my Answers as Correct # 32
Users Marked my Answers as Wrong # 3
Questions / { sai }
Questions Answers Category Views Company eMail

what are the boundaries of jdk and jre?

CoreObjects,

Core Java 1552

Iam getting xml when we click on one button.Iam placing that xml in dom.Im getting that xml data in one xsl.In that xsl I want to increase the variable value which is declared in xsl. Ex: ffftt eeeeiii uuuuwww fff eeee uuuu

JavaScript 1686

How to Sort Strings which are given in List and display in ascending order without using java api.

LIC,

1 Core Java 3748




Answers / { sai }

Question { 8131 }

What modifiers are used for interface declaration?


Answer

Public,Abstract

Is This Answer Correct ?    1 Yes 0 No

Question { TCS, 24714 }

who will run the execute method in struts?


Answer

Request Processor will run the execute() in struts.

Is This Answer Correct ?    5 Yes 0 No


Question { Idea, 10598 }

how many JDBC drivers ?name them?


Answer

4 Types of drivers are there
Type 1 : JDBC-ODBC Bridge Driver(Thick Driver)
Type 2: Native API Partly Java Driver
Type 3: Network protocol Driver-
Type 4: JDBC Net pure Java Driver(Thin Driver)

Is This Answer Correct ?    8 Yes 0 No

Question { 15558 }

which of tha following is not a thread safe class?
a) ArrayList b)Vector c)HashTable d)None


Answer

ArrayList is not Thread Safe Class.Because it is not
Synchronized.

Is This Answer Correct ?    1 Yes 0 No

Question { IBM, 4744 }

What is an anonymous class?


Answer

An anonymous class is a local class without a name. An
anonymous class is defined and instantiated in a single
succinct expression using the new operator.

Example:
class popcorn{
public void eat(){
syso("popcorn is sweet");
}
public void m1(){
syso("popcorm method");
}
class sample{
public static void main(String args[]){
popcorn p = new popcorn(){
public void eat(){
syso("popcorn is so hot");
}
};
p.eat();
p.m1();
}
}

Is This Answer Correct ?    17 Yes 3 No