You are on page 1of 77

Wipro Selection Procedure In written test 3 sections 1 Quantitative /analytical reasoning (20 questions) 2 Verbal ability (20 questions)

3 Technical section (10questions) No of questions-50 Time limit -60 Minutes Sectional cut-off
Wipro on line Mock Tests
Practice Fully solved Mock on line Sample Palcement Papers of Wipro

Main topics to concentrate is Quantitative /analytical reasoning Average, Time and work, Time and distance, Train, Number series Clocks and Calendars Blood Relationship Logical deductions, Seating arrangement Partnership Theme detection Coding and decoding Probabality Data interpreataion
Learn and Practice easy methods to solve Quantitative Aptitude
Tips and Tricks, Concepts and Exercise questions

Verbal ability Sentence correction Synonym Antonym Choosing correct alternative Idiomatic expression Odd man out Choosing correct phrase One word substitute Arranging a wordPunctuation marks Fill in the blanks
Practice more from Verbal Ability
Tips and Tricks, Concepts and Exercise questions

Technical Questions C,C++ UNIX,DBMS<CN,JAVA,LINUX Optical fibre OS,Data structures.SQL Micro processors etc., HR Interview Introduce yourself Favourite subject, Your project

Why wipro How do you rate me as an interviewer ? Always remember you will be judged on the following criteria * Self confidence * Grasp on branch subject * Grasp on language (C, C++, JAVA etc) * Presence of mind * Eye contact (With HR) Wipro Selection Procedure In written test 3 sections 1 Quantitative /analytical reasoning (20 questions) 2 Verbal ability (20 questions) 3 Technical section (10questions) No of questions-50 Time limit -60 Minutes Sectional cut-off Some Technical Questions previously asked Predict the output or error(s) for the following: 1. main() { char string[]="Hello World"; display (string); } void display (char *string) { printf("%s",string); } Ans: Compiler Error : Type mismatch in redeclaration of function display 2. What are the values printed by the following program? #define dprint(expr) printf(#expr "=%d\n",expr) main() { int x=7; int y=3; dprintf(x/y); } a) #2 = 2 Ans: c 2) Parameterization generally involves a. Data table b. Random number c. Environment d. Both A & B e. Both A, B & C Ans: e 3) The file which is used for recovering from the run time errors known as b) expr=2 c) x/y=2 d) none

A. QRS B. TSR C. PNG D. DAT Ans: A 4) Among the following recording modes, which method uses both the objects and mouse coordinates a. Normal b. Low level c. Analog d. All of the above Ans: b 5) Where do you set the action iterations for a specified action? a. Action Settings b. Action Properties c. Action Run Properties d. Action Call Properties Ans: d 6) Where do you mark an action as reusable? a. Action Settings b. Action Properties c. Action Run Properties d. Action Call Properties Ans: b 7) After running a test that contains both input and output parameters, where can the results of an output parameter be found? a. Local Data Sheet b. Global Data Sheet c. Run-time Data Table d. Design-time Data Table Ans: c 8) If you have a Virtual Object Collection stored on your machine, and you dont want to use it what you must do? a. Disable Virtual Objects in Test Settings b. Remove the Collection from your machine c. Disable Virtual Objects in General Options d. Remove the Collections from the Resources list Ans: c 9. For a 25MHz processor , what is the time taken by the instruction which needs 3 clock cycles, (a)120 nano secs (b)120 micro secs (c)75 nano secs (d)75 micro secs Ans: a 10. For 1 MB memory, the number of address lines required, ( a)11 (b)16 (c)20(d) 24

Ans. (c) 11. Semaphore is used for (a) synchronization (b) dead-lock avoidance (c) box (d) none Ans. (a) 12. OLE is used in a) inter connection in unix b) interconnection in WINDOWS c) interconnection in WINDOWS NT d) None Ans. c 13. Preprocessor does not do which one of the following (a) macro (b) conditional compliclation (c) in type checking (d) including load file Ans. (c) 14. Piggy backing is a technique for a) Flow control b) Sequence c) Acknowledgement

d) retransmission

Ans. (c) 15. In signed magnitude notation what is the minimum value that can be represented with 8 bits (a) -128 (b) -255 (c) -127 (d) 0 Ans: a 17. When an array is passed as parameter to a function, which of the following statement is correct a) The function can change values in the original array b) In C parameters are passed by value. The function cannot change the original value in the array c) It results in compilation error when the function tries to access the elements in the array d) Results in a run time error when the function tries to access the elements in the array Ans: a 18. The type of the controlling statement of a switch statement cannot be of the type a) int b) char c) short d)float e) none Ans : d 19. What is the value of the statement (3^6) + (a^a)? a) 3 b) 5 c) 6 d) a+18 e) None

Ans : b 20. consider the following program: # include class x { public: int a; x(); }; x::x() { a=10; cout< class b:public x { public: b();

}; b::b() { a=20; cout< main () { b temp; } what will be the output of this program? a) 10 b) 20 c) 2010 d) 1020 Ans: b 1. What sorting algos have their best and worst case times equal ? Ans. O(nlogn) for mergesort and heap sort 2. What page replacement algorithm has minimum number of page faults ? Ans. Optimality algorithm 3. What is the use of virtual base class in c++ Ans. Multiple lines between derived classes. 4. Assignment operator targets to _____ Ans. l-value 5. A byte addressable computer has memory capacity of 2 power m Kbytes and can perform 2 power n operations an instruction involving three operands and one operator needs maximum of___________ bits Ans. 3m + n 6. In round robin scheduling, if time quantum is too large then it degenerates to Ans. FCFS 7. What data structures you should use for dictionary searching and it should be capable of doing spell check also ? Ans: Hashing 8. What is the value of 121 base 4 + 84 base 16 ? Ans : 2130 9. When the fn. is called where the return address is stored? Ans. stack 10. C program code int zap (int n) { if (n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15 Ans: b 11. Virtual memory size depends on [a] address lines [b] data bus [c] disc space [d] a & c [e] none Ans : a 12. Critical section is Ans: statements which are accessing shared resources 13. In which layer ROUTING is performed ? Ans. Network Layer 14. What is the output of the following code snippet main() { printf(5+Fascimile); } Ans. mile 15. Which one has no L-Value A a[i] B. i C. 2 D. *(a+i)

Ans . C 16. Which is true for binary search ? A Traversal scheme B. Greedy algorithm C. Divide and conquer algorithm D. none of these Ans. C 17. What is the protocol used for getting the physical address by supplying IP address of a node ? A. ARP B. RARP C. BOOTP D. DHCP Ans. A 18. Which is not an OS? a) Win 3.1 b) Win 95 c) Win 98 d) Win 2000 Ans. a 19. Tcp/ip is a) connectionless b) connection oriented c) both a & b d) none Ans: b 20. A sorting algorithm which can prove to be a best time algorithm in one case and a worst time algorithm in worst case is (a) Quick Sort (b) Heap Sort (c) Merge Sort (d) Insert Sort Ans. (a) 1. If the time quantum is too large, Round Robin scheduling degenerates to (a) Shortest Job First Scheduling (b) Multilevel Queue Scheduling (c) FCFS (d) None of the above Ans. (c) 2. Transponders are used for which of the following purposes (a) Uplinking (b) Downlinking (c) Both (a) and (b) (d) None of the above Ans. (c) 3. The format specifier "-%d" is used for which purpose in C (a) Left justifying a string (b) Right justifying a string (c) Removing a string from the console (d) Used for the scope specification of a char[] variable Ans. (a) 4. A sorting algorithm which can prove to be a best time algorithm in one case and a worst time algorithm in worst case is (a) Quick Sort (b) Heap Sort (c) Merge Sort (d) Insert Sort Ans. (a) 5. What details should never be found in the top level of a top-down design? (a) Details (b) Coding (c) Decisions (d) None of the above Ans. (c) 6. In an absolute loading scheme, which loader function is accomplished by assembler (a) Reallocation (b) Allocation (c) Linking (d) Both (a) and (b)

Ans. (d) 7. Banker's algorithm for resource allocation deals with (a) Deadlock prevention (b) Deadlock avoidance (c) Deadlock recovery (d) None of these Ans. (b) 8. Thrashing can be avoided if (a) The pages, belonging to the working set of the programs, are in main memory (b) The speed of CPU is increased (c) The speed of I/O processor are increased (d) All of the above Ans. (a) 9. Which of the following communications lines is best suited to interactive processing applications? (a) Narrowband channels (b) Simplex channels (c) Full-duplex channels (d) Mixed band channels Ans. (b) 10. A feasibility document should contain all of the following except (a) Project name (b) Problem descriptions (c) Feasible alternative (d) Data flow diagrams Ans. (d) 11. What is the main function of a data link content monitor? (a) To detect problems in protocols (b) To determine the type of transmission used in a data link (c) To determine the type of switching used in a data link (d) To determine the flow of data Ans. (a) 12. Which of the following is a broadband communications channel? (a) Coaxial cable (b) Fiber optic cable (c) Microwave circuits (d) All of the above Ans. (d) 13. Which of the following memories has the shortest access time? (a) Cache memory (b) Magnetic bubble memory (c) Magnetic core memory (d) RAM Ans. (a) 14. A shift register can be used for (a) Parallel to serial conversion (b) Serial to parallel conversion (c) Digital delay line (d) All the above Ans. (d) 15. In which of the following page replacement policies, Balady's anomaly occurs? (a) FIFO (b) LRU (c) LFU (d) NRU Ans. (a)

16. Subschema can be used to (a) Create very different, personalised views of the same data (b) Present information in different formats (c) Hide sensitive information by omitting fields from the sub-schema's description (d) All of the above Ans. (d) 17. A 12 address lines maps to the memory of a. 1k bytes b. 0.5k bytes c. 2k bytes d. none Ans: b 18. In a processor these are 120 instructions . Bits needed to implement this instructions [a] 6 [b] 7 [c] 10 [d] none Ans: b 19. In a compiler there is 36 bit for a word and to store a character 8bits are needed. IN this to store a character two words are appended .Then for storing a K characters string, How many words are needed. [a] 2k/9 [b] (2k+8)/9 [c] (k+8)/9 [d] 2*(k+8)/9 [e] none Ans: a 20. Virtual memory size depends on [a] address lines [b] data bus [c] disc space [d] a & c [e] none Ans : a 1. An electron moving in an electromagnetic field moves in a (a) In a straight path (b) Along the same plane in the direction of its propagation (c) Opposite to the original direction of propagation (d) In a sine wave Ans. (b) 2. The total work done on the particle is equal to the change in its kinetic energy (a) Always (b) Only if the forces acting on the body are conservative. (c) Only if the forces acting on the body are gravitational. (d) Only if the forces acting on the body are elastic. Ans. (a) 3. The following unit measure energy: (a) Kilo-watt hour. (b) Volt*volt/sec*ohm. (c) Pascal*foot*foot (d) (Coulomb*coulomb)*farad Ans. (a) 4. Astronauts in stable orbits around the earth are in a state of weightlessness because (a) There is no gravitational force acting on them. (b) The satellite and the air inside it have an acceleration equal to that of gravitational acceleration there. (c) The gravitational force of the earth and the sun balance giving null resultant. (d) There is no atmosphere at the height at which the satellites move. Ans. (b) 5. An organ pipe, open at both ends and another organ pipe closed at one end, will resonate with each other, if their lengths are in the ratio of (a) 1:1 (b) 1:4 (c) 2:1 (d) 1:2 Ans. (c) 6. During an isothermal expansion of an ideal gas

