Explain numeric promotion?
No Answer is Posted For this Question
Be the First to Post Answer
How many types of methods are there in java?
What is Session and cookies?Explain in detail with an example?
Hi ,i convert contrller as jSp And presentation as servlet ...will it do? if so what are advantage and idsadvantages
Explain about the main() method in java?
Can we extend immutable class?
what is class.forname() and how it will be useful ?
Why are the objects immutable in java?
hi to all,i have a question on static block. i saved below as test.java class test extends a { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p as static test static but if i change base class as test class then class test { static { System.out.println("test static"); } public static void main(String []dfs) { } } class a extends test { static { System.out.println("a static"); } public static void main(String []asdf) { } } o/p test static explain me why "a static" wasn't print in second code when it is in derived class
What is difference between Iterator and for loop
Justify your answer that you can't define a method inside another method in java, if you can then how?
explain the difference between jdk and jvm?
What are three types of loops in java?