venkat kanneganti


{ City } banglore
< Country > india
* Profession * sr developer
User No # 9574
Total Questions Posted # 0
Total Answers Posted # 5

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 49
Users Marked my Answers as Wrong # 3
Questions / { venkat kanneganti }
Questions Answers Category Views Company eMail




Answers / { venkat kanneganti }

Question { 5047 }

What will happens if you opened Internet Explorer 4 times?


Answer

four new clients are created,for each client new session is
created

Is This Answer Correct ?    14 Yes 0 No

Question { 4268 }

Are nested try statements are possible?


Answer

yes,nested try statements are possible,nothing wrong
try {
//some code
try {
//some code
}
catch(Exception e){
}
}
catch(Exception e) {
}

Is This Answer Correct ?    2 Yes 0 No


Question { 7226 }

what is the form of storage space in java?


Answer

for objects Head that is garbage collectable,
for methods,local variables are stored in stack.

Is This Answer Correct ?    9 Yes 0 No

Question { SolutionNET, 4768 }

whats is mean by tiles in struts


Answer

Tiles is view frame work,that enable us for easy generation of
views.
generally view contains header,body,footer.
for most of views header,footer are common,we can design
them separately,and we insert them in view by using tiles tags.
if we want to change footer and header of view ,we don't
need to change in each and every page,this is advantage of tiles

Is This Answer Correct ?    4 Yes 0 No

Question { Accenture, 13725 }

In Inheritence concept, i have a static method in super
class and i am inheriting that class to one sub class.in
that case the static method is inherited to sub class or
not????


Answer

Hi,static methods are methods are inherited.
example
class A {
static void methA() {
System.out.println("inside methA");
}
}
class B extends A {
public static void main(String[] args){
B.methA();
}
}
output:inside methA

Is This Answer Correct ?    20 Yes 3 No