Recent activity by shraddha_gami

1 answer
1
the solution of recurrence relationT(n)=2T(floor(sqrt(n))+log n
3 answers
2
Value of V GREEDY - V OPT
2 answers
3
Any one solve the safe stat question ,Max need given and available resources are giveen and they ask about the question where state safe or not
0 answers
4
Consider a system with cache access time of 10ns and main memory access time of 100ns. If the simultaneous memory access it used what is the average memory access time if...
1 answer
5
1 answer
6
(o^(n))^(m)|n<m;n,m>=1is it regular
4 answers
7
Consider a 2D array with elemnts stored in the form of lower triangular matrix.The elements must be crossed to read A[4,2] from the array [-6..................+8 , -6.......
4 answers
14
If there are $n$ devices (nodes) in a network, what is the number of cable links required for a fully connected mesh and a star topology respectively$n(n-1)/2$, $n-1$$n$,...
2 answers
15
SATA is the abbreviation ofSerial Advanced Technology AttachmentSerial Advanced Technology ArchitectureSerial Advanced Technology AdapterSerial Advanced Technology Array
6 answers
16
3 answers
18
DFA for Every 'a' followed by 'b'. The second one is correct but I want to know if the first one is correct or not? If not please share an example.
2 answers
19
At a particular time the value of counting semaphore is 10. It will become 7 after:3 V operations3 P operations5 V operations and 2 P operations2 V operations and 5 P ope...
3 answers
20
void main() { unsigned char var=0; for(var=0;var<=255;var++) { printf("%d ",var); } }What is output of this code?
2 answers
21
#include <stdio.h #define foo(a,b) #b int main(void) { int a=10,b=15,ab=20; // your code goes here printf("%d",ab+foo(a,b)); return 0; } What is the output?
5 answers
23
Mention your dislikes about the site and suggest improvements if any
2 answers
24
Which of the following is false?$100n \log n=O(\frac{n\log n}{100})$$\sqrt{\log n} = O(\log\log n)$If $0 < x < y \text{ then } n^x = O\left(n^y\right)$$2^n \neq O\left(nk...
5 answers
25
Consider the finite automaton in the following figure: What is the set of reachable states for the input string $0011$?$\{q_0,q_1,q_2\}$$\{q_0,q_1\}$$\{q_0,q_1,q_2,q_3\}$...
11 answers
27
Consider a hash function that distributes keys uniformly. The hash table size is $20$. After hashing of how many keys will the probability that any new key hashed collide...
1 answer
29