Get URL for specific post type and current tag

If the URL to the ‘cancer’ taxonomy term in your example looked like this:

yourwebsite.com/topics/cancer/

then you could filter these results by post type with a URLs structured like this:

yourwebsite.com/topics/cancer/?post_type=question

Just put this in functions.php

add_filter( 'pre_get_posts', 'wp123_post_type_by_taxonomy' );
function wp123_post_type_by_taxonomy( $query ) {
    if( is_tax( 'topics' ) && $query->is_main_query() ) {

        // get all post types:
        $post_types = get_post_types();

        // or add specific post types:
        // $post_types = array( 'post_type_1', 'post_type_2' );

        if ( !empty( $_GET['post_type'] ) && post_type_exists( $_GET['post_type'] ) ) {
            // show only results for this post type
            $query->set( 'post_type', $_GET['post_type'] );
        }

    }
}