(a) Its internal energy increases. (b) Its internal energy decreases. (c) Its internal energy does not change. (d) The work done by the gas is not equal to the quantity of heat absorbed by it. Ans. (c) 7. A parallel plate capacitor is charged and the charging battery is then disconnected. If the plates of the capacitor are moved further apart by means of insulating handles (a) The charge on the capacitor increases. (b) The voltage across the plates increases. (c) The capacitance increases. (d) The electrostatic energy stored in the capacitor decreases. Ans. (b) 8. Two equal negative charges q are fixed at point (0,a) and (0,-a) on the y-axis. A positive charge Q is released from rest at the point (2a,0) on the x-axis. The charge Q will (a) Execute simple harmonic motion about the origin (b) Move to the origin and remain at rest (c) Move to infinity (d) Execute oscillatory but not simple harmonic motion Ans. (d) 9. A square conducting loop of length Lon a side carries a current I. The magnetic field at the center of the loop is (a) Independant of L (b) Proportional to L*L (c) Inversely proportoinal to L (d) Directly proportional to L Ans. (c) 10. The focal length of a convex lens when placed in air and then in water will (a) Increase in water with respect to air (b) Increase in air with respect to water (c) Decrease in water with respect to. air (d) Remain the same Ans. (a) 11. The maximum kinetic energy of the photoelectron emitted from the surface is dependant on (a) The intensity of incident radiation (b) The potential of the collector electrode (c) The frequency of incident radiation (d) The angle of incidence of radiation of the surface Ans. (c) 12. An electron orbiting in a circular orbit around the nucleus of the atom (a) Has a magnetic dipole moment (b) Exerts an electric force on the nucleus equal to that on it by the nucleus (c) Does not produce a magnetic induction at the nucleus (d) All of the above Ans. (d) 13. The X-rays beam coming from an X-ray tube will be: (a) Monochromatic (b) Having all wavelengths smaller than a certain minimum wavelength (c) Having all wavelengths larger than a certain minimum wavelength (d) Having all wavelengths lying between a minimum and a maximum wavelength Ans. (c) 14. The mass number of a nucleus is (a) Always less than its atomic number (b) Always more than its atomic number (c) Always equal to its atomic number (d) Sometimes more and sometimes equal to its atomic number

Ans. (d) 15. Two successive elements belonging to the first transition series have the same number of electrons partially filling orbital. They are (a) V and Cr (b) Ti and V (c) Mn and Cr (d) Fe and Co Ans. (c) 16. When n+l has the same value for two or more orbitals, the new electron enters the orbital where (a) n is maximum (b) n is minimum (c) l is maximum (d) l is minimum Ans. (b) 17. A balloon filled with ethylene is pricked with a sharp pointed needle and quickly placed in a tank full of hydrogen at the same pressure. After a while the balloon would have (a) Shrunk (b) Enlarged (c) Completely collapsed (d) Remain unchanged in size Ans. (b) 18. Which of the following statements is not true? (a) The ratio of the mean speed to the rms speed is independent of temperature (b) Tthe square of the mean speed of the molecules is equal to the mean squared speed at a certain temperature (c) Mean kinetic energy of the gas molecules at any given temperature is independent of the mean speed (d) None Ans. (b) 19. Which of the following statements represent Raoults Law (a) Mole fraction of solvent = ratio of vapour pressure of the solution to vapour pressure of the solvent (b) Mole fraction of solute = ratio of vapour pressure of the solution to vapour pressure of the solvent (c) Mole fraction of solute = lowering of vapour pressure of the solution (d) Mole fraction of solvent = lowering of vapour pressure of the solution Ans. (a) 20. Elements having the same atomic number and the same atomic mass are known as (a) Isotopes (b) Isotones (c) Isomers (d) None of the above 21.Which is the most acidic amongst (a) Nitrophenol (b) O-toulene (c) Phenol (d) Cresol 22. Pure water does not conduct electricity because it is (a) Almost not ionised (b) Low boiling (c) Neutral (d) Readily decomposed Ans. (a) 23. In a salt bridge, KCl is used because (a) It is an electrolyte (b) The transference number of K+ and Cl is nearly the same (c) It is a good conductor of electricity (d) All of the above

Ans. (d) 24. A depolarizer used in the dry cell batteries is (a) KCl (b) MnO2 (c) KOH (d) None of the above Ans. (b) 25. The hydrolysis of alkyl halides by aqueous NaOH is best termed as (a) Electrophylic substitution reaction (b) Electrophylic addition reaction (c) Nnucleophylic addition reaction (d) Nucleophylic substitution reaction Ans. (d) 26. The hydrocarbon that gives a red precipitate with ammoniacal cuprous chloride is (where means a triple bond) (a) CH3-CH2-CH2-CH3 (b) CH3-CC-CH3 (c) CH2=CH-CH=CH2 (d) CH3-CH2-CCH Ans. (d) 27. Which of the following reagents is neither neutral nor basic (a) Lucas reagent (b) Tollens reagent (c) Bayers reagent (d) Fehlings solution Ans. (a) 28. The substance which is most easily nitrated (a) Toluene (b) Bbenzene (c) Nitrobenzene (d) Chlorobenzene Ans. (a) 29. Carbylamine reaction is a test for (a) Primary amine (b) Secondary amine (c) Tertiary amine (d) Quarternary ammonium salt Ans. (a) 30. Which of the following oxides cannot be reduced by carbon to obtain metal (a) ZnO (b) Al2O3 (c) Fe2O3 (d) PbO Ans. (b) 31. Which of the following is not an oxide ore? (a) Cassiterite (b) Siderite (c) Pyrolusite (d) Bauxite Ans. (b) 32. Which among the following is called philosophers wool (a) Cellulose (b) Calamine (c) Stellite (d) Cerussite

Ans. (c) 33. Out of 10 white, 9 black and 7 red balls, in how many ways can we select one or more balls (a) 234 (b) 52 (c) 630 (d) 879 Ans. (d) 34. A and B throw a dice. The probability that As throw is not greater than Bs is (a) 5/12 (b) 7/12 (c) 11/12 (d) 5/36 Ans. (b) 35. Given two numbers a and b. Let A denote the single AM between these and S denote the sum of n AMs between them. Then S/A depends upon (a) n (b) n,a (c) n,b (d) n,a,b Ans. (a) 36. If the sum of the roots of the equation ax+bx+c=0 is equal to the sum of the squares of their reciprocals, then, a/c, b/a, c/b are in (a) AP (b) GP (c) HP (d) None of the these Ans. (c) In the following questions ~ represents the integral sign-for eg. 1~2[f(x)] means integration of the function f(x) over the interval 1 to2. 37. Value of -1~2[|2-x|]dx, ie integration of the function |2-x| over the interval -1 to 2. (a) 0 (b) 1 (c) 2 (d) None of the above Ans. (d) 38. If 0~P[log sinx]dx=k,then the value of 0~P/4[log(1 + tan x)]dx ,where P stands for pi,is (a) -k/4 (b) k/4 (c) -k/8 (d) k/8 Ans. (c) 39. If a,b,c be in GP and p,q be respectively AM between a, b and b, c then (a) 2/b=1/p+1/q (b) 2/b=1/p-1/q (c) 2=a/p-c/q (d) None of the above Ans. (a) 40. A solution of KMnO4 is reduced to MnO2 .The normality of solution is 0.6.The molarity is (a) 1.8M (b) 0.6M (c) 0.1M (d) 0.2M Ans. (d) The questions 41-46 are based on the following pattern. The problems below contain a question and two statements giving certain data. You have to decide whether the data given in the statements are sufficient for

answering the questions. The correct answer is (A) If statement (I) alone is sufficient but statement (II) alone is not sufficient. (B) If statement (II) alone is sufficient but statement (I) alone is not sufficient. (C) If both statements together are sufficient but neither of statements alone is sufficient. (D) If both together are not sufficient. 41. What is Johns age? (I) In 15 years John will be twice as old as Dias would be (II) Dias was born 5 years ago Ans. (C) 42. What is the distance from city A to city C in kms? (I) City A is 90 kms from City B (II) City B is 30 kms from City C Ans. (D) 43.Is A=C ? A,B,C are real numbers (I) A-B=B-C (II) A-2C = C-2B Ans. (C) 44. What is the 30th term of a given sequence ? (I) The first two terms of the sequence are 1,1/2 (II) The common difference is -1/2 Ans. (A) 45.Was Avinash early, on time or late for work? (I) He thought his watch was 10 minutes fast (II) Actually his watch was 5 minutes slow Ans. (D) 46. What is the value of A if A is an integer? (I) A4 = 1 (II) A3 + 1 = 0 Ans. (B) 47. A person travels 12 km in the southward direction and then travels 5km to the right and then travels 15km toward the right and finally travels 5km towards the east, how far is he from his starting place? (a) 5.5 kms (b) 3 km (c) 13 km (d) 6.4 km Ans. (b) 48. Xs fathers wifes fathers granddaughter uncle will be related to X as (a) Son (b) Nephew (c) Uncle (d) Grandfather Ans. (c) 49. Find the next number in the series 1, 3 ,7 ,13 ,21 ,31 (a) 43 (b) 33 (c) 41 (d) 45 Ans. (a) 50. If in a certain code RANGE is coded as 12345 and RANDOM is coded as 123678. Then the code for the word MANGO would be (a) 82357 (b) 89343 (c) 84629 (d) 82347 Ans. (d)

51. If PROMPT is coded as QSPLOS ,then PLAYER should be (a) QMBZFS (b) QWMFDW (c) QUREXM (d) URESTI Ans. (a) The questions 52-53 are based on the following data 6 people A, B, C, D, E and F sit around a table for dinner. Since A does not like C, he doesnt sit either opposite or beside C.B and F always like to sit opposite each other. 52. If A is beside F then who is are the two neighbors of B? (a) D and C (b) E and C (c) D and E (d) Either (a) or (b) Ans. (c) 53. If D is adjacent to F then who is adjacent to C? (a) E and B (b) D and A (c) D and B (d) either (a) or (c) Ans. (d) 54. Complete the sequence A, E ,I ,M ,Q ,U , _ , _ (a) B, F (b) Y, C (c) G, I (d) K, O Ans. (b) 55. A person travels 6km towards west, then travels 5km towards north ,then finally travels 6km towards west. Where is he with respect to his starting position? (a) 13km east (b) 13km northeast (c) 13km northwest (d) 13km west Ans. (c) 56. If A speaks the truth 80% of the times, B speaks the truth 60% of the times. What is the probability that they tell the truth at the same time (a) 0.8 (b) 0.48 (c) 0.6 (d) 0.14 Ans.(b) 57. If the time quantum is too large, Round Robin scheduling degenerates to (a) Shortest Job First Scheduling (b) Multilevel Queue Scheduling (c) FCFS (d) None of the above Ans. (c) 58. Transponders are used for which of the following purposes (a) Uplinking (b) Downlinking (c) Both (a) and (b) (d) None of the above Ans. (c) 59. The format specifier -%d is used for which purpose in C (a) Left justifying a string

(b) Right justifying a string (c) Removing a string from the console (d) Used for the scope specification of a char[] variable Ans. (a) 60. Virtual functions allow you to (a) Create an array of type pointer-to-base-class that can hold pointers to derived classes (b) Create functions that have no body (c) Group objects of different classes so they can all be accessed by the same function code (d) Use the same function call to execute member functions to objects from different classes 62. A sorting algorithm which can prove to be a best time algorithm in one case and a worst time algorithm in worst case is (a) Quick Sort (b) Heap Sort (c) Merge Sort (d) Insert Sort Ans. (a) 63. What details should never be found in the top level of a top-down design? (a) Details (b) Coding (c) Decisions (d) None of the above Ans. (c) 64. In an absolute loading scheme, which loader function is accomplished by assembler (a) Reallocation (b) Allocation (c) Linking (d) Both (a) and (b) Ans. (d) 65. Bankers algorithm for resource allocation deals with (a) Deadlock prevention (b) Deadlock avoidance (c) Deadlock recovery (d) None of these Ans. (b) 66. Thrashing can be avoided if (a) The pages, belonging to the working set of the programs, are in main memory (b) The speed of CPU is increased (c) The speed of I/O processor are increased (d) All of the above Ans. (a) 67. Which of the following communications lines is best suited to interactive processing applications? (a) Narrowband channels (b) Simplex channels (c) Full-duplex channels (d) Mixedband channels Ans. (b) 68. A feasibility document should contain all of the following except (a) Project name (b) Problem descriptions (c) Feasible alternative (d) Data flow diagrams Ans. (d) 69. What is the main function of a data link content monitor? (a) To detect problems in protocols (b) To determine the type of transmission used in a data link

