How to find what version of Oracle you are running.
Method 1 : Connect to sqlplus
After connecting to sqlplus you can see a welcome message. See below snapshot

You can see I have connected to Oracle 11.2.0.1.0 64 bit version
Method 2 : Using SQL
Run below sql
select * from v$version;
