Home / Report Question

Q. What is the output of the given code? a=[["a","b"]] b=[["e","a"]] print a + b
  • A. [["a", "b"], ["e", "a"]].
  • B. [["2a", "b"], ["e"]].
  • C. False
  • D. Error

Correct Answer: A