(c) To determine the type of switching used in a data link (d) To determine the flow of data Ans. (a) 70. Which of the following is a broadband communications channel? (a) Coaxial cable (b) Fiber optic cable (c) Microwave circuits (d) All of the above Ans. (d) 71. Which of the following memories has the shortest access time? (a) Cache memory (b) Magnetic bubble memory (c) Magnetic core memory (d) RAM Ans. (a) 72. A shift register can be used for (a) Parallel to serial conversion (b) Serial to parallel conversion (c) Digital delay line (d) All the above Ans. (d) 73. In which of the following page replacement policies, Baladys anomaly occurs? (a) FIFO (b) LRU (c) LFU (d) NRU Ans. (a) 74. Subschema can be used to (a) Create very different, personalized views of the same data (b) Present information in different formats (c) Hide sensitive information by omitting fields from the sub-schemas description (d) All of the above Ans. (d) o What are the different models of SDLC? o Differentiate between Spiral and Incremental model? o What is the disadvantage of Incremental model? Give an example to explain. o What do you mean by the Design phase? What are the tools that can be used in this phase? o Coming to C, what is hashing? Why do we use hashing and not arrays? How do we implement a Hash table? o What are function pointers? Give the syntax for the same. o Why do we use pointers in C at all? o You know about structures and union. Why is Union used? Give a real life example in which you&apos;ll use union? o What is SSL? o What is the difference between HTTP and HTTPS? o Explain two of your projects (one should be FYP). o This round took around 20 minutes o What is a process and what is thread o What are the advantages of thread,how does the multithreading look like o What is MultiProcessing and Multitasking o What is a stack and Queue and its applications o Which one out of (stack , Queue) do u use for Infix and Postfix o What is indexing,what are the advantages and Disadvantages of it. o What is DeNormalization,where does it have it&apos;s application o What are the Different Objects in DBMS.

Give a Sql Query which uses Outer Join.(she gave me 2 tables and question on it)

Technical Questions C,C++ UNIX,DBMS<CN,JAVA,LINUX Optical fibre OS,Data structures.SQL Micro processors etc., Some Practice Questions Some Practice Questions 1. 33% OF 450 = ? Ans. 148.5 2. 3427 / 16.53 = ? Ans. 202 3.525.0/47.8 = ? Ans. 11 4. 43+557-247 =? Ans. 353 5. 3107*3.082= ? Ans. 9591 6. 48.7 + 24.9 8.7 = ? Ans. 64.90 7. 10995 /95 = ? Ans.115.7365 8. (135-30-14)*7 6 +2 = ? Ans. 3 9. 3/8 * 5.04=? Ans. 1.89 10. 697 /219 = ? Ans. 3.18 11. 0.33 *1496 /13 = ? Ans. 37.98 12. 298 * 312 / 208 = ? Ans. 453.54 13. 420% OF 7.79 = ? Ans. 32.718 14.0.26 + 1/8 = ? Ans. 0.385 15.8/64 +64/16 =? Ans. 4.14 16. 2.84+1/4= ? Ans. 3.09 17. 66.17+1/3= ? Ans. 67.03 18. 907.54 / 0,3073= ? Ans.3002 19.There are two categories of persons in ratio A:B = 2:3. A type earns 2.5 dollars/hr and B type 1 dollar/hr total money earned by both is 24dollars. Then what is the total number of persons Ans. 15 20.Which of the following are prime numbers (a) 119 (b) 115 (c) 127 (d) none Ans. (c) 21. If A = C, B = 2D what should be done to make the ratio same. i.e.a/b = c/d Ans. Multiply A by 2 22. If P=Total number of components, Q = number of defective components .What is the % of non defective components? Ans. (p-q) / p*100 23. If the cost of an article is x , first discount given is y% of cost, second discount given is z% of cost . The selling price of x is Ans. x (1-y / 100) (1- z / 100) VERBAL SECTION Directions: Give the synonyms for the following words 1. Depreciation: deflation, depression, devaluation, fall, slump 2. Deprecate : feel and express disapproval, 3. Incentive : thing one encourages one to do (stimulus) 4. Echelon : level of authority or responsibility 5. Innovation : make changes or introduce new things

6. Intermittent : externally stopping and then starting 7. Detrimental: harmful 8. Conciliation : make less angry or more friendly 9. Orthodox: conventional or traditional, superstitious 10. Fallible : liable to error 11. Volatile : ever changing 12. Manifest: clear and obvious 13. Connotation : suggest or implied meaning of expression Freshersworld.com 14. Reciprocal: reverse or opposite 15. Agrarian : related to agriculture 16. Vacillate : undecided or dilemma 17. Expedient : fitting proper, desirable 18. Simulate : produce artificially resembling an existing one. 19. Access : to approach 20. Compensation: salary 21. Truncate : shorten by cutting 22. Adherence : stick 23. Heterogeneous: non similar things 24. Surplus : excessive 25. Assess : determine the amount or value 26. Cognizance : knowledge 27. Retrospective : review 28. Naive : innocent, rustic 29. Equivocate : tallying on both sides, lie, mislead Freshersworld.com 30. Postulate : frame a theory 31. Latent : dormant, secret 32. Fluctuation : wavering, 33. Eliminate : to reduce 34. Affinity : strong liking 35. Expedite : hasten 36. Console : to show sympathy 37. Adversary : opposition 38. Affable : lovable or approachable 39. Decomposition : rotten 40. Agregious : apart from the crowd, especially bad 41. Conglomeration: group, collection 42. Aberration: deviation 43. Augury : prediction 44. Creditability : ability to common belief, quality of being credible 45. Coincident: incidentally 46. Constituent : accompanying 47. Differential : having or showing or making use of 48. Litigation : engaging in a law suit 49. Moratorium: legally or officially determined period of delay before fulfillment of the agreement of paying of debts. 50. Negotiate : discuss or bargain 51. Preparation : act of preparing 52. Preponderant : superiority of power or quality 53. Relevance : quality of being relevant 54. Apparatus : appliances 55. Ignorance : blindness, in experience 56. Obsession: complex enthusiasm 57. precipitate : speed, active SERIES SECTION: Directions: In the following questions complete the series NOTE: This section is quite tough and consists of 26 questions to be done in 10 minutes. Please keep track of time. 1. A C B D E F G I I H K J L Ans. H 2. A I Z B E Y C I X D I G E N J W Ans. W 3. A D G J M P R W T S Ans. S 4. A B C E F G I J K M L O N P Ans. M 5. A B F G K L P Q T S V U W Ans. U

