Java Foundations — Question 24
Identify three features of the Java programming language.
Answer options
- A. distributed
- B. direct memory management
- C. multithreaded
- D. strongly typed
- E. dynamically typed
Correct answer: A, C, D
Explanation
Java is known for its distributed nature, allowing programs to run on multiple computers, and it supports multithreading, enabling concurrent execution of tasks. Additionally, Java is strongly typed, which means that data types are enforced at compile time, whereas direct memory management and dynamic typing do not apply to Java.