edited by
1,237 views
2 2 votes

Consider the integer array $A\left [ 1.........100,1.......100 \right ]$ in which the elements are stored in $Z$ representation. An example of a $5\times 5$ array in $Z$ representation is shown below:

If the base address of $A$ is starting from $1000$ onwards, size of each element is $1B$ and $A$ is stored in Row Major Order, then the address corresponding to $A\left [ 100 \right ]\left [ 55 \right ]$ is ________________ 

Please log in or register to answer this question.

Position:
Show:

Related questions

2 2 votes
1 1 answer
1.3k
1.3k views
Souvik33 asked Jan 11, 2023
1,252 views
The following C function rearranges the members of a single-linked list of integers that is passed as a parameter. The list of numbers 1, 2, 3, 4, 5, 6, and 7 in the spec...
1 1 vote
0 0 answers
1.7k
1.7k views
7 7 votes
4 4 answers
6.2k
6.2k views
srestha asked May 5, 2019
6,192 views
Consider a hash table with $N$ slots. It is given that the collision resolution technique used in chaining. Assume simple uniform hashing, what is the probability that th...
0 0 votes
1 1 answer
2.3k
2.3k views
srestha asked May 3, 2019
2,347 views
Consider the following function foobar(), which takes binary tree as input.int foobar(struct node *root){ if(!root) return 0; if((!root->left)&&(!root->right)) return 10;...