Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search Coderanch
Advance search
Google search
Register / Login
Help coderanch get a
new server
by contributing to the
fundraiser
Deepa Neela
Greenhorn
+ Follow
news
6
Posts
2
Threads
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
Can you please explain how output is 0 0 3 0
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);
}
}
}
show more
16 years ago
Beginning Java
Collective Intelligence
Hi Satnam Alag,
How is Collective Intelligence different from Artificial Intelligence.
Thank you,
Deepa
show more
16 years ago
Java in General
interface implements interface?
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.
show more
16 years ago
Beginning Java
logic needed
http://www.leepoint.net/notes-java/examples/components/romanNumerals/romanNumeral.html
check out if this can help you
show more
16 years ago
Beginning Java
Can't get my simple bean to work!
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
show more
16 years ago
Beginning Java
Can't get my simple bean to work!
I got it working, and I did not get any nosuchmethod error.
show more
16 years ago
Beginning Java