S
Q. What will be the output of following java code?
public class Test{ static int i = 5; public static void main(String... args){ System.out.println(i++); System.out.println(i); System.out.println(++i); System.out.println(++i+i++); } }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which of the following statements are incorrect?
Q. Which of these method of httpd class is used to get report on each hit to HTTP server?
Q. Which of these keywords is not a part of exception handling?.
Q. Which of those isn’t an interface within the Collections Framework?
Q. What is maximum lines of code that can be written inside a Java style IF, ELSE or IF-ELSE block?
Discusssion
Login to discuss.