1 votes
2 answers
1
Solve using Recursion Tree method.$T(n) = T(n-1) \ + \ T(\frac n 2) \ + \ n$
6 votes
2 answers
3
Consider the recurrence relation T(n) = T(n-1) + T(n/2) + nWhich of the following is a good tight upper bound on T(n)(a) $\Theta (n^{2})$(b) $\Theta (n^{2}\log n)$(c) $\T...
1 votes
1 answer
5
Consider a 8 million word physical memory and 256 block cache, both partitioned into 64 word blocks.Find the tag memory required for cache memory for the following mappin...
0 votes
0 answers
6
Suppose a system has m resources and n processes. The Banker's algorithm was used to check the state for safety, which was found to be proportional to $m^{a}n^{b}$ for su...
0 votes
2 answers
7
What is the average access time for transferring 512 bytes of data with the following specification :Avg. seek time = 5msDisk Rotation = 6000rpm, 40kbpsController Overhea...
2 votes
1 answer
8
A processor refers to the cache memory 1000 times. Out of which 150 references are resulting in misses due to conflicts, 100 of them are due to capacity limitations and 1...
0 votes
1 answer
9
0 votes
2 answers
10
Consider a system with 2 level cache. The access times of L1-Cache, L2-Cache and Main Memory are 1ns, 10ns and 500ns. The hit rate of L1 and L2 caches are 0.8 and 0.9 res...
0 votes
0 answers
11
Find the complements of these languages :1. $ww^{R}$ {w | w ∈ $(0,1)^{*}$ }2. $wcw^{R}$ {w | w ∈ $(0,1)^{*}$ }3. ww {w | w ∈ $(0,1)^{*}$ }
0 votes
1 answer
12
${ 0^{n}1^{m} | n \leq m \leq 2n }$
0 votes
1 answer
13
S → S0S1S0S | S0S0S1S | S1S0S0S | ϵ
0 votes
1 answer
14
2 votes
3 answers
15
What is the difference among the following:$\log^²n , \log n^², \log\log n, (\log n)^²$
0 votes
0 answers
16