int x=5,i=1,y=0;
while(i<=5)
{
y=x++ + ++x;
i=i+2;
}
System.out.println(x);
System.out.println(y);
System.out.println(i);
How to solve this? Please explain!
What is a session? Can you share a session object between different theads?
In a multitiered application which tier is the browser in?
Can we sent objects using Sockets?
What exceptions are thrown by RMI?
what is the port number of RMI?
What is threadfactory?
How do u supress the parameters from the displaying in the url?
What is metaspace?
what is container?
Difference between loadclass and class.forname?
Are we allowed to change the transaction isolation property in middle of a transaction?
In connection pool,when 100 clients are requesting, in pool 100 objects is there, when another client is making request how it will work