1. analyze table tablename compute statitics

2. select blocks,empty_blocks from dba_tables where table_name='tablename';

3. So the size of the table is (blocks+empty_blocks)*db_block_size

4. You can find the db_block size by
select value from v$parameter where name='db_block_size'