1 votes
1
what will be size of main memory. when 4-way set associative mapping of cache memory is done and cache size is 256 KB and Tag field has 7 bits( consider, memory is byte ...
4 votes
2
Q. An IPv4 packet has the first few hexadecimal digits as shown below.0X4500005C000300005906….How many hops can this packet take before being dropped?A. 30 B. 59 C. 89 ...
2 votes
3
when 8-way set associative mapping of cache memory is done and main memory size is 32 GB and Tag field has 10 bits. what will be the cache size ( consider, memory is byt...
6 votes
5
How many solutions are there to the equationx1 + x2 + x3 + x4 + x5 = 21,where xi , i = 1, 2, 3, 4, 5, is a nonnegative integer such that: 0$\leq$ x1$\leq$10 ?
1 votes
8
void printnum(int a){if(a>1){printnum(a/2);printnum(a/2);}pf("*");}how many astreiks for printnum(5)
8 votes
10
How many bit strings of length eight contain either three consecutive 0s or four consecutive 1s?
9 votes
12
An unbiased die is thrown $n$ times. The probability that the product of numbers would be even is$\dfrac{1}{(2n)}$$\dfrac{1}{[(6n)!]}$$1 - 6^{-n}$$6^{-n}$None of the abov...
86 votes
14
2 votes
16
5 votes
17
can some one provide me procedure to solve this que?
1 votes
19
2 votes
20
Is the language L={anbm :n=m or n=m+2} deterministic?
1 votes
23
Let $H_{1}$, $H_{2}$ be two distinct subgroups of a finite group $G$, each of order $2$. Let $H$ be the smallest subgroup containing $H_{1}$ and $H_{2}$. Then the order o...
3 votes
26
#include<stdio.h int main() { int m[6] = {15, 11, 25, 30, 35, 45}; int p, q, r; p = ++m ; q = m ++; r = m[p++]; printf("%d, %d, %d", p, q, r); return 0; }