Multiple choice general knowledge science & technology

some difficult concepts like pointers are removed in Java ?

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Java removes direct pointer manipulation and pointer arithmetic from C, as memory management is handled by the JVM. Concepts like pointers, dereferencing operators (*, &), and manual memory allocation (malloc, free) don't exist in Java, reducing complexity and common memory-related errors.