What are facelets templates?
No Answer is Posted For this Question
Be the First to Post Answer
What are Access Specifiers and Access Modifiers.
Explain creating threads by extending thread class ?
For technical interview question please sir send me because tomorrow my interview
what is platform independence in java?
Give us a program to check for parenthesis matching using stack.
What about member inner classes?
How can you avoid serialization in child class if the base class is implementing the serializable interface?
Is break statement can be used as labels in java?
What all access modifiers are allowed for top class ?
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 are the differences between java and .net?..why u choose java?
What methods are used to get and set the text label displayed by a button object?