Abhishek Boppudi

Greenhorn
+ Follow
since Jun 11, 2013
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Abhishek Boppudi

Thank you William Brogden && Bear Bibeault....
Go it ... I've written doPOST() instead of doPost().
10 years ago
I am a novice.I had written a small program.

index.html


Sample1.java File


web.xml



I'm Getting a "HTTP Status 405 - HTTP method POST is not supported by this URL" message. I also added to web.xml
Can you explain me where did i went wrong ?
10 years ago
Can anyone, please explain me Types.DOUBLE and Types.DECIMAL etc.. in java.sql package.I'm a novice please help me out.
And other question is " Why we are writing interfaces even though they doesn't contain methods ?" Are they only for imposing implementation on classes ?
<p>Got it Thank you Ramesh and Jasper </p>
10 years ago
can you please explain when the loop is breaking
10 years ago
Help me to understand this code....
class Try
{
public static void main(String[] args)
{
int i = 10;
while (i++ <= 10) {
i++;
}
System.out.print(i);
}
}

Result is 13

I can't Understand why it is 13..
10 years ago

I have a doubt that static methods cannot be overridden but how this code works ???
Can any One Explain ?
10 years ago