What is the output of the following 3D Array
int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12};
what is the output for arr[2][1][0]?

Answers were Sorted based on User's Feedback



What is the output of the following 3D Array int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12}; what i..

Answer / zohaib brohi

the output will be 11..
first we should make it simple.
just make all the values in that array of 2x2 in 3 block like

1,2,
3,4,

5,6,
7,8,

9,10,
11,12

now we have to find [2][1][0]. it means that the value is in
3rd block becoz array starts from 0, then [1][0] means 1st
value of 2nd row.. so thats 11.

Is This Answer Correct ?    112 Yes 9 No

What is the output of the following 3D Array int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12}; what i..

Answer / sawwas

11

Is This Answer Correct ?    52 Yes 9 No

What is the output of the following 3D Array int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12}; what i..

Answer / tushar aggarwal

11 is the output of the arr[2][1].
let it understand in a very simple manner.
if we analyze the arr[3][2][2] in a 3d style ,it would be
easy to capture the answer.
1 2
3 4

5 6
7 8

9 10
11 12
here you can see in arr[3][2][2]. there are 3 rows,of 2x2
matrix each.
now coming to the real problem we have to find arr[2][1].
since the last bracket is absent in the arr[2][1].thus we
will implement this by our self.now we may read it as
arr[2][1][0],suppose the last bracket contain 0 in it.

finallly we are ready for finding the value ,
arr[2][1][0].
here [2] = last column of the matrix,since the array is
readed as o ,1,2.
[1][0]= in the third row ,[1][0] represents the value 11.
therefore 11 is output of the arr[2][1][0].

Is This Answer Correct ?    20 Yes 4 No

What is the output of the following 3D Array int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12}; what i..

Answer / sonam

11

Is This Answer Correct ?    14 Yes 2 No

What is the output of the following 3D Array int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12}; what i..

Answer / darshil movaliya

What is the output of the following 3D Array
int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12};
what is the output for arr[2][1][0]?

Is This Answer Correct ?    3 Yes 0 No

What is the output of the following 3D Array int arr[3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12}; what i..

Answer / arpita

ans-0 [3][2][2]={1,2,3,4,5,6,7,8,9,10,11,12}
[2][1][0]={0}
3*2*2=12
2*1*0=0
think hatke...

Is This Answer Correct ?    9 Yes 29 No

Post New Answer

More C++ General Interview Questions

What is a container class? What are the types of container classes in c++?

0 Answers  


What is c++ good for?

0 Answers  


advantages and disadvantages of using Borland C++ / version 5.

1 Answers  


Write an algorithm that determines whether or not an almost complete binary tree is a heap.

0 Answers   TCS,


Can we specify variable field width in a scanf() format string? If possible how?

0 Answers  






What is the use of volatile keyword in c++? Give an example.

1 Answers  


class HasStatic { static int I; }; Referring to the sample code above, what is the appropriate method of defining the member variable "I", and assigning it the value 10, outside of the class declaration? a) HasStatic I = 10; b) int static I = 10; c) static I(10); d) static I = 10; e) int HasStatic::I = 10;

1 Answers   Quark,


Is empty stack c++?

0 Answers  


Which ide is best for c++?

0 Answers  


Memory is not a constraint. In a single iteration(NOTE: you can't go back), how will you find out the 10th last node/item in a linked list.

16 Answers   BNB, FDS, Goldman Sachs, Nagarro,


What is the use of register keyword with the variables?

0 Answers  


Difference between shift left and shift right?

1 Answers   Symphony,


Categories