Question: Which is not a valid lambda expression?

  1. `a -> false;`
  2. `(a) -> false;`
  3. `String a -> false;`
  4. `(String a) -> false;`

Answer: The correct answer of the above question is Option C:`String a -> false;`