You executed the following code:
SQL> CREATE TABLE COUNTRY
(COUNTRY_ID CHAR(2) CONSTRAINT COUNTRY_ID_nn NOT NULL,
COUNTRY_NAME VARCHAR2(20),
CURRENCY_NAME VARCHAR2(20),
CONSTRAINT COUNTRY_ID_PK PRIMARY KEY (COUNTRY_ID))
ORGANIZATION INDEX;
In which tablespace will the mapping table be created?()