as this is the simple query, based on number of rows returning from the query, optimizer will decide whether to use FTS or Index scan.

If you want to force the optimizer to use Index always they use Index hint.

Also, could you please post the result from the following queries?

desc employee;
select count(*) from employee where status=1;
select count(*) from employee where status=-1;

Thanks,