Multiple choice technology web technology How can you make a property be read from the database but not modified in anyway By using the insert="false" and update="false" attributes. By using the isinsert="false" and isupdate="false" attributes By using the isinsert="no" and isupdate="no" attributes None Reveal answer Fill a bubble to check yourself A Correct answer Explanation In Hibernate mappings, setting insert='false' and update='false' makes a property read-only - it will be retrieved from the database but never included in INSERT or UPDATE statements. The attribute names in options B and C are incorrect.