Core Java (6529)
Advanced Java (552)
Swing (223)
EJB (402)
Java Networking (49)
Hibernate (1009)
Spring Framework (1486)
Java J2EE AllOther (116) all are saying java doesn't support multiple inheritance but by default Object class is super class for all the user defined classes and we can extend atmost one class so each class can extend more than one class so java supports multiple inheritance?i am confused with this,pls any one explain me.
CFG,
8 9344what are the gbx,gdb and other tools in linux for core dump,and how to configure stdout,stderr..what is the difference between stdout ,stderr and coredump. how to create core dump and view that one? please can anybody explain me?
4716Weblogic admin don't know the admin credentials of weblogic 8.1 UI..how can he get the credentials?
IBM,
2 13503hi 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
1 3600class test { private static void main(String []adsf) { } } explain me that the above code is error or exception
3 5535class a extends b { } class b extends a { } why java doesn't support cyclic pls explain me with example
3 9922
What is public/private protected in java?
What is spring java based configuration?
J2ee is a container centric architecture. Explain.
What is package private scope in java?
What is the different between get and post?
How an object is serialized in java?
Can we able to pass objects as an arguments in java?
What is finalize() function in java?
Why we should not make entity class final?
What is the use of spring data?
Does spring boot need web xml? : Spring Boot
How many functional interfaces does java 8 have?
What is database deadlock ?
Explain what is encapsulation?
What is the preferred size of a component in java?