0 votes
1 answer
1
In a non-homogeneous equation Ax = b, x has a unique solution when $A^{-1}$ exists i.e x = $A^{-1}$bbut when det(A) = 0 then we have infinite solution or many solution.p...
0 votes
1 answer
2
A Selective Repeat ARQ is using 7 bits to represent the sequence numbers.The maximum window size is __________.(ans is 64)why It is
1 votes
0 answers
3
Is there any relationship between Irredundant or Irreducable expression with minimal expression???I mean can we say like “every irredundant is minimal” or “every mi...
0 votes
1 answer
4
L1 $\cap$ L2 = $\phi$ This problem is decidable or undecidable in case of CSL, REL, & REnL ????
0 votes
2 answers
5
Why B-tree & B+ tree is used in database indexing instead of other tree like BST, Binary tree etc??
0 votes
1 answer
6
What is the actual difference between binary semaphore & Mutex????? Are both same thing????What is the up() code for binary semaphore?????
0 votes
0 answers
7
please suggest me some good tutorials for AVL tree rotation.
0 votes
2 answers
8
If an Interrupt occurs during process executing in CPU then the process will move RUN to READY or RUN to WAIT/BLOCK ?
0 votes
0 answers
9
Can I calculate Page Table Size by just multiplying No. Of Pages & Frame No. if PTE size is not given?
0 votes
1 answer
10
Can I give any grammer for the language L = { anbncn / n>=1} Like this
1 votes
1 answer
11
Consider the following C function:int f(int n) { static int r = 0; if (n <= 0) return 1; if (n 3) { r = n; return f(n-1) + 2; } return ...
0 votes
4 answers
12
Can I write $a^* + b^* = (a + b)^*$ ????