Multiple choice technology architecture

Which of the following is NOT true about ORM Frameworks?

  1. Application can be isolated from the database and the only connection to it is using the ORM framework and a JDBC driver.

  2. ORM Frameworks reduce development times

  3. Manageability of application increases

  4. It is faster than the direct JDBC access.

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

ORM frameworks add a layer of abstraction and translation between application code and SQL, which inherently introduces overhead. Direct JDBC access executes raw SQL without this translation layer, making it faster for performance-critical operations.