DS0-001 · Question #101
Which of the following are ORM tools? (Choose two.)
The correct answer is C. Entity Framework E. Hibernate. Entity Framework (C) and Hibernate (E) are ORM (Object-Relational Mapping) tools because they both map database tables to objects in code - Entity Framework for .NET/C# and Hibernate for Java - letting developers interact with databases using their native language instead of raw
Question
Which of the following are ORM tools? (Choose two.)
Options
- APLSQL
- BXML
- CEntity Framework
- DT-SQL
- EHibernate
- FPHP
How the community answered
(41 responses)- B2% (1)
- C88% (36)
- D7% (3)
- F2% (1)
Explanation
Entity Framework (C) and Hibernate (E) are ORM (Object-Relational Mapping) tools because they both map database tables to objects in code - Entity Framework for .NET/C# and Hibernate for Java - letting developers interact with databases using their native language instead of raw SQL.
The distractors are all languages or data formats, not ORM frameworks: PLSQL (A) and T-SQL (D) are database query languages (Oracle and Microsoft SQL Server respectively), XML (B) is a data serialization format, and PHP (F) is a server-side scripting language.
Memory tip: ORM tools have framework-like names (Entity Framework, Hibernate) - they "frame" or "hibernate" the complexity of database access. If the answer looks like a language or format acronym (SQL, XML, PHP), it's not an ORM.
Topics
Community Discussion
No community discussion yet for this question.