6. J W X U V S T Q P S E T Ans. Q 7. A R H X Y T D T W S T N P T K R Ans. P 8. F M B I P Z V I E V I R Y O U 9. N Z I Y C X KW F J F V M Y Ans. V 10. A A S A S P A S P K A R Q T S U Ans. S 11. A E C P S T R U E Ans. U 12. B B P R D D L N F F I K H Q J I K Ans. H 13 A Z E X I V M T R Q N S O Ans. Q 14. A B D G K P L I W U X Ans. U 15. B C D A E G H I F J L M N L K N M O Ans. K 16. X W E F G V U H I J K P N S R T Ans. T 17. O D J T O P Q N O E R T Q O U V W Ans. O 18. P R N U U P E J R B B H V U N E Ans. E 19.L U L M G M N F N P S O N Q P S Ans. P 24. Total balls are z, the number of red balls is n and the remaining are blak balls,then the % of black balls equal to ? Ans. (z n) / z*100 25. 10995 + 95 = ? Ans. 11090 26. A / B = C; C > D then (a) A is always greater than D (b) C is always greater than D (c) B is always less than D (d) None of these Ans. (a) 27. If for H hours of work the salary is S and the employee gets x hours of medical leave, then what is the salary/hr ? Ans. s/H-x 28. ( 1/6 of 596) / (0.695) = ? Ans. 142 29. 35-30 + 4/7 5 + 1 = ? Ans. 3 30. If B>C and A<C which of the following is larger than A+B+C Ans. ( A + B )C 31. If on a salary of Rs.S per month,one has to pay one tax of x Rs. and a second type of tax of y Rs then % of salary taken home is? Ans. s-(x+y)/s * 100 32. B>A then which expression will be highest value (a) A-B (b) AB (c) A+B (d) Cant Say Ans. (b) 33. K, L are men who take home a salary of x, y. The total amount taken home is Ans. Kx + Ly 34. If out of X bulbs y bulbs are broken, the % of non broken bulbs Ans. (x-y) / x*100 35. If on a salary s per month, a tax of x% of the salary and another of r% of the salary is deducted what is the income. Ans. s*(1-(x+r)/100 36. 0.512 * 18902358 =? Ans. 9678007.296 37. If c = a/b; a-1 = c, what is the relation between a and b? Ans. b = a/a-1 38. 6.29% of 2.8 =? Ans. 0.18 39. 0.398 * 456= ? Ans. 181.49 40. 0 < x < 1 which is greater (a) 1/x2 (b) 1/x (c) x (d) x2 Ans. (a) 41. What is the sum of 7 consecutive odd numbers with 27 as the fourth number Ans.189 42. If the % of defective balls is 10% balls,and the number of defective balls is 5.The number of balls is Ans.50

WIPRO Direction for questions 1 7: Read the following passage and answer the questions given below. PASSAGE To remake the world (including Nature), Fourier mobilized: an intolerance (for Civilization), a form (classification), a standard (pleasure), an imagination (the scene), a discourse (his book), all of which

pretty well defines the action of the signifier or the signifier in action. This action continually makes visible on the page a glaring lack, that of science and politics, that is, of the signified. What Fourier lacks (for that matter voluntarily) points in return to what we ourselves lack when we reject Fourier : to be ironic about Fourier is always even from the scientific point of view to censure this signifier. Political and Domestic (the name of Fouriers system), science and Utopia, Marxism and Fourieris , are like two nets whose meshes are of different sizes. On the one hand, Fourier allows to pass through all the science that Marx collects and develops; from the political point of view (and above all since Marxism has given an indelible name to its shortcomings), Fourier is completely off to one side, unrealistic and immoral. However, the other facing net allows pleasure, which Fourier collects, to pass through. Desire and Need pass through, as though the two nets were alternatively superimposed, playing at topping hands. However, the relationship of Desire and Need is not complementary (were they fitted one into the other, everything would be perfect), but supplementary: each is the excess of the other. The excess: what does not pass through. For example, seen from today (i.e., after Marx), politics is a necessary purge; Fourier is the child who avoids the purge, who vomits it up. The vomiting of politics is what Fourier calls Invention. Fourierist invention (For me, I am an inventor, and not an orator) address the absolutely new, that about which nothing has yet been said. The rule of invention is a rule of refusal: to doubt absolutely (more than did Descartes, who Fourier thought, never made more than a partial and misplaced use of doubt), to be in opposition with everything being done, to treat only what has not been treated, to stand apart from literary agitator Book People, to preach what opinion holds to be impossible. It is in sum for this purely structural reason (old/new) and through a simple constraint of the discourse (to speak only where there has not yet been speech) that Fourier is understood in the modem sense. Fourier repudiates the writer, the certified manager of good writing, of literature, he who guarantees decorative union and thus the fundamental separation of substance and form. In calling himself an inventor (I am not a writer, but an inventor), he places himself at the limit of meaning, what we today call Text. Perhaps, following Fourier, we should henceforth call inventor (and not writer or philosopher) he who proposes new formulae and thereby invests, by fragments, immensely and in detail, the space of the signifier. 1. According to the author (1) Fourier does not say anything about modern politics (2) Fourier speaks volumes about modern politics (3) The author makes a good commentary on modern politics (4) The author is silent about modern politics 2. Which is the most appropriate title for the passage? (1) Philosopher and writer (2) Inventor, not writer (3) Writer, not inventor (4) Inventor and writer 3. Which of the following is the author of the statement, For me, I am an inventor, and not an orator. (1) The author of the passage (2) Karl Marx (3) Fourier (4) Descartes 4. According to the passage, (1) Political and domestic belong to the same category (2) Science and utopia belong to the same category (3) Marxism and Fourierism belong to the same category (4) Science and utopia belong to different categories 5. According to Fourier, (1) One who creates a text is a writer (2) One who creates a text is an inventor (3) A writer calls himself an inventor (4) A philosopher calls himself an inventor

6. According to the author of the passage, (1) Desire and need perfectly fit into each other (2) Desire and need do not fit into each other (3) Desire is a necessary purge (4) Fourier is the child of the purge 7. According to the passage, (1) Fourier thought that Descartes made only a partial use of doubt (2) Descartes thought the Fourier made only a partial use of doubt (3) The author of the passage made only a partial use of doubt (4) Descartes made full use of the doubt Directions for questions 8 10: Each of the following questions consists of a word printed in capital letters, followed by four words or phrases. Choose the word or phrase that is most nearly similar in meaning to the word in capital letters. 8. KITSCH: (1) uproariously funny (2) tasteless (3) trendsetting (4) offensive 9. OEUVRE: (1) an artists first work (2) masterpiece (3) latest work (4) entire body of work 10. BARBITURATE: (1) tonic (2) sedative (3) cleaning agent (4) sharp object Direction for questions 11 12: In each of the following questions, a related pair of words are linked by a colon, followed by four pairs of words. Choose the pair, which is most like the relationship expressed in the original pair in capital letters. 11. CAPTAIN : SHOAL:: (1) lawyer : litigation (2) pilot : radar (3) doctor : hospital (4) solider : ambush 12. MENDACITY : HONESTY :: (1) truth : beauty (2) courage : fortitude (3) courage : cravenness (4) turpitude : depravity Directions for questions 13 15: Each question consists of sentences, which has one or two blanks, each blank indicating that something has been omitted. Beneath each sentence are four sets of words, labelled (1) through (4). Choose the word or set of words that when inserted in the sentence, best fits the meaning of the sentence as a whole. 13. Perhaps because something in us instinctively distrusts such displays of natural fluency, some readers approach John Updikes fiction with _________. (1) bewilderment

(2) suspicion (3) veneration 4) recklessness 14. We were amazed that a man who had been heretofore the most _________ of public speakers could, in a single speech, electrify an audience and bring them cheering to their feet. (1) masterful (2) auspicious (3) pedestrian (4) accomplished 15. Despite the mixtures _________ nature, we found that by lowering its temperature in the laboratory we could dramatically reduce its tendency to vaporize. (1) volatile (2) resilient (3) insipid (4) acerbic Directions for Questions 16-20: Read the passage and answer the questions that follow on the basis of the information provided in the passage. The Mayan Indians lived in Mexico for thousands of years before the Spanish arrived in the 1500s. The Mayan were an intelligent, culturally rich people whose achievements were many. They had farms, beautiful palaces, and cities with many buildings. The Mayan people knew a lot about nature and the world around them. This knowledge helped them to live a better life than most people of that time, because they could use it to make their lives more comfortable and rewarding. Knowledge about tools and farming, for instance, made their work easier and more productive. In ancient Mexico there were many small clearings in the forest. In each clearing was a village with fields of corn, beans, and other crops around it. To clear the land for farms, the Mayan cut down trees with stone axes. They planted seeds by digging holes in the ground with pointed sticks. A farmer was able to grow crops that produced food for several people. But not every Mayan had to be a farmer. Some were cloth makers, builders, or priests. The Mayan believed in many gods, including rain gods, sun gods, and corn gods. The people built large temples to honor the Mayan gods. Skillful workers built cities around these temples. It was difficult for them to construct these cities, because they had no horses to carry the heavy stone they used to build with. Workers had to carry all of the building materials themselves. Today, many of these ancient Mayan cities and temples are still standing. Although the cities that the Mayan built were beautiful, and the people worked hard to build them, very few of the people lived in them. Usually, only the priests lived in the cities.The other people lived in small villages in the forests. Their houses were much simpler than the elaborate structures in the cities. They lived in small huts with no windows. The walls were made of poles covered with dried mud, and the roof was made of grass or leaves. Most Maya lived a simple life close to nature. Measuring time was important to the Maya, so they developed a system for measuring it accurately. Farmers needed to know when to plant and harvest their crops. Mayan priests made a system to keep track of time. They wrote numbers as dots (...) and bars (-). A dot was one and a bar was five. The Mayan priests studied the Sun, Moon, stars, and planets. They made a calendar from what they learned. The year was divided into 18 months of 20 days each with five days left over. The Mayan calendar was far more accurate than the European calendars of the time. Around the year 800, the Maya left their villages and beautiful cities, never to return. No one knows why this happened. They may have died from an infectious disease. They may have left because the soil could no longer grow crops. Archaeologists are still trying to find the lost secrets of the Maya. They are still one of our greatest mysteries. 16. Read this sentence from the story. The Maya were an intelligent, culturally rich people whose achievements were many. What is a synonym for the word achievements?

A) mistakes B) successes C) skills D) roads 17. The Maya lived in Mexico A) only after the Spanish arrived B) at the same time as the Spanish C) only for a few years D) thousands of years before the Spanish. 18. Many Mayan cities and temples are still standing today because A) they were so well built. B) they are not very old. C) they have been rebuilt. D) there is never any bad weather in Mexico. 19. What is the main idea of this article? A) The Mayan calendar was more accurate than the European calendar. B) The Maya were excellent farmers. C) The Maya were a culturally rich, advanced society. D) The Mayan cities were difficult to build. 20. MOST Mayan lived A) in beautiful cities. B) in huts made of poles, mud, and leaves. C) in caves. D) in stone temples. Section#2

Direction for questions 1 2: Read the following information carefully and answer the questions given below. A person had left his home at the age of about 14 years. He remembers that the day was Monday. Since then he has been fasting on every Tuesday. Today he is celebrating his 60th birth anniversary in a fivestar hotel with his friends. As today is Tuesday, he is not taking anything except wine. At the end of the party he discloses that it is his 2400th Tuesday of fasting. 1. Today is 9th Oct 2001. On which date had he left his home? (1) 10th Oct 1955 (2) 9th Oct 1955 (3) 8th Oct 1955 (4) None of these 2. He was born on (1) Wednesday (2) Tuesday (3) Monday (4) Thursday 3. If the ratio between the roots of the equation lx2 + nx + n = 0 is p : q, then the value of n is: (1) 4 (2) 3

(3) 0 (4) 1 3. The area of the largest circle that can be drawn inside a rectangle with sides 7 m by 6 m, is: (1) 28 m2 (2) 64 m2 (3) 59 m2 (4) None of these 4. For a sphere of radius 10 cm, what percent of the numerical value of its volume would be the numerical value of the surface area? (1) 26.5% (2) 24% (3) 30% (4) 45% 5. A consignment of 20 picture tubes contains 5 defectives. Two tubes are selected one after the other at random. The probability that both are defective assuming that the first tube is not replaced before drawing the second, would be: (1) (2) (3) (4) None of the above 6. A service complaint centre receives, on an average 2 telephone calls every 15 minutes. The change that 3 calls be received in a 30 minute interval, would be around (1) 19% (2) 1.9% (3) 2.5% (4) None of the above 7. If z = and x, y both are increased in value by 10% then the value of z: (1) Remains unchanged (2) Increases by 10% (3) Increases by 11% (4) Increases by 20% 8. If the areas of three adjacent faces of a cuboid are x, y, z respectively, then volume of the cuboid is: (1) xyz (2) 2xyz (3) (4) 3 9. One of Mr. Horton,his wife,their son,and Mr. Horton's mother is a doctor and another is a lawyer. a)If the doctor is younger than the lawyer, then the doctor and the lawyer are not blood relatives. b)If the doctor is a woman, then the doctor and the lawyer are blood relatives. c)If the lawyer is a man, then the doctor is a man. Whose occupation you know? Ans: Mr. Horton: 10. A person wants to buy 3 paise and 5 paise stamps costing exactly one rupee. If he buys which of the following number of stamps he won't able to buy 3 paise stamps. Ans: 9

11. Mr. and Mrs. Aye and Mr. and Mrs. Bee competed in a chess tournament.Of the three games played: a)In only the first game werethe two players married to each other. b)The men won two games and the women won one game. c)The Ayes won more games than the Bees. d)Anyone who lost game did not play the subsequent game. Who did not lose a game? Ans:Mrs.Bee 12. Two cars are 15 kms apart. One is turning at a speed of 50kmph and the other at 40kmph . How much time will it take for the two cars to meet? Ans: 3/2 hours 13. Three piles of chips--pile I consists one chip, pile II consists of chips, and pile III consists of three chips--are to be used in game played by Anita and Brinda.The game requires: a)That each player in turn take only one chip or all chips from just one pile. b)That the player who has to take the last chip loses. c)That Anita now have her turn. From which pile should Anita draw in order to win? Ans:Pile II 14. In a class composed of x girls and y boys what part of the class is composed of girls A. y/(x + y) B. x/xy C. x/(x + y) D. y/xy Ans:C 15. (38 x 142) (4096) =? 1) 337.25 2) 269.8 3) 490 4) 84.3125 5) None of these Ans:1 16. There are two candles of equal lengths and of different thickness. The thicker one lasts of six hours. The thinner 2 hours less than the thicker one. Ramesh lights the two candles at the same time. When he went to bed he saw the thicker one is twice the length of the thinner one. How long ago did Ramesh light the two candles . Ans: 3 hours. 17. (17.52)2 =? 1) 280.9504 2) 290.5904 3) 306.9504 4) 280.5904 5) None of these Ans:3 18. (37% of 2370) (41% of 2105) =? 1) 13.85

2) 12.56 3) 13.10 4) 12.15 5) None of these Ans:1 19. In a group of 15,7 have studied Latin, 8 have studied Greek, and 3 have not studied either. How many of these studied both Latin and Greek A.0 B.3 C.4 D.5 Ans.B 20. If 13 = 13w/(1-w) ,then (2w)2 = A.1/4 B.1/2 C.1 D.2 Ans:C Section#3 1) What is the output of the program given below ? #include<stdio.h> int main() { enum status { pass, fail, atkt}; enum status stud1, stud2, stud3; stud1 = pass; stud2 = atkt; stud3 = fail; printf("%d, %d, %d\n", stud1, stud2, stud3); return 0; } 2) Point out the error in the following program. #include<stdio.h> int main() { display(); return 0; } void display() { printf("vibin.com"); } 3) A long double can be used if range of a double is not enough to accommodate a real number. 4) How will you free the memory allocated by the following program? #include<stdio.h> #include<stdlib.h> #define MAXROW 3 #define MAXCOL 4 int main()

