Which of the following is not supported by Java
-
Security
-
Portability
-
Multiple Inheritance
-
Multi Level Inheritance
C
Correct answer
Explanation
Java does not support multiple inheritance of classes to avoid complexity and the diamond problem. It does support multi-level inheritance (inheritance chain) and single inheritance. Java emphasizes security through its sandbox model and bytecode verification, and portability through its JVM architecture.