How to exclude Sticky from Recent Post?

You can try this:

$args = array( 
           'post__not_in' => get_option( 'sticky_posts' ), 
           'posts_per_page' => 5, 
        );
$recent = new WP_Query( $args );

to exclude the sticky posts. You can read more about it here in the Codex.