{ int **p, i, j; p = (int **) malloc(MAXROW * sizeof(int*)); return 0; } 5) What does fp point to in the program ? #include<stdio.h> int main() { FILE *fp; fp=fopen("trial", "r"); return 0; } 6) What will be the output of the program? #include<stdio.h> #include<stdarg.h> void fun(char *msg, ...); int main() { fun("freshersworld", 1, 4, 7, 11, 0); return 0; } void fun(char *msg, ...) { va_list ptr; int num; va_start(ptr, msg); num = va_arg(ptr, int); num = va_arg(ptr, int); printf("%d", num); } 7) Point out the error in the following program. #include<stdio.h> #include<stdarg.h> fun(...); int main() { fun(3, 7, -11.2, 0.66); return 0; } fun(...) { va_list ptr; int num; va_start(ptr, n); num = va_arg(ptr, int); printf("%d", num);

} 8) Point out the error if any in the following program (Turbo C). #include<stdio.h> #include<stdarg.h> void display(int num, ...); int main() { display(4, 'A', 'a', 'b', 'c'); return 0; } void display(int num, ...) { char c; int j; va_list ptr; va_start(ptr, num); for(j=1; j<=num; j++) { c = va_arg(ptr, char); printf("%c", c); } } 9) What does the following declaration mean? int (*ptr)[10];
WIPRO VERBAL SECTION Direction 1-5 : In each of the following questions, find out which part of the sentence has an error. if there is no mistake the answer is no error 1. Twice twelve / makes / twenty four / No error A B C D Ans: B 2. The flight purser took control / of the plane after / the pilot had had / a heart attack / No error A B C D E Ans: C 3. My friend did not see me / for many years / when I met him last week / No error A B C D Ans : A 4. We grieve our loss and cry helplessly / while we should be fighting for our rights / and die a noble death / No error A B C D Ans : B 5. Work hard / lest you will / fail / No error A B C D Ans : D Directions 6-10: The following questions, consist of two words each that have a certain relationship to each other, followed by four lettered pairs of words. Select the lettered pair that has the same relationship as the original pair of words.

6. Kangaroo : Australia A) Whale : River B) Elephant : Russia C) Penguin : Antarctica D) India : Peacock Ans: C 7. Coronation : Reign A) Vaccination : Immunity B) Sculptor : Statue C) Degree : Graduate D) Summer : Rain Ans: D 8. Grain : Salt A) Chip : Glass B) Blades : Grass C) Shred : Wood D) Shard : Pottery Ans : A 9. Scythe ; Reaping A) Light ; Shining B) Shears : Cutting C) Saws : Gluing D) Screws : Turning Ans : B 10. Dislike : Repulsion A) Dream : Sleep B) Steal : Crime C) Reputation : Behaviour D) Intelligence : Wit Ans: D Directions 11-12 : In each of the following questions, a sentence has been given in Active (or passive) voice. Out of the four alternatives suggested select the one which best express the same sentence in Passive (or Active) Voice. 11. His pocket has been picked. A) They have his pocket picked B) Picking has been done to his pocket C) Picked has been his pocket D) Someone has picked his pocket. Ans : D 12. Someone gave her a bull dog. A) She was given a bull dog. B) a bull dog was given to her C) She has been given a bull dog D) She is being given a bull dog by someone Ans : B Directions 13-15 : Pick out the most effective word from the given words to fill in the blank to make the sentence meaningfully complete 13. He succeeded in getting possession..his land after a long court case A) for B) to C) of D) with E) against Ans: C

14. Now a days Rajani is .busy to take care of her health. A) very B) too C) so D) extremely Ans: B 15. Had the police not reached there in time the banditshim A) did have killed B) will have killed C) would kill D) would have killed Ans: D

ANALYTICAL ABILITY The questions 1-2 are based on the following data 6 people A,B,C,D,E and F sit around a table for dinner. Since A does not like C, he doesn't sit either opposite or beside C.B and F always like to sit opposite each other. 1. If A is beside F then who is are the two neighbours of B? (a) D and C (b) E and C (c) D and E (d) Either (a) or (b) Ans. (c) 2. If D is adjacent to F then who is adjacent to C? (a) E and B (b) D and A (c) D and B (d) either (a) or (c) Ans.(d) 3. Complete the sequence A, E ,I ,M ,Q ,U , _ , _ (a) B, F (b) Y, C (c) G, I (d) K, O Ans.(b)

4. If the letters of the word "rachit" are arranged in all possible ways and these words are written out as in a dictionary, what is the rank of the word "rachit". (a) 485 (b) 480 (c) 478 (d) 481 Ans. (d) 5. Ravi's salary was reduced by 25%.Percentage increase to be effected to bring the salary to the original level is (a) 20% (b) 25% (c) 33 1/3% (d) 30% Ans. (c) 6. A and B can finish a piece of work in 20 days .B and C in 30 days and C and A in 40 days. In how many days will A alone finish the job (a) 48 (b) 34 2/7

(c) 44 (d) 45 Ans. (a)

7. How long will a train 100m long travelling at 72kmph take to overtake another train 200m long travelling at 54kmph ? (a) 70sec (b) 1min (c) 1 min 15 sec (d) 55 sec Ans. (b) 8. What is the product of the irrational roots of the equation (2x-1)(2x-3)(2x-5)(2x-7)=9? (a) 3/2 (b) 4 (c) 3 (d) 3/4 Ans. (a) 9. The total population of a village is 5000. The number of males and females increases by 10% and 15% respectively and consequently the population of the village becomes 5600. what was the number of males in the village ? A) 2000 B) 2500 C) 3000 D) 4000 Ans : C 10. Fresh fruit contains 68% water and dry fruit contains 20% water. How much dry fruit can be obtained from 100 kg of fresh fruits ? A) 32 kg B) 40 kg C) 52 kg D) 80 kg Ans : B 11. If "segment" is coded as rffndou, then "ritual" is coded as (a) shutbm (b) qjutbk (c) qhutbk (d) qhubtk Ans. (c) 12. If "football" is "cricket" ,"cricket" is "basketball" ,"basketball" is "volleyball","volleyball" is "khokho" and "khokho" is cricket, which is not a ball game? (a) cricket (b) football (c) khokho (d) basketball Ans. (a) 13. Which of the following is a recursive set of production (a) S --> a|A, A --> S (b) S --> a|A, A --> b (c) S -->aA, A-->S (d) None of these Ans. (c) 14. A sum 's' is divided into 4 parts. second person gets Rs 10 more than first.3rd person is Rs 10 more than second, 4th is 10 more than 3rd.how much amount do 1st person get. Ans: (s-60)/4

15. One ship goes along the stream direction 28 km and in opposite What is the velocity of stream? Ans: 1.5 kmph TECHNICAL QUESTIONS 1. Predict the output or error(s) for the following: main() { char string[]="Hello World"; display (string); } void display (char *string) { printf("%s",string); } Ans: Compiler Error 2. What are the values printed by the following program? #define dprint(expr) printf(#expr "=%d\n",expr) main() { int x=7; int y=3; dprintf(x/y); } a) #2 = 2 b) expr=2 c) x/y=2 d) none Ans: c 2) Parameterization generally involves a .Data table b. Random number c. Environment d. Both A & B e. Both A, B & C Ans: e

direction 13 km in 5 hrs for each direction.

3) The file which is used for recovering from the run time errors known as A. QRS B. TSR C. PNG D. DAT Ans: A

4) Among the following recording modes, which method uses both the objects and mouse coordinates a. Normal b. Low level c. Analog d. All of the above Ans: b 5) Where do you set the action iterations for a specified action? a. Action Settings b. Action Properties c. Action Run Properties d. Action Call Properties

Ans: d 6) Where do you mark an action as reusable? a. Action Settings b. Action Properties c. Action Run Properties d. Action Call Properties Ans: b 7) After running a test that contains both input and output parameters, where can the results of an output parameter be found? a. Local Data Sheet b. Global Data Sheet c. Run-time Data Table d. Design-time Data Table Ans: c 8) If you have a Virtual Object Collection stored on your machine, and you dont want to use it what you must do? a. Disable Virtual Objects in Test Settings b. Remove the Collection from your machine c. Disable Virtual Objects in General Options d. Remove the Collections from the Resources list Ans: c 9. For a 25MHz processor , what is the time taken by the instruction which needs 3 clock cycles, (a)120 nano secs (b)120 micro secs (c)75 nano secs (d)75 micro secs Ans: a 10. For 1 MB memory, the number of address lines required, ( a)11 (b)16 (c)20 (d) 24 Ans. (c)

WIPRO

15-verbal,15-apti,20-technical time 50 minutes.

Section-A verbal ability(15 questions)

1. Select the pair which has the same relationship. TEN:DECIMAL A. B. C. seven:septet four:quartet two:binary

D. Ans-C

five:quince

2. Select the pair which has the same relationship. FILTER:WATER A. B. C. D. Ans-D curtail:activity expunge:book edit:text censor:play

3. Pick out the best one which can complete incomplete stem correctly and meaningfully. Even if it rains I shall come means ...... A. B. C. D. E. Ans-C if I come it will not rain if it rains I shall not come I will certainly come whether it rains or not whenever there is rain I shall come I am less likely to come if it rains

4. Pick out the best one which can complete incomplete stem correctly and meaningfully. With great efforts his son succeeded in convincing him not to donate his entire wealth to an orphanage ...... A. B. C. D. Ans-C and lead the life of a wealthy merchant but to a home for the forsaken children and make an orphan of himself as the orphanage needed a lot of donations

5. Pick out the best one which can complete incomplete stem correctly and meaningfully. It was an extremely pleasant surprise for the hutment-dweller when the Government officials told him that ......

A. B. C. D. E. Ans-B

he had to vacate hutment which he had been unauthorisedly occupying he had been gifted with a furnished apartment in a multi-storeyed building he would be arrested for wrongfully encroaching on the pavement outside his dwelling they would not accede to his request they had received the orders from the court to take possession of all his belongings

6. Choose the word which best expresses the meaning of the given word. CANNY A. B. C. D. Ans-C Obstinate Handsome Clever Stout

7. Choose the word which is the exact OPPOSITE of the given words. RELINQUISH A. B. C. D. Ans-C Abdicate Renounce Posses Deny

8. Choose the one which best expresses the given sentence in Indirect/Direct speech. She said that her brother was getting married. A. B. C. D. Ans-C She said, "Her brother is getting married." She told, "Her brother is getting married." She said, "My brother is getting married." She said, "My brother was getting married."

9. From the given alternatives, choose the one which best expresses the given sentence in Passive/Active voice. Child could not have done this mischief. A. B. C. D. Ans-C This mischief could not be done by a child. This mischief could not been done by a child. This mischief could not have been done by a child. This mischief a child could not have been done.

10. In question below, the passage consist of six sentences. The first and sixth sentence is given in the beginning. The middle four sentences in each have been removed and jumbled up. These are labeled as P, Q, R and S. Find out the proper order for the four sentences. S1: P: Q: R: S: S6: Calcutta unlike other cities kepts its trams. As a result there horrendous congestion. It was going to be the first in South Asia. They run down the centre of the road To ease in the city decided to build an underground railway line. The foundation stone was laid in 1972.

The Proper sequence should be: A. B. C. D. Ans-D PRSQ PSQR SQRP RPSQ

11.In question given below, there is a sentence of which some parts have been jumbled up. Rearrange these parts which are labeled P, Q, R and S to produce the correct sentence. Choose the proper sequence. It has been established that P: Q: R: Einstein was although a great scientist weak in arithmetic

S:

right from his school days

The Proper sequence should be: A. B. C. D. Ans-B SRPQ QPRS QPSR RQPS

12. Rearrange the following five sentences in proper sequence so as to for a meaningful paragraph, then answer the questions given below them. 1. But by then it was too late to correct things. 2. It is impossible to steer such a large project to success without planning. 3. He had to standby and watch helplessly. 4. The whole scheme was destined, to fail from the beginning. 5. Bhaskar started realising this only towards the end. 1. Which sentence should come fifth in the paragraph ? A. 1 Ans-C B. 2 C. 3 D. 4

2. Which sentence should come second in the paragraph ? A. 1 Ans-B B. 2 C. 3 D. 4

3. Which sentence should come third in the paragraph ? A. 5 Ans-A B. 2 C. 3 D. 4

13. Which of phrases given below the sentence should replace the phrase printed in bold type to make the grammatically correct? There are not many men who are so famous that they are frequently referred to by their short names only A. initials

B. C. D. E. Ans-A

signatures pictures middle names No correction required

14. In the question below a sentence broken into five or six parts. Join these parts to make a meaningful sentence. The correct order of parts is the answer. 1. of A. B. C. D. E. Ans-E 42351 52341 25341 25431 25314 2. We 3. Heard 4. him 5. had

