In this video we are going to discuss another question which was asked in the exam of ISRO A complete binary tree with n non-leaf nodes contains nodes n + 1 nodes 2n nodes 2n + 1 nodes
In this video we are going to discuss another question which was asked in the exam of ISRO A Hash Function f defined as f (key) = key mod 7. With linear probing while inserting the keys 37, 38, 72, …
In this video we are going to discuss another question which was asked in the exam of ISRO The average number of key comparisons required for a successful search for sequential search on n items is
In this video we are going to discuss another question which was asked in the exam of ISRO The following postfix expression with single digit operands is evaluated using a stack: 8 2 3 ^ / 2 3 * + …
In this video we are going to discuss another question which was asked in the exam of ISRO Consider the following segment of C-code: int j, n; j = 1; while (j <= n) j = j * 2; The …
In this video we are going to discuss another question which was asked in the exam of ISRO What will be output of the following program? Assume that you are running this program in little-endian processor. #include<stdio.h> int main() { …
In this video we are going to discuss another question which was asked in the exam of ISRO In which class of Flynn’s taxanomy, Von Neumann architecture belongs to? SISD SIMD MIMD MISD
In this video we are going to discuss another question which was asked in the exam of ISRO Register renaming is done in pipelined processors as an alternative to register allocation at compile time for efficient access to function parameters …
In this video we are going to discuss another question which was asked in the exam of ISRO Let the page fault service time be 10 ms in a computer with average memory access time being 20 ns. If one …
In this video we are going to discuss another question which was asked in the exam of ISRO Consider a disk pack with 16 surfaces, 128 tracks per surface and 256 sectors per track. 512 bytes of data are stored …
In this video we are going to discuss another question which was asked in the exam of ISRO What is the output of this C code? #include<stdio.h> void main() { int k=5; int *p=&k; int **m=&p; printf(“%d %d %d”,k,*p,**m); } …
In this video we are going to discuss another question which was asked in the exam of ISRO Consider a non-pipelined processor with a clock rate of 2.5 gigahertz and average cycles per instruction of four. The same processor is …