Programming (11th Grade)
Lists
What will be the output of the following code: print([1, 2] + [3, 4])?
[1, 2, 3, 4]
[4, 3, 2, 1]
[1, 2, [3, 4]]
Error
Next