15. Read the passage given below and answer the questions that follow The casual horrors and real disasters are thrown at newspaper reader without discrimination. In the contemporary arrangements for circulating the news, an important element, evaluation is always weak and often wanting entirely. There is no point anywhere along the line somewhere someone put his foot down for certain and says, "This is important and that does not amount to row of beans; deserves no ones attention, and should travel the wires no farther". The junk is dressed up to look as meaningful as the real news.

1. The writer of the above passage A. B. C. D. Ans-C seems to be happy with the contemporary arrangements for circulating news is shocked by the casual stories about horrors and disasters reported in the newspapers wants better evaluation of news before publication wants to put his foot down on news stories

2. In the above passage, the phrase "amounts to a row of beans" means that the news A. is weak and often wanting entirely

B. C. D. Ans-B

deserves no one's attention should travel the wires is junk dressed up as real news

3. The passage implies that A. B. C. D. Ans-C there has to be censorship on newspapers there is no point in having censorship newspapers always dress up junk to look meaningful one has to be strict in selecting news items

4. Newspapers lack a sense of discrimination because A. B. C. D. Ans-A they do not separate the real news from mere sensationalism they have to accept whatever is received on the wires limited manpower makes serious evolution impossible people don't see the difference between 'junk' and 'real' news

5.Evaluation of news would imply A. B. C. D. Ans-B less dependence on modern systems of communication more careful analysis of each news story and its value separating beans from junk discriminating horrors from disasters

Section B aptitude (20 questions)

1. The product of the ages of Shalaka and Renilda is 240. If twice the age of Renilda is more than Shalaka's age by 4 years, what is Renilda's age?

Ans-12 years

2. Water flows into a tank 200 m x 160 m through a rectangular pipe of 1.5m x 1.25 m @ 20 kmph . In what time (in minutes) will the water rise by 2 meters? Ans-96 minutes

3. Find the cost of carpeting a room 13 m long and 9 m broad with a carpet 75 cm wide at the rate of Rs. 12.40 per square meter Ans-Rs 1934.40

4. Nine persons went to a hotel for taking their meals 8 of them spent Rs.12 each on their meals and the ninth spent Rs.8 more than the average expenditure of all the nine. What was the total money spent by them? Ans-Rs 117

5. The present worth of a bill due sometime hence is Rs. 1100 and the true discount on the bill is Rs. 110. Find the banker's discount and the banker's gain. AnsBankers Gain-Rs 11 Bankers discount- Rs 121

6. In a stream running at 2kmph,a motor boat goes 6km upstream and back again to the starting point in 33 minutes. Find the speed of the motorboat in still water. Ans-22kmph

7. On 8th march, 2005, Wednesday falls what day of the week was it on 8th march,2004? A. Monday B. Tuesday C. Wednesday D. Friday Ans-A

8. A clock is started at noon. By 10 minutes past 5, the hour hand has turned through A. 145

B. 150 C. 155 D. 160 Ans-C

9. Simple interest on a certain sum of money for 3 years at 8% per annum is half the compound interest on Rs. 4000 for 2 years at 10% per annum. The sum placed on simple interest is A. Rs. 1550 B. Rs. 1650 C. Rs. 1750 D. Rs. 2000 Ans-C

10. Two trains 137 meters and 163 meters in length are running towards each other on parallel lines, one at the rate of 42 kmph and another at 48 kmpb. In what time will they be clear of each other from the moment they meet? Ans-12 sec

11. Worker A takes 8 hours to do a job. Worker B takes 10 hours to do the same Job. How long should it take both A and B, working together but independently, to do the same job? Ans-40/9 days

12. How many minutes does Hridya take to cover a distance of 400 m, if he runs at a speed of 20 km/hr?

13. Ajosh can cover a certain distance in 1 hr. 24 min. by covering two-third of the distance at 4 kmph and the rest at 5 kmph. Find the total distance. Ans-6

14. In a 100 m race, Gunaseelan runs at 8km/hr. If Gunaseelan gives Lucknow a start of 4 m and still him by 15 seconds, what is the speed of Lucknow? Ans-5.76 km/hr

15. A person incurs loss for by selling a watch for rs1140.at what price should the watch be sold to earn a 5% profit ?

16. Three times the first of three consecutive odd integers is 3 more than twice the third. The third integer is A. 9 B. 11 C. 13 D. 15 Ans-D

17. A number consists of 3 digits whose sum is 10. The middle digit is equal to the sum of the other two and the number will be increased by 99 if its digits are reserved. The number is A. 145 B. 253 C. 370 D. 352 Ans-B

18. ickets numbered 1 to 20 are mixed up and then a ticket is drawn at random. What is the probability taht the ticket drawn has a number which is a multiple of 3 or 5? A. 1/2 B. 2/5 C. 8/15 D. 9/20 Ans-D

19. In a lottery, there are 10 prizes and 25 blanks. A lottery is drawn at random. What is the probability of getting a prize? A. 1/10 B. 2/5 C. 2/7 D. 5/7

Ans-C

20. Sam purchased 20 dozens of toys at the rate of Rs. 375 per dozen. He sold each one of them at the rate of Rs. 33. What was his percentage profit? A. 3.5 B. 4.5 C. 5.6 D. 6.5 Ans-C

Section C-Technical 20 questions

1. 'OS' computer abbreviation usually means ? A. B. C. D. Ans-C Order of Significance Open Software Operating System Optical Sensor

2. A system has two IDE hard drives that are each divided into primary and extended partitions, which drive letter is assigned to the primary partition of the second drive? A. B. C. D. E. Ans-B C D E F None of the above

3. While working with MS-DOS, which command will you use to transfer a specific file from one disk to another? A. B. COPY DISKCOPY

C. D. E. Ans-A

TIME RENAME None of the above

4. What type of commands are individual programs kept, as separate files on the hard disk (DOS diskette)? A. B. C. D. E. Ans-A External Internal Change File None of the above

5. When installing PCI NICS you can check the IRQ availability by looking at A. B. C. D. E. Ans-D dip switches CONFIG.SYS jumper settings motherboard BIOS None of the above

6. Voltage4s measured: A. B. C. D. E. Ans-A in parallel in series after breaking the circuit after checking resistance after checking current

7. Pick the correct choice for the 80386SXCPU.

A. B. C. D. E. Ans-B

16 bit word size, 16 bit data path 32 bit word size, 16 bit data path 8 bit word size, 32 bit data path 32 bit word size, 8 bit data path 32 bit word size, 32 bit data path

8. Which one of the following is not an input device? A. Keyboard B. Joystick C. Printer D. Optical Character Reader Ans-C

9. The Input device that is closely related to a touch screen is the A. Keyboard B. Light pen C. Scanned D. Joystick Ans-B

10. A mouse is connected to A. LPT1 port B. LPT2 port C. the serial port D. none of these Ans-C

11. is

A computer virus that actively attacks an anti-virus program or programs in an effort to prevent detection

A. Worm B. Retrovirus C. Trojan D. Ghost virus Ans-B

12. Which network protocol is used to send e-mail? A. FTP B. SSH C. POP3 D. SMTP Ans-D

13.

________ needs a compiler to compile the source code? A. Basic B. C/C++ C. D base D. Oracle Ans-B

14.

The computer is a machine and all other equipment associated with it, are termed as A. Hardware B. Software C. Firmware D. Humanware Ans-A

15. The component of a computer system with the circuitry to control interpretation and execution of an instruction is known as A. ALU

B. Memory C. Control D. CPU Ans-B

16. _____ help prevent power surges. A. B. C. D. E. Ans-A Surge suppressor Spike protector UPS system High-grade multi-meter None of the above

17. Which DOS driver is used to emulate expanded memory? A. B. C. D. E. Ans-B Himem.sys EMM386.exe Mem386.sys Ramdrive.sys None of the above

18. For a Macintosh to print successfully, the System Folder must contain: A. B. C. D. E. Ans-D File sharing software A printer enabler The apple Garamond font set A printer driver None of the above

19. window's settings are recorded in

A. WINDOWS.INI B. WIN.INI C. SYSTEM.INI D. GROUP.INI Ans-B

20. Servers are computers that provide resources to other computers connected to a A. Client B. Network C. Super Computer D. Mainframe Ans-B

WIPRO

VERBAL SECTION ( 1-20)

Read the following Passage and select the best answer to questions(1-4) among the given choices Routines are the unreturned algorithms followed by each one of us, every in life. Routine is a chain of events, which never changes there order once it is prioritized. Following the routine is a schedule of events. For a student it would it be assignments, attending schools, coaching classes or doing a Project. For the business man, brandishing the tiniest mobile phone and shielded by the doctor than black shade of Mercedes, schedule is restricted to attend meetings, presentations and entertaining new Prospective clients. Sometimes life begins so hectic that you feel as if you are the only person who is working harder than all others. Such type of thoughts comes to us due to thinking about ourselves. Others may be facing the same shade of destiny as you, but you think there are luckier than you. Yes, the grass on the other side is always greener and fresher. Maintaining your cool, at the times of the difficulty and in spite of hectic-schedules is the key to a bright career and success in life. Because, unless we ourselves change the pace with the change in times and keep ourselves abreast of the latest time table of our organizer, we will lag behind. The more the things one has to do or one is into, more is his involvement in a mental, physical or social way into these things. Due to this his own personal problems are out of sight because, all time his mind is thinking of completing the task undertaking problems which are out of sight are out of mind. Each thing that we do adds to our personality. It shapes our thinking and makes us more organized, experienced knowledgeable and creative. The time and effort that we put in every day into tasks is the brick and mortar of our future life. So friends, it is always better to be busy rater then idle. Hasnt everyone heard that an idle mind is the devils work shop? Behind every successful man is a devotedly followed schedule.

1) The author of the passage is of the opinion that a) The world is merciless to a few persons b) Behind every successful there is a women c) All other people seem to be luckier than the author d) We must keep cool even in difficult times

2) What is the general observation about human nature that the writer makes? a) People generally hate to be tied to a schedule or routine b) People generally feel that they can progress by following a schedule c) People feel that they alone are overburdened and being treated crudely d) People follow routines happily because they require less effort.

3) According to the above passage, we must a) Not involve ourselves too much in the work that we do b) Avoid keeping hectic schedules because they must harm our body. c) Be loathing to put time and sweet into our bodies. d) Run neck and neck with Gods timetable less we lag behind.

4) The result of many things we do results in a) Enhancing our personality b) Bettering our organizational and creative ability c) Giving us knowledge and experience d) All the above

5) From the following sets of words, choose the word correctly spelt a) Accomodate b) Acommodate

c) Accommodate d) Accommodate

6) Select the option that gives the correct meaning of the given idiomatic expression or phrase. A rising star a) A star that rises the highest in the sky b) A star which shines the most. c) A person coming into prominence d) A star that appears only once in a month.

7) Select among the given choices the word or phrase for each blank that best fits the meaning of the sentence as a whole. The recent nuclear threat is the ________________of 12 years of terrorist attacks, which have inflicted on us more casualties both military and civilian than Iraq did on Kuwait a) Culmination b) Reflection c) Dogma d) Defiance

8) Select the option that can be substituted the given sentence a) Condolence b) Calumny c) Obituary d) Corrigendum

9) Given below are sentences which when arranged logically form a coherent passage? Choose the given option which gives the correct sequence. a) The alternative was a blitz by the health workers to popularize preventive measures. b) The information was considered inadequate. c) People have been reading about AIDS in the mass media

d) Nobody is sure as to low effective this would be. e) People were also not being influenced enough to take preventive measures. A) cbade B) abcde C) bacde D) cdabe

10) chose the lettered pair that express a relationship most similar to the relationship expressed in the capitalized pair HOBBLE ::WALK a) Gallop ::Run b) Stammer::Speak c) Stumble::Fall d) Sniff::Smell

11) Select among the given choices the word or phrase for each blank that best fits the meaning of the sentence as a whole. While there is hope in the one-day game, where Indian team has at last cast aside the chains of ________________thought, there is a very long journey to make in Test cricket a) Delinguent b) Delirious c) Decadent d) Disruptive

