anita dhar

Ranch Hand
+ Follow
since Jul 14, 2007
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by anita dhar

THANKS ,YOUR INFORMATION IS USEFUL AND YOU SUGGEST ME TO GO FOR SOME DOCUMENTAION CAN YOU SUGGEST ME ANY LINK WHICH WILL EXPLAIN ME PROPER FLOW WHERE TO GO
17 years ago
hello ranchers

i am new to struts , can any one tell me flow of struts application
example
login page
when user submits values , the jsp/servlet container receives the request and look into the web.xml for the servlet and url pattern once it will get after that how the flow goes on

thanks in advance
17 years ago
Hi Ranchers,
Can any one suggest me some links where i cant get objective questions on j2ee which is asking during the written test in the companies during the interview
thanks in advance
17 years ago
Hi ,
I am having some elements in a collection framework , i want to copy all these elemnts in another collection what is the method for it ? This questions asked me during my interview

Thanks in advance
17 years ago
Hi,
can any one explain me life cycle of HTTP Servlet? what is the main use of get method (expect url visiblity and limited information )
thanks in advance
17 years ago
I have forgot programming concept of java . Can any one suggest me some site which will help me in small progrms logic like prime number , even number , odd numbers , factorail etc
thanks in advance
17 years ago
Hi All Ranchers,
Can any one explain me this Session Tracking with URL Rewriting .I am not able to understand properly
If it possible can any one expalin with example .

Thanks in advance
anita dhar
17 years ago
can anyone please explain me why the output is 3.And x-- should be 0.since it changes to 1 only in next place of x right ,as it is a post increment..Am i right ...Please explain this.

public class sample12 {

static{
int x=5;
}
static int x,y;

public static void main(String[] args) {

x--;
myMethod();
System.out.println(x+y + ++x);

}
public static void myMethod(){
y=x++ + ++x;
}
}
Hi Ranchers ,
this question id from k&b from threads self test
can any one explain me this programm i am not able to understand

public class Messager implements Runnable
{
public static void main(String[] args)
{
new Thread(new Messager("wallace")).start();
new Thread(new Messager("gromit")).start();
}
private String name;
public Messager(String name)
{
this.name=name;
}
public void run()
{
message(1);
message(2);
}
private synchronized void message(int n)
{
System.out.print(name + "-" + n + " ");
}
}
hi ranchers ,
Please help me in the path relating doubt

/ (rrot)
|
|-- dirA
|
|-- dirB
|
|-- dirC

i am confused with relative path
Hi Dhivya,

you can go any prometric centre where they are conducting test .
In bangalore , niit , sql star is conducting this test .
First check what is the validatity date of this voucher then according that way plan it .
o/p of this programm is 0
can any one explain the flow of this programme

public class Myclass
{
private static int x = getValue();
private static int y = 5;
private static int getValue()
{
return y;
}
public static void main(String[] args)
{
System.out.println(x);
}
}
can any one give me interviews questions link on oracle reports 9i
17 years ago
what will be the o/p of this prg
public class Test {
public static void main(String[] args) {
int j = 10;
j <<= 2;
j = (j - 1) >>> 3;

System.out.println("j = " + j);
}
}