Multiple choice general knowledge science & technology

Which of the following is not supported by Java

  1. Security

  2. Portability

  3. Multiple Inheritance

  4. Multi Level Inheritance

Reveal answer Fill a bubble to check yourself
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.