1 Contact con = new Contact( LastName ='Smith', Department = 'Admin')
2 insert con;
3 Contact insertedContact=[select Name from Contact where id=:con.Id];
4 Savepoint sp_admin = Database.setSavepoint();
5 con.Department = 'HR';
6 update con;
7 Database.rollback(sp_admin);
8 System.debug(Limits.getDmlStatements());
Given the following code, what value will be output in the logs by line #8?
Liquad
Highly Voted 1 year, 12 months agosanto_aj
Most Recent 2 months, 4 weeks agolorenac2
7 months, 3 weeks agodrwebber
1 year, 8 months ago