Question: Given this set of checkboxes, how can you select the one with the value "blimp"?

  1. `$('input[value="blimp"]');`
  2. `$('input[value!="blimp"]');`
  3. `$('checkbox').val('blimp');`
  4. `$('input:checkbox').attr('value', 'blimp');`

Answer: The correct answer of the above question is Option A:`$('input[value="blimp"]');`