Determine Registered Admin Menus

You can use the global variable $menu to see which top level menus are registered.

function determine_menus() {
    global $menu;
    //echo '<pre>'; print_r($menu); exit; // uncomment to see the array of menus in back-end
}
add_action('admin_init', 'determine_menus');