|
1. Name the error which occurs when we write on a page a) segment fault b)permission fault c) page fault 2. Is the meaning of Canvas and Canvass, (a) same (b) contradictory (c) no relation 3. There are 3 societies a,b,c. a lent tractors to b and c as many as they had. After some time b gave as many tractors to a and c as many as they have. After sometime c did the same thing. At the end of this transaction each one of them had 24. Find the tractors each orginally had. Answer : a had 39, b had 21, c had 12 4. If a train covers 600m in 0.5 seconds, how long it will cover in 10 seconds? Answer : 3000m = 3km 5. What type of operating system is unix a) pre-emptive b) non-preemptive c) batch 6. There N stations on a railroad. After adding x stations 46 additional tickets have to be printed. Find N and X. Answer : let N(N-1) = t; (N+x)(N+x-1) = t+46; trail and error method x=2 and N=11 7. Interprocess command in unix be achieved by A) pipes b) messages c) semaphores d) shared memory e) all Answer : e) all 8. Is the meaning of Ingenious and Ingenuous, (a) same (b) contradictory (c) no relation 9. Which of the following is true about fork () a) It transforms an executable binary file into a process that overlays the process which made the fork () system call. No new proces is created b) Causes the creation of a new process the CHILD process with a new process ID. c) Causes the creation of a new process, the child process with the same process ID as the parent d) fork() has nothing to do with processes. e) fork() is not a system call Answer : b) 10. In 3.5 Kg rod , there is 74% silver. If it is alloyed with a 0.5 Kg rod, the % of silver goes p to 84%. The percent of silver in 0.5 Kg rod? 11. Opposite of Remote? (a) Far (b) Near (c) Huge (d) Village 12. One dollar is saved in one month. Then how much dollar is saved in one day? Answer : 1/30 =0.0333$ 13. Find the antonym of autumn (a) Spring (b) Winter (c) Summer (d) None of the above 14. How can you make a square from two triangles? 15. char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable)
|