showing custom post types of a certain category only

Your query should look like this (more or less)

$args = array(
    'post_type' => 'FAQ ',
    'tax_query' => array(
        array(
            'taxonomy' => 'faq_category',
            'field'    => 'slug',
        ),
    ),
);
$query = new WP_Query( $args );