0 votes
1 answer
1
What is the difference between struct node* head= NULL and struct node* head= (struct node*)NULL ?
1 votes
3 answers
2
What is the difference when I write in program mynode * head; add_node(&head,10); add_node( struct node head, into value);To this mynode *head; add_node (head,10); add_...
0 votes
0 answers
3
Let (x′, y′) correspond to gcd(b, a mod b), i.e. gcd(b, a mod b) = x′ ·b + y′ · (a mod b). Then show that gcd(a, b) = y′ &midd...
0 votes
1 answer
5
1 votes
1 answer
6
what is the correct solution to this question??
2 votes
1 answer
7
Q If probability of frame reaching safely is 0.1 then mean number of transmissions of a frame to make it success is _____.How to solve this question?
1 votes
1 answer
8
How is the correct ans c?
2 votes
2 answers
9
A digital circuit shown below has two $3$-bit input $A_2A_1A_0$ and $B_2B_1B_0$.To obtain output $Y=1$, the number of possible cases are ______.
2 votes
1 answer
10
Ans given is D. Is it because, in analyzing this we would ignore the constants involved in the equation?
2 votes
1 answer
11
The number of ways 16 identical objects can be distributed among 4 persons such that each person gets atleast 2 objects is ______.If possible kindly explain me the approa...
1 votes
2 answers
12
Which of the following is not a group?Set of integer under multiplication operation.Set of natural number under multiplication.Set of natural number under addition.All of...
4 votes
2 answers
13
Is DFCL closed under complement ? If so can you provide any text for the same.
4 votes
1 answer
15
I have a doubt which is accessed first TLB or cache?I think answer should be TLB as we need it for address translation to get frame no. and then access cacheIs my approac...