Q. Choose the correct way of initializing a multidimensional array below. (A) int[][] code = {{1,2},{3,4,5}}; (B) int[2][] code = {{1,2},{3,4,5}}; (C) int[][] code={1,2,3,4,5}; (D) All of the above ποΈ Show Answer π¬ Discuss π Share β‘Menu β Correct Answer: (A) int[][] code = {{1,2},{3,4,5}};