Help coderanch get a
new server
by contributing to the fundraiser

Deepa Neela

Greenhorn
+ Follow
since May 01, 2008
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Deepa Neela

class test1 {

public static void main(String[] args) {
int[] arr = { 1, 2, 3, 4 };

for (int i : arr) {
arr[i] = 0;

}

for (int i : arr) {
System.out.println(i);
}
}

}
16 years ago
Hi Satnam Alag,

How is Collective Intelligence different from Artificial Intelligence.

Thank you,
Deepa
16 years ago
interface extends another interface but not implements it, because interface will not contain the implementation (you cannot provide implementation in the interface). So you can just extend it but not implement it.
16 years ago
Inside the tomcat directory,

tomcat>work>Catalina>localhost

delete (localhost) folder and shutdown the tomcat,then start it again and try running your application.

This might help sometimes
16 years ago
I got it working, and I did not get any nosuchmethod error.
16 years ago