Realm Database Quiz

It is local database for smartphone apps. Realm database is a mobile platform and a replacement for SQLite & Core Data. Test your knowledge about Realm databases.


@firojmahmud #Beginner 10 questions  

Stats

  • Average Time    3 minutes
  • Average Points 12 pts
  • Views       569
  • Featured No
  • Takers         105
  • Completed 71

Video based Quiz

Please watch the video and try to memorize the concepts before attempting the Quiz.

Notes for Quiz

  • Realm is based on ORM model.
  • Core Data has a massive learning curve compared to Realm.
  • Data doesn't copy from disk rather uses memory mapping to actually link properly straight to the data disk.
  • Modifying Realm model objects must be done inside a write transaction.
  • All Realm objects are thread-confined.
  • An exception will be called if trying to access an object across threads.
  • A best practice is to re-fetch the same Realm object on the new thread.
  • During the schema migration an exception will be thrown if a Realm model object and a Realm object mismatch is detected.
  • A Realm configuration object allows the supplying of a block that will be called to migrate existing data to a new schema.

Loading Please Wait...