Code
<?php echo get_option( 'something_bla_bla_bla' ); ?>
Output
false
<?php echo get_option( 'something_bla_bla_bla', 'Oh no!' ); ?>
Oh no!