No. Read committed is just a little more restrictive than read uncommitted. It doesn't allow dirty reads, but it doesn't guarantee repeatable reads either. In other words, if the same select statement is issued twice within the same transaction, you migth get different results each time.
So the data is allowed to change while this transaction is running.