What is the result of concatenating two arrays in Python using the operator, arr1 = [1, 2, 3] and arr2 = [4, 5, 6]? - Study24x7
Social learning Network
2 followers study24x7 04 Jul 2024 10:36 AM study24x7 study24x7

What is the result of concatenating two arrays in Python using the + operator, arr1 = [1, 2, 3] and arr2 = [4, 5, 6]?

A

A new array [1, 2, 3, 4, 5, 6]

B

The original arrays are mutated to include the elements of the other

C

A syntax error

D

None of the above

study24x7
Write a comment
Related Questions
500+   more Questions to answer
Most Related Articles