Yes, you can verify.
Consider the following sample case :
create table tab1( pec int, student_name varchar2(50));
insert into tab1(student_name) values('Doflamingo19');
create table tab2( pex int, student_name varchar2(50));
insert into tab2(student_name) values('Doflamingo19');
select substr(student_name ,0, 10) as student_name, 'Exists in TAB1' as Existance
from tab1
where exists ( select 1
from user_tab_columns
where table_name = 'TAB1'
and column_name = 'PEC' )
union all
select substr(student_name ,0, 10) as student_name, 'NOT Exists in TAB2'
from tab2
where not
exists ( select 1
from user_tab_columns
where table_name = 'TAB2'
and column_name = 'PEC' );
STUDENT_NAME EXISTANCE
------------ ------------------
Doflamingo Exists in TAB1
Doflamingo NOT Exists in TAB2