Testing inequality in oracle

The following three operators have the identical meaning:
!=, ^=, <>

select name from worker where gender <> 'male';

Another way to test for inequality it to use "not in"

select name from worker where type not in ('manager','contractor');