12) Select among the given choices the word or phrase to replace the underlined phrase ion the following sentence Our departure from this place from now depends on they coming here. a) Depends on them coming here b) Depends on their coming here c) Depend on theirs coming here d) Depends on theirs coming here

13) Choose the lettered pair that express relationship most similar to the relationship expressed in the capitalized pair. FRAYED::FABRIC a) Thawed::Ice b) Renovated::Building c) Frazzled::Nerves d) Watered::Lawn

14) Select the option that gives the correct meaning of the given idiomatic expression or phrase To wash ones hand off a) To wash ones hand with water b) To wash ones hand with soap c) To disclaim the entire responsibility d) To put ones firm in trouble

15) Given below are sentences which when arranged logically from a coherent passage. Choose the given option which gives the correct sequence. a) What is amazing is that resending of decisions does not seem to be one bit embarrass the government. b) Rollback appears to have now became an institutionalized decision making process of the government c) This is the certainly suggested by the frequency on prices and subsidies are announced and them the status quo restored in part or in full. d) It has well and truly functioning an integral part of the functioning of the government. e) Even the word, Rollback , has became a permanent entry lexicon of political discourse. A) abcde B) bcade C) bcdae D) ebdca

16) Choose the lettered pair that expresses relationship most similar to the relationship expressed in the capitalized pair. LACHRYMOSE::TEARS a) Effusive::requests b) Ironic::jests c) Morose::speeches d) Verbose::words

17) Select among the given choices that is most nearly opposite word AUTONOMY a) submissiveness b) dependence c) subordination d) slavery

18) Select among the given choices that is most nearly similar word OCCULT a) Dreadful b) Harmless c) Amazing d) Mysterious

19) Given below are words three of which belong to same category. Find the word which does not belong to that category a) Convulse b) Soothe c) Compose d) Assuage

20) One of the words each set of four words is misspell . Choose the misspell word. a) Effeminate b) Endeavour c) Exhilaration d) Exhaustion

ANALYTICAL SECTION ( 21-40)

21) Ashok bought 16kg of wheat at the rate of Rs 11.50 per kg and 14 kg wheat at rate of Rs 14.50 per kg. He mixed the two and sold the mixture at the rate of 13.50 kg. What is his gain in the transaction ? a) Rs 16 b) Rs 18 c) Rs 24 d) Rs 28

22) What is the probability of answering a multiple choice question correctly, If you know that one of the answer if definitely wrong but you have to guess between the 3 remaining answers? a) b) c) d) 1/3

23) What should come in place of question mark (?) in the following number series? 22, 66, 132, 792 , ? a) 1584 b) 2376 c) 1246 d) 2674

24) The difference between two numbers is one-seventh of the sum of these numbers two numbers. What is the ratio of the two numbers? a) 3:4 b) 4:3 c) 2:3 d) 3:2

25) On return from a business trip Mr. Chidambaram was to be picked up from the railway station by his coachman. Someone he managed a train connection earlier and thus arrived two hours too early. Immediately on arrived he rang up home for the coach and was told that it had just left in order to be exactly in time for the train by which he was scheduled to come. To save the time he started walking homeward at 3kmph. On the way he met the coachman who brought him home an hour before schedule. How far is the Mr. Chidambarams house from the railway station? a) 12 Km b) 15 Km c) 18 Km d) 23 Km

26) A train travelled from Delhi to Patna and back in a certain time at the rate of 60kmph.But if the train had travelled from Delhi to Patna at rate of rate 80Kmph. And back from Patna to Delhi at the rate of 40Kmph. It would take two hours Longer. Find the distance between Delhi and Patna? a) 480Km b) 460Km c) 450Km d) 465Km

27) On a certain pasture the grass grows at an even rate. It knows that 40 cows can graze on it for 40 days before the grass is exhausted, but 30 cows can graze there as long as 60 days. How many would the pasture last if 20 Cows were to graze on it? a) 140days b) 100 days c)110 days d) 120 days

28) Most people in the United States view both neither big nor small business as particulary efficient or dynamic and regard both as providing consumers with fairly priced goods and services. However, most people consistently perceive small business as a force for good in Society, whereas bid business is perceived as socially responsible only in times of prosperity. The statement above, if true, would provide the strongest support for which one of the following hypotheses? a) Most of the people in the United states give little thought to the value of business to society. b) If small business were regarded as being more dynamic, it, too, would receive strongly favourable ratings only in times of general prosperity. c) Many people in the united states regard the social responsibility of big business as extending beyond providing consumers with fairly priced goods and services. d) Even if people did not regard big business as providing consumers with value for their money, they would still regard it as socially responsible in times of general prosperity.

29) In the first innings of the First Test match between India and West Indians at Sabina Park, Kingston. February 18 to 23 1971, the bowling honors in the Indians team were shared by B.S.Bedi, E.A.S. Prasanna and S.Venkataraghavan. Can you, based on the following statements, conclude the number of wickets each took? 1) Either Bedi took 5 wickets and S.Venkataraghavan took 3, or Prasanna took one more than S.Venkataraghavan. 2) Either Bedi took half the wickets or one of the players was run out. 3) The sum of Bedis victims and double those of prasanna is one more than three times Venkataraghavans. a) Bedi-2, Prasanna-4, and Venkataraghavan-3 b) Bedi-3, Prasanna-4, and Venkataraghavan-2 c) Bedi-2, Prasanna-4, and Venkataraghavan-4 d) Bedi-2, Prasanna-5, and Venkataraghavan-3

30) The Basic College Council is made up of representatives from the departments in the variousdivisions. From the science Division is one representative from each of the departments of chemistry, Mathematics, and Biology. The social Science Division provides a representative each History, Linguistics, and Economics. A representative from Philosophy and one from Rhetoric serve for the Humanities Division All Council Committees are made up entirely of Council members. Each Committee has exactly four members. Each Committee has at least one member from each Division. The representative from chemistry will not serve on a Committee with the representative from Biology. The representatives from Mathematics and Economics always serve on the same Committees. The representative from Rhetoric will only serve on a Committee on which the representative from Biology or the one from Economics, or both, serve. a) Chemistry, Mathematics, History, Economics

b) Chemistry, Mathematics, History, Philosophy c) Biology, History, Economics, Rhetoric d) Mathematics, Biology, Economics, Rhetoric

31) A train leaves New York City at 7.15 Am and arrives in Buffalo at 2.47 that afternoon. What total length of time does the trip take? a) 6hrs, 28mins b) 7hrs, 12mins c) 7hrs, 32mins d) 8hrs, 12mins

32) After several attempts to district his young parrot from Chewing on furniture, George reluctantly took an experts advice and gently hit the parrots beak whenever the bird started to chew furniture, The bird stopped chewing furniture, but it is now afraid of hands and will sometimes bite. Since Chewing on the furniture would not have hurt the bird, George should not have hit it. When Carlas puppy escaped from her yard, it bounded into a busy street. Although Carla does not generally approve of physical discipline, she hit the puppy sharply with her hand. Now the puppy enters the street only when accompanied by Carla, so, Carla was justified in disciplining the puppy. Which one of the following principles, if established, would justify the judgments about Georges and Carlas actions? a) When disciplining an animal physically, a trainer should use an object such as a rolled up newspapers to avoid making the animal frightened of hands. b) When training an animal, physical discipline should be used only when such discipline is necessary to correct behavior that could result in serious harm to the animal. c) Using physical discipline to train an animal is justified only when all alternative strategies for the correcting undesirable behavior have failed. d) Physical discipline should not be used on immature animals.

33) In a Conventional Clock, how many times does the minutes hand pass the hour hand between noon and midnight? a) 8 times b)10 times c)12 times d)15 times

34) If 24+35=28, 15+49=24, and 69+37=50 then 27+48=? a) 27 b)36 c)48 d)59

35) Its not easy having a mathematics professor as a friend. When she invited you to her house she says, All the houses on my side of the street are numbered consecutively in even numbers. There are Six houses on my Side of my block and sum of their numbers is 9870. You dont know which block I live on, and its a long street, but I will tell you that I live in the lowest number on my side of the block. Whats the number? Or are you just going to ring the first- numbered doorbell for twenty blocks? a) 1580 b)1640 c)1650 d)1680

36) The time to complete a standardized exam is approximately normal with a mean of 70 minutes and a standard deviation of 10 minutes. Suppose the students are given 1 hour to complete the exam. The proportion of students who dont complete the exam is a) 0.500 b)0.159 c)0.341 d)0.841

37) Rajesh brought a TV priced at Rs 2000. He was given two Successive discounts of 10 and 5 percent. If he has to pay percent sales tax, the net amount he paid was a) Rs 2663.40 b) Rs 2660 c) Rs 2350 d) Rs 2460

38) A drawer contains a number of Red and Blue socks. If I pull two out of random, then the chance of them being a Red pair is a half and chance of them being a blue pair is a twelfth. How many socks are in the drawer? a)120 b)140 c)150 d)160

39) A Clock strikes every hour-once at 1.00, twice at 2.00, and so on. The clock takes 6 seconds to strike 5.00 and 12 seconds to strike 9.00. the time needed to strike 1.00 is negligible. How long does the clock need for all its striking in 24hours? a)168 Seconds b)178 Seconds c)188 Seconds d) 198 Seconds

40) Grandpa was feeling generous, so he gave a total of Rs 100 to his Five grandchildren. Starting with the Youngest each got Rs 2.00 more than the next Younger one. In Other words, the youngest got one sum, the next got Rs 2.00 more, and so on. How much did the Youngest Grandchild get? a)14 b)15 c)16 d)17

TECHNICAL SECTION ( 41-50)

41) Which of the following is not associated with magnetic memory? a) Sector b) Pit

c) Track d) All of these

42) NASSCOM a) IT services Industry body b) Manufacturing Industry body c) Infrastructure Industry body d) None of the above

43) Which of the following is not a codec a) DiVX b) EVid c) FLAC d) XviD

44) Which of the following Chipmaker has designed Athlon? a) Intel b) Freescale c) AMD d) IBM

45) Which of the following is a formatted input function in C a) getchar() b) getche() c) gets() d) None of these

46) Rank the following 4 items in terms of access speed:

a) Main Memory b) Magnetic Disk c) Registers d) Cache A) 1,2,3,4 B) 1,3,4,2 C) 3,4,1,2 D) 3,1,4,2]

47) What kind of a structure is a queue? a) First in First out b) First in last out c) First in middle out d) First in second last

48) A Jazz drive is a separate drive. What is the storage space of Jazz drive a) 100KB b) 20-40 GB c) 1-2 GB d) 650 MB

49) Which of the following is doesnt affect resolution of a video Display image? a) Bandwidth b) Raster Scan rate c) Vertical and Horizontal lines of resolution d) Screen size

50) Which of the following statement are applicable to LINUX?

i) Multi-User and Multi-Tasking ii) Open Source OS iii) Developed at AT&Ts Bell Laboratory, USA A) ( i ) only B) ( ii ) only C) Both ( i) and ( ii ) D) ( i) , ( ii) and ( iii )
WIPRO

15-verbal, 15-aptitude, 20-technical

Section-A verbal ability-15 questions

1. Select the pair which has the same relationship. LEVEE: FLOOD A. dam: lake B. armor: helmet C. helmet: injury D. water: tide

2. Select the pair which has the same relationship. HOPE:ASPIRES A. B. C. D. Ans-C love:elevates film:flam fib:lie fake:ordinary

3. Choose the one which best expresses the given sentence in Indirect/Direct speech. She said to her friend, "I know where is everyone" A. B. C. D. Ans-B She told that she knew where was everyone. She told her friend that she knew where was everyone. She told her friend that she knew where is everyone. She told her friend that she knows where was everyone.

4. Choose the one which best expresses the given sentence in Passive/Active voice. After driving Dr Rakesh to the hospital she dropped him at his room. A. B. C. D. Ans-A After being driven to the hospital, Dr Rakesh was dropped at his room. Dr Rakesh was being driven dropped at his room. After she had driven Dr Rakesh to the hospital she had dropped him at his room. After she was driven Dr Rakesh to the hospital she had dropped him at his room.

5. Choose the correct meaning of proverb/idiom To have an axe to grind A. B. C. D. E. Ans-A A private end to serve To fail to arouse interest To have no result To work for both sides None of these

6. Four alternatives are given for the idiom/phrase italicised and underlined in the sentence. Choose the alternative which best expresses the meaning of idiom/phrase. n the armed forces, it is considered a great privilege to die in harness. A. die on a horse back

B. C. D. Ans-C

die in the battlefield die while still working die with honour

7. Choose the one which can be substituted for the given word/sentence. A person of good understanding knowledge and reasoning power A. B. C. D. Ans-B Expert Intellectual Snob Literate

8. Rearrange the following five sentences in proper sequence so as to for a meaningful paragraph, then answer the questions given below them. 1. In his literacy work he spoke of that province of human life which mere intellect does not 2. He has also given innocent joy to many children by his stories like 'Kabuliwalah' 3. These songs are sung not only in bengal but all over the country. 4. Rabindranath's great works sprang from intensity of vision and feelings. 5. He sang of beauty and heroism, nobility and charm. I. Which sentence should come third in the paragraph? A. B. C. D. Ans-B 1 2 3 4 speak.

II. Which sentence should come second in the paragraph? A. B. 1 2

C. D. Ans-A

3 4

III. Which sentence should come fifth in the paragraph? A. B. C. D. Ans-C 1 2 3 4

9. The passage consists of six sentences. The first and sixth sentence is given in the beginning. The middle four sentences in each have been removed and jumbled up. These are labeled as P, Q, R and S. Find out the proper order for the four sentences. S1: P: Q: R: S: S6: For some time in his youth Abraham Lincoln was manager for a shop. Then a chance Customer would come. Young Lincoln way of keeping shop was entirely unlike anyone else's Lincoln would jump up and attend to his needs and then revert to his reading. He used to lie full length on the counter of the shop eagerly reading a book. Never before had Lincoln had so much time for reading as had then.

The Proper sequence should be: A. B. C. D. Ans-B SRQP QSPR SQRP QPSR

10. Pick out the best one which can complete incomplete stem correctly and meaningfully. His appearance is unsmiling but ...... A. B. his heart is full of compassion for others he looks very serious on most occasions

C. D. E. Ans-A

people are afraid of him he is uncompromising on matters of task performance he is full of jealousy towards his colleagues

11. In question given below, a part of the sentence is italicised and underlined. Below are given alternatives to the italicized part which may improve the sentence. Choose the correct alternative If the room had been brighter, I would have been able to read for a while before bed time. A. B. C. D. Ans-C If the room was brighter If the room are brighter Had the room been brighter No improvement

12. Read the each sentence to find out whether there is any grammatical error in it. The error, if any will be in one part of the sentence. The letter of that part is the answer A. B. C. D. Ans-A I could not put up in a hotel because the boarding and lodging charges were exorbitant No error.

13. In the Sentence given below a word is printed in bold. Below it four choices are given. Pick up the one which is most nearly the same in meaning as the word printer in bold and can replaces it without altering the meaning of the sentence. The great artist life was full of vicissitudes. A. B. C. D. Ans-C sorrows misfortunes changes surprises

14. In the sentences below consist of a word or a phrase which is bold. It is followed by four words or phrases. Select the word or phrase which is closes to the OPPOSITE in meaning of the bold word or phrase. Crestfallen he returned as he had never faced such humiliation in the whole of his life. A. B. C. D. Ans-C vainglorious indignant triumphant disturbed

15. Pick out the most effective word(s) from the given words to fill in the blank to make the sentence meaningfully complete. Man does not live by ...... alone. A. B. C. D. Ans-B food bread meals diet

Section-B-Aptitude-15 questions

1. Anita had to do a multiplication. Instead of taking 35 as one of the multipliers, she took 53. As a result, the product went up by 540. What is the new product? (1) 1050 (2) 540 (3) 1440 (4) 1590 Ans-(4)

2. If the letters of the word CHASM are rearranged to form 5 letter words such that none of the word repeat and the results arranged in ascending order as in a dictionary what is the rank of the word CHASM? (1) 24 (2) 31

(3) 32 (4) 30 Ans-(3)

3. An anti-aircraft gun can fire four shots at a time. If the probabilities of the first, second, third and the last shot hitting the enemy aircraft are 0.7, 0.6, 0.5 and 0.4, what is the probability that four shots aimed at an enemy aircraft will bring the aircraft down? (1) (2) (3) (4) 0.084 0.916 0.036 0.964

Ans-(4)

4. Find the range of real values of x satisfying the inequalities 3x - 2 > 7 and 4x - 13 > 15. (1) x > 3 (2) x > 7 (3) x < 7 (4) x < 3 Ans-(2)

5. A stairway 10ft high is such that each step accounts for half a foot upward and one-foot forward. What distance will an ant travel if it starts from ground level to reach the top of the stairway? (1) (2) (3) (4) 30 ft 33 ft 10 ft 29 ft

Ans-(4)

6. Four horses are tethered at 4 corners of a square field of side 70 meters so that they just cannot reach one another. The area left ungrazed by the horses is: (1) (2) 1050 sq.m 3850 sq.m

(3) (4)

950 sq.m 1075 sq.m

Ans-(1)

7. The set S of numbers has the following properties: I) If x is in S, then 1/x is in S. II) If both x and y are in S, then so is x + y. Is 3 in S? (1) 1/3 is in S. (2) 1 is in S. (1) Mark 1 If the question can be answered by using one of the statements alone, but cannot be answered by using the other statement alone. (2) Mark 2 If the question can be answered by using either statement alone.

(3) Mark 3 If the question can be answered by using both statements together, but cannot be answered by using either statement alone. (4) Mark 4 If the question cannot be answered even by using both the statements together.

Ans-(2)

8. A shepherd has 1 million sheep at the beginning of Year 2000. The numbers grow by x% (x > 0) during the year. A famine hits his village in the next year and many of his sheep die. The sheep population decreases by y% during 2001 and at the beginning of 2002 the shepherd finds that he is left with 1 million sheep. Which of the following is correct? 1. x > y 2. y > x 3. x = y 4. Cannot be determined Ans-1

9. Two merchants sell, each an article for Rs.1000. If Merchant A computes his profit on cost price, while Merchant B computes his profit on selling price, they end up making profits of 25% respectively. By how much is the profit made by Merchant B greater than that of Merchant A? 1. Rs.66.67 2. Rs.50 3. Rs.125 4. Rs.200 Ans-2

10. The proportion of milk and water in 3 samples is 2:1, 3:2 and 5:3. A mixture comprising of equal quantities of all 3 samples is made. The proportion of milk and water in the mixture is (1) (2) (3) (4) 2:1 5:1 99:61 227:133

Ans-(4)

11. Two boys begin together to write out a booklet containing 535 lines. The first boy starts with the first line, writing at the rate of 100 lines an hour; and the second starts with the last line then writes line 534 and so on, backward proceeding at the rate of 50 lines an hour. At what line will they meet? 1. 356 2. 277 3. 357 4. 267 Ans-3

12. A tank is fitted with 8 pipes, some of them that fill the tank and others that are waste pipe meant to empty the tank. Each of the pipes that fill the tank can fill it in 8 hours, while each of those that empty the tank can empty it in 6 hours. If all the pipes are kept open when the tank is full, it will take exactly 6 hours for the tank to empty. How many of these are fill pipes? (1) (2) (3) (4) 2 4 6 5

Ans-(2)

13. A predator is chasing its prey. The predator takes 4 leaps for every 6 leaps of the prey and the predator covers as much distance in 2 leaps as 3 leaps of the prey. Will the predator succeed in getting its food? (1) (2) (3) (4) Yes In the 6th leap Never Cannot determine

Ans-(4)

14. Of the 200 candidates who were interviewed for a position at a call center, 100 had a two-wheeler, 70 had a credit card and 140 had a mobile phone. 40 of them had both, a two-wheeler and a credit card, 30 had both, a credit card and a mobile phone and 60 had both, a two wheeler and mobile phone and 10 had all three. How many candidates had none of the three? (1) 0 (2) 20 (3) 10 (4) 18 Ans-(3)

15. At how many points between 10 O'clock and 11 O'clock are the minute hand and hour hand of a clock at an angle of 30 degrees to each other? (1) 2 (2) 4 (3) 1 (4) 3 Ans-(3)

Section-C-C Technical-20 questions

1. A computer assisted method for the recording and analyzing of existing or hypothetical systems is A. B. C. D. E. Ans-B Data transmission Data flow Data capture Data processing None of the above

2. Which programming language is much in vogue among users of microcomputers A. ALGOL

B. C. D. E. Ans-D

APL LOGO FORTH None of the above

3. The ability of a computer system to remain operational despite various failures is A. B. C. D. E. Ans-C Relation Schema Resilience Versatility None of the above

4. Serial access memories are useful in applications where A. B. C. D. E. Ans-D data consists of numbers short access time is required each stored word is processed differently data naturally needs to flow in and out in serial form None of the above

5. which of the following is directly controlled from a keyboard. A. B. C. D. E. Ans-A Card punch Punched paper tape Magnetic disk Magnetic tape None of the above

6. The 7-bit ASCII code widely used A. B. C. D. E. Ans-A For data communication work In IBM mainframe models For coding external memory In large machines produced by non-IBM vendors None of the above

7. A section of code that may only be executed by one process at any one time is A. B. C. D. E. Ans-C CPM Critical resource Critical region Gray code None of the above

8.The microprocessor of a computer cannot operate on any information if that information is not in its. A. B. C. D. E. Ans-B secondary storage main storage ALU logic unit None of the above

9. A computer-controlled device for training exercises that duplicates the work environment is a: A. B. C. D. E. simulator duplicator trainer COM device None of the above

Ans-A

10. ENIAC (Electronic Numerical Integrator and Calculator) had huge advantage over Mark I because it used electronic valves in place of the electromagnetic switches. In the beginning, ENIAC was used for calculating the path of artillery shells. For which other was weapon design was it utilized? A. B. C. D. E. Ans-A hydrogen bomb atom bomb agnimissile fighter aircraft None of the above

11.What is meant by quad-density (QD) diskette? A. B. C. D. E. Ans-D It is double-sided disk It is double density disk It has double the number of tracks per inch All of the above None of the above

12. First generation computers are characterised by A. B. C. D. E. Ans-A Vaccum tubes and magnetic drum Minicomputers Magnetic tape and transistors All of the above None of the above

13. A file containing relatively permanent data is A. B. Random file Transaction file

C. D. E. Ans-C

Master file Sequential file None of the above

14. The Fdisk command in DOS _____ . A. B. C. D. E. Ans-A Partitions the hard drive for use Fixes erroneous hard drive Formats data sectors on a hard drive Checks hard drive for lost clusters None of the above

15. DOS uses letters of the alphabet to designate disk drives. How many disk drives can DOS address (recognize)? A. B. C. D. E. ANs-B 4 26 1 16 None of the above

16.With respect to a network interface card, the term 10/100 refers to A. B. C. D. E. ANs-C protocol speed a fiber speed megabits per seconds minimum and maximum server speed None of the above

17. IDE cables have how many pins? A. B. C. D. E. Ans-D 25 50 100 40 65

18. Which best describes a fragmented hard drive: A. B. C. D. E. ANs-D The platters are bad Data files are corrupted Clusters of data are damaged Files are not stored in consecutive clusters None of the above

19. The ESD wrist strap is designed to protect PC Components or Service Technicians ? A. B. C. D. ANs-C PC Components Service Technicians All of the above None of the above

20. The ATAPI compliance is stands for? A. B. C. D. E. Ans-C CDROM Bus mastering Mass storage device All of the above None of the above

You might also like