What are the different types of multitasking?
No Answer is Posted For this Question
Be the First to Post Answer
Does unicode support all languages?
What is singleton math?
Is arraylist dynamic in java?
we cannot create an object of interface but we can create a variable of it
What are memory tables?
use of wrapper classes?
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 a war file?
How we can skip finally block of exception even if some exception occurs in the exception block in java?
what is synchronization
Can we declare register variable as global?
How to create an instance of a class without using "new" operator? Plz help me out properly.Thank u.