A circular linked list in Java
I was helping a friend of mine with her work today, and we came across with a requirement that there are few players in the room we need to know [...]
I was helping a friend of mine with her work today, and we came across with a requirement that there are few players in the room we need to know [...]
Today we are going to look at reading files in Java and how to do the same thing in Scala.
This is normally how we read files in Java.First we open [...]
JSON is one of the most popular message exchange format nowadays used in web application.Most of the time,we used JSON as a communication message format between Javascript and Server side [...]
Let’s write a legendary “Hello world” program in both Java and Scala language.
This is how we do in Java.
public class Hello {
public static void main(String[] args) {
System.out.println("Hello world");
}
}
and [...]
Recent Comments