Exclude a category name using cat name

$recentPosts = new WP_Query(); $recentPosts->query('cat=-3'); //-3 makes sure it shows all categories except for ID number 3
        while ($recentPosts->have_posts()) : $recentPosts->the_post(); 

the_title();
the_content();        

endwhile;

Would something like this Work?