Isolation levels are an abstraction of how to provide a transparent way of simultaneous access and change of data in a database. If your database is capable of isolation, different scenarios can't lead to an inconsistent state.
Example: Imagine a database for bank accounts. To keep it simple, just imagine a table with two rows, a account number and the total balance.
Now, if someone transfers some money from account 1 to account 2 [process 1], while at the same time someone else transfers money from account 2 to account 3 [process 2], what could happen? Let's assume [1] is first, reading the totals of account 1 and 2. Then, [2] get's his turn and is executed completely. [1] is now working with outdated values, thus setting the total of account 2 to a wrong value.
With transactions, [2] would have to wait until [1] has finished the complete procedure. Usually this is implemented with locks, so the database locks everything that [1] has used so far.