Elearning , Interview Questions And Answers

Google

1. What is the number of functions of a three variable boolean function? 2. Which is the most commonly used replacement algorithm? Ans. LRU 3. Which memory management technique involves dividing the memory into fixed sized blocks? Ans. Paging 4. What is video resolution ? 5. The processing speed of a microprocessor depends on _____? Ans. data bus width SECTION 3: C TEST NOTE: The questions are of multiple choice format in the paper 1. What is the output of the program given below #include<stdio.h> main() { char i=0; for(;i>=0;i++) ; printf("%d\n",i); } 2. What is the output of the following program #include<stdio.h> main() { int i=0; fork(); printf("%d",i++); fork(); printf("%d",i++); fork(); wait(); } 3. What is the memory allocated by the following definition ? int (*x)[10]; 4. What is the memory allocated by the following definition ? int (*x)();