edited by
7,822 views

2 Answers

Best answer
28 votes
28 votes
I am just attempting it not sure

Here i think they have specified the size

So 1:8 mean 8 elements ( both are inclusive  )

(-5 : 5 ) mean 11 elements

(-10 : 5 ) mean 16 elements

So no of elements will be ( just like Multidimensional array will be ) 8*11*16=1408

so option b
selected by
5 votes
5 votes
ul = upper limit

ll=lower limit

 

(ul3-ll3+1) x  (ul2-ll2+1) x(ul1-ll1+1) =(8-1+1) x( 5- (-5)+1)  x   (5 +10+1) =1408
Answer:

Related questions

9 votes
9 votes
3 answers
1
makhdoom ghaya asked Apr 25, 2016
9,094 views
In an array of $2N$ elements that is both 2-ordered and 3-ordered, what is the maximum number of positions that an element can be from its position if the array were 1-or...
3 votes
3 votes
2 answers
2
makhdoom ghaya asked Apr 27, 2016
6,157 views
Which of the following number of nodes can form a full binary tree?8151413
6 votes
6 votes
2 answers
3
makhdoom ghaya asked May 13, 2016
2,574 views
The number of elements in the power set of the set {{A, B}, C} is$7$$8$$3$$4$
5 votes
5 votes
2 answers
4
makhdoom ghaya asked Apr 25, 2016
6,592 views
The following steps in a linked listp = getnode() info(p) = 10 next (p) = list list = presult in which type of operation?Pop operation in stackRemoval of a nodeInserting ...