I think it depends on the options you select...

try this query to find out what users are on your system :

select username, created
from dba_users
order by created, username;

The 'created' column will show when the users were created...

-John