Check database is Exadata or Non-Exadata database version:
SQL> SELECT decode(count(cell_path),0,'Non-Exadata','Exadata') "System" FROM v$cell;
System
-----------
Non-Exadata
If the count > 0 that means Exadata otherwise Non-Exadata
SQL> select count(distinct cell_path) from v$cell;
COUNT(DISTINCTCELL_PATH)
------------------------
0