Recent activity by Rajatagrawal

6 answers
2
An advantage of chained hash table (external hashing) over the open addressing scheme isWorst case complexity of search operations is lessSpace used is lessDeletion is ea...
2 answers
6
$L_1=a^ * b^ *$$L_2=a^ + b^ +$Find $L_2-L_1$:A. $a ^ *$B. $b ^ *$C. $a ^ * +b^ *$D. None
0 answers
7
2 answers
8
When to convert ‘K’ or ‘M’ as power of 2 vs power of 10?Ex – 4K as $^{2^{12}}$ or 4*10^3?
2 answers
9
0 answers
10
How do you rate the classes for those subjects ? I would not be in doubt if there were demo lectures for subjects other than maths.
1 answer
14
2 answers
16
1 answer
17
Can an array store elements of different storage classes?
1 answer
18
sir in this question m should be equal to n without this how rank=n?
1 answer
19
#include<stdio.h #include<string.h #define MAX(x, y) ((x) (y) ? (x) : (y)) int main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i, j, k); return ...
1 answer
20
let a = {2,4,6,8} suppose b is a set with |b| = 5 what are the smallest and largest possible values of |A*B|
0 answers
21
Caption@sachinmittal1 sir here answer should be B na because Arr point s to the 0th index of 2nd 1D-array so it means pointing to address of arr [0] so address size woul...
1 answer
22
1 answer
25
Which one of the following types of memory is fastestCache MemoryRegister MemoryMain MemorySecondary Memory(Option $1 [39317]) 1$(Option $2 [39318]) 2$(Option $3 [39319])...
3 answers
28
#include<stdio.h void print(int n) { printf("Hello "); if(n++ == 0) return ; print(n); n++; } int main() { void print(); print(-4); }How many times printf execute?? And H...