I read following lines of code on msdn but I am not clear with this and want to simulate.
Nonrepeatable reads occur when a second transaction accesses the same row several times and reads different data every time. This involves multiple reads of the same row. Every time, the information is changed by another transaction.
I didn't understand how second transaction can access the data if row is locked by first transaction under read committed isolation level.