How to call particular funcion when the check box is checked in plugin options page

You would use a conditional check to determine if the option is selected, before adding your function to the action hook.

Example:

$options = get_option( 'chec_settings' );
if ( $options['chec_checkbox_field_0'] == '1' ) {
    add_action ('admin_bar_menu', 'remove_wp_logo', 999 );
}