faq

Published on June 2016 | Categories: Documents | Downloads: 101 | Comments: 0 | Views: 3039
of 170
Download PDF   Embed   Report

Comments

Content

/* ---------cquest -------Some of the C frequently asked questions (Collected from Express Computer mag.) ******************************************************************************* 1. what is the error in the following sequence of program. int i1; switch(i1) { printf("The value of I1 is :"); case 1: printf("%d",i1); break; case 2: printf("%d",i1); break; default : printf("Invalid entry"); } 2. what is an error in the following sequence of a program. int i1; switch(i1) { case 1: goto lure; break; case 2: printf("This is second choice"); break; default: printf("This is default choice"); } void fun(void) { lure: printf("This is unconditional jump"); } 3. What is an error in the following sequence of a program. int i; switch(i) { case 1: printf("This is first choice"); break; case j: printf("This is second choice"); break; case 1+2+4: printf("This is the third and last choice"); break; } 4. what is an error in the following sequence of a program. int i; switch(i) { default: printf("This is default value"); break; case 1: printf("This is first choice"); break; case 2: printf("This is the second choice"); }

1. Will the following be used as an identifier?

a. sum_of_credits d. while g. 2_4_87

b. initial tree e. SECTION_6

c. final_# f. bingo-square

2. Are the identifiers name and NAME are same? 3. Is it right to type # of #define other than in first column? 4. Does C require expressions to be enclosed in parenthesis for while loop? 5. Will the preprocessor terminates with semicolon ? 6. What is the return value of scanf statement? 7. What will happen, if there are two statements (without grouping) in if condition and an else is there for that if. 8. What will be the output of this program. int no_fish; no_fish=1; if (no_fish==1) printf("The water was to warm\n"); else ; printf("The wates were all fished out\n"); 9. Is parenthesis required for conditional expression in if condition? CV paper: ***************************************************************** 1-18 General (i) Data sufficiency (ii) Analytical (iii) Mathematics 19-45 C&UNIX 1. |x-a|=a-x Ans: (c) x<=a

2. There is six letter word VGANDA . How many ways you can arrange the letters in the word in such a way that both the A's are together. Ans : 120 (5x4!) 3. If two cards are taken one after another without replacing from a pack of 52 cards what is the probability for the two cards be queen. Ans : (4/52)*(3/51) (1/17)*(1/13) 4. 51 x 53 x ... x 59 ; symbols ! - factorial ^ - power of 2 (a) 99!/49! (b) (c) (d) (99! x 25!)/(2^24 x 49! x 51!) 5. The ratio fo Boys to Girls is 6:4. 60% of the boys and 40% of girls take lunch in the canteen. What % of class takes lunch in canteen. Ans : 52% (60/100)*60 + (40/100)*40 Data Sufficiency : a) b) c) d) only only both both statement A is sufficent , B is not statemnet B are necessary are not sufficient.

6. X is an integer. Is X dvisible by 5? A) 2X is divisible by 5. B) 10X is divisible by 5. Ans : A) 7. (A) Anna is the tallest girl (B) Anna is taller than all boys. (Q) . Is Anna the tallest in the class Ans : c 8. maths question 9, 10 Analytical Zulus always speak truth and Hutus always speak lies. three persons A,B&C. A met B and says " I am a Zulu or We don't know what exactly he said. then B meets C and that " A is a Zulu ". Then C replied " No, A is a Hutu 9. How many Zulus are there ? Ans 2( check) 10) Who must be a Zulu ? Ans B (check) 11,12.13,14. ----------A father F has 5 sons, p,q,r,s,t. Not necessarly in this order. Two are of same age. The eldest and youngest cannot be twins. T is elder to r and younger to q and s has three older brothers q) who are the twins? s,t q) who is the oldest and youngest? q) q) 15,16,17,18 ---------There are 7 people who take disqualified, P and S obtain less than P, N scores higher Ans : N P S T Q R M (may be, C & UNIX -------19. What does chmod 654 stand for. Ans : _rw_r_xr__ 20. Which of following is used for back-up files? (a) compress (b) Tar (c) make (d) all the above Ans : b 21 what does find command do ? Ans : search a file 22. what does " calloc" do? Ans : A memory allocation and initialising to zero. 23 what does exit() do? Ans : come out of executing programme. 24. what is the value of 'i'? i=strlen("Blue")+strlen("People")/strlen("Red")-strlen("green") a test among which M is the worst, R is same marks, T scores less than S and Q scores than every one. just check) or N S P T Q R M q, (s&t) There are I am Hutu". says to c ".

Ans : 1 25. i=2 printf("%old %old %old %old ",i, i++,i--,i++); Ans : check the answer. 26. Using pointer, changing A to B and B to A is Swapping the function using two address and one temperory variable. a,b are address, t is temporary variable. How function look like? Ans : swap(int *, int *, int ) 27. In 'o' how are the arguments passed? ans : by value. 28. Find the prototype of sine function. Ans : extern double sin(double) 29. Scope of a global variable which is declared as static? ans : File 30. ASCII problem i=.. ans : 6 31 . 32. what is the o/p printf(" Hello \o is the world "); Ans : Hello is the world. 33. Clarifying the concept addresses used over array ; ie changing the address of a base element produces what error? 34. child process -- fork child shell -- sh 35. Answer are lex 7 yacc & man read these things in UNIX 36. What is int *p(char (*s)[]) Ans : p is a function which is returning a pointer to integer which takes arguments as pointer to array of characters. ************************************************************ ---------------------------

Wipro paper(System software) July-1997 -----------PART --A -----------------------------------------------------1) abcD+abcd+aBCd+aBCD then the simplified function is ( Capital letters are copliments of corresponding letters A=compliment of a) [a] a [b] ab [c] abc [d] a(bc)* [e] mone (bc)*=compliment of bc Ans: e ------------------------------------2) A 12 address lines maps to the memory of [a] 1k bytes [b] 0.5k bytes [c] 2k bytes [d] none Ans: b ----------------------------------------

3) In a processor these are 120 instructions . Bits needed to impliment this instructions [a] 6 [b] 7 [c] 10 [d] none Ans: b ----------------------------------------4) In 8085 microprocessor READY signal does.which of the following is incorrect statements [a]It is input to the microprocessor [b] It sequences the instructions Ans : b ---------------------------------------5) Return address will be returned by function to [a] Pushes to the stack by call Ans : a -----------------------------------------6) n=7623 { temp=n/10; result=temp*10+ result; n=n/10 } Ans : 3267 ---------------------------------------------7) If A>B then F=F(G); else B>C then F=G(G); in this , for 75% times A>B and 25% times B>C then,is 10000 instructions are there ,then the ratio of F to G [a] 7500:2500 [b] 7500:625 [c] 7500:625 if a=b=c else 7500:2500 -------------------------------------------------8) 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 --------------------------------------------------------9) 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 ---------------------------------------------------------------

PART-B ------1) Virtual memory size depends on [a] address lines [b] data bus [c] disc space [d] a & c [e] none Ans : a ----------------------------------------------2) Critical section is [a] [b] statements which are accessing shared resourses Ans : b ------------------------------------------------3) load a mul a store t1 load b mul b store t2 mul t2 add t1 then the content in accumulator is Ans : a**2+b**4 --------------------------------------------------4) question (3) in old paper 5) q(4) in old paper 6) question (7) in old paper 7) q(9) in old paper ------------------------------

Hughes,Delhi: ------> > (A)Aptitude :25 Qns, 20 Minutes > > > > 1. 2 x 4 analytical GRE type qns > > 2. 2-3 Reasoning qns (GRE type) > > 3. Probability of getting a sum of 7 when two dices are thrown together > > 4. Rest quantitative questions > > > > (B) Technical: 50 Qns, 45 Minutes > > > > 1. 3 qns on operating systems. I qn on dijkestra algorithm > > > > 2. Using which pin it's possible to address 16 bit addresses even though t here > > are only 8 address bits in 8085? Ans: ALE > > 3. Voltage gain for an amplifier is 100 while it is operating at 10 volts. > > What is the O/P voltage wen i/p is 1 volt > > 4. Quality factor indicates a0 Quality of inductor b) quality of capacitor > > c) both > > 5. Qns related to bridges, routers and generators, which OSI layer they > > corresspond to. (Refer to stevens 4th chapter) > > 6.OPAmp's I/P ciurrent, O/p current and CMRR is given, what is the voltage

> > c > > > > l > > >

> > > > > >

gain 7. 2-3 qns on scope of static variables in C. Qn to view o/p odf a C stati var 8. Qn to print a value of a pointer 9.resistance increases with temperature in a) Metal b) semiconductor 10. A qn to find the physical address from a given virtual address, virtua

> to physical address table was provided > 11. 16 bit mantissa and 8 bit exponent can present what maximum value? > 12. 4 bit window size in sliding window protocol, how many acknowledements can be held? > > 13. Security functionality is provided by which layer of OSI > > 14. Frequency spectrums for AM, FM and PM (figure given, u'veto tell which > > Kind of modulation it belongs to) > > 15. Among AM and FM which is better and why? > > 16.LASt stage of TTL NAND gate is called: Ans: Totem Pole Amplifier > > 17. SR to JK flip flop conversion. Ans: S=JQ', R=KQ > > 18. LSB of a shift register is connected to its MSB, what is formed: Ans: > > RING Counter > > 19. 2-3 Qns based on Demorgan's laws (identiies: (A+b)' = A'b', etc) > > 20. 2 qns on Logic gates (O/p of logic gates) > > 21. Diff in IRET and RET statements of 8086 > > 22. How many address bytes are required to address an array of memory chip s > > (4 * 6), each chip having 4 memory bits and 8k registers. > > 23. Diff. in memory mapped and I/P O/P mapped Input/Output (Refer a book on Microprocessor) > > 24. Qn on pipeline architecture > > 25 QN on LAPB protocol > > > > > The quetions may not be in order Q 1-5: 1) 6 persons A,B,C,D,E,F are playing a game of cards . A's father and mother , uncle were in the gang. There were two women. B is the mother of A gets more points then her husband. D got more points then E but less then F. Niece of E got the lowest points. Father of A agot More points then F. But would not win the game. i). who won the game? a)A b) B c) F d) D ans: b

ii) who got lowest points ? a) A b) C c) E d) B ans: a

iii). who is the husband of B ? a) F b) E c) D d) c ans : c iV) B was one of the lady. who was other lady? a) C b) D c) E d) A ans: a v) who stood second in the game? a) A b) B c) C d) D ans: c

NOTE: check answers. 6). A is the widow of B. B & C were the only children of E. C is unmarried and is a doctor. D is the grand daughter of E and studies science. How is A related to D. a)Aunt b) daughter c) sister d) sister_in_law Follow the following for Q. 7-8. a) Only conclusion I follows definately. b) ,, II ,, c) Both I & II follow d) Neither I nor II follows. e) either I or II follows. 7). STATEMENTS: It is some times said that corruption is due to proverty and gross diparities. It is an uncalled for slurr on the poor. Because the poor in India are among the most unsight persons. conclusions: I. upsight persons can't be corrupt persons. II. Disparities of income make the people corrupt. ans: c 8) STATEMENTS: The Indian economy has suffered considerble stresses and strains during the lost three years. The general picture is one of stagnations. conclusions: I. stresses and strains in economy lead to stagnation . II. Indian economy is stagnant. ans: e Q. a) b) c) d) 9-15 follow this answers. only inference I follows. only inference II follows. Both I & II follow. neither I nor II follows. ans: b

9). no hawk is a sparrow. All hawks are hens. Inferences: I. no hen is a sparrow. II. no sparrow is a hen. ans: c 10). all graduates are chairs. all chairs are tables. Inferences: I. all graduates are tables. II. all tables are graduates. ans: a 11) some birds are elephnts. some elephants are white. Inferences:

I. some birds are white II. some white are birds ans: d 12) all fans none van I. No pan is II.no fan is ans: d are vans. is pan. fan. pan.

13). all boats are coats. no coat is shirt. I. all boats are shirts II. all shitrs are boats. ans: a 14). no pen is hen. some hens are healthy. I. no pen is healthy. II. no healthy thing is pen. ans: d 15) all hopes are doops. all fears are hairs. I. all hopes are fears. all doops are hairs. ans: d

Below we are giving Q'es whatever remember to us. It is not clear and order. 1). poem, song, rommance, dirty,couplet ans: Rommance 2). Historical, ancient, olden ,inheritant. ans: inheritant. 3) widow ..........., ans: daughter.

4) For one coding problem ( ie he will give some numbering to alphbets ) ans: 1) PRIQOV 2) MOFZB 6). synonyms: i) placeble ii) emblish iii) incence iv) depricate v) palret 7) ODDMEN OUT: i) bench, chair, winch,thrown,pedastal ans: pedestal ii) book, volume, saga...... iii) 3,4,20,38 ....... ans: 20 iv) 3,6,52.5,157.5 ....ans: 52.5 8). one age problem father and son 10 years ago........ans: 14,38. >>From [email protected] Fri Oct 3 17:19:49 1997

Received: from [144.16.241.170] by violet.iitm.ernet.in (AIX 3.2/UCB 5.64/4.03) id AA23610; Fri, 3 Oct 1997 17:19:49 GMT Received: by indy (940816.SGI.8.6.9/940406.SGI) id RAA02593; Fri, 3 Oct 1997 17:15:32 +0530 Date: Fri, 3 Oct 1997 17:15:32 +0530 From: [email protected] (P.V.T. Naidu) Message-Id: <199710031145.RAA02593@indy> To: [email protected] Subject: Deshaw! Cc: [email protected] Status: RO DE-Shaw Software,Hyderabad. --------------------------SECTION-A you should write the programs for the following problems in C. 1. swapping two variables x,y without using a temporary variable. 2. a program has been given asking to find the output ans. it is algorithm for finding G.C.D 3. write a program for reversing the given string. 4. the integers from 1 to n are stored in an array in a random fashion. but one integer is missing. write a program to find the missing integer. ans. idea. the sum of n natural numbers is = n(n+1)/2. if we subtract the above sum from the sum of all the numbers in the array , the result is nothing but the missing number. 5. some bit type of questions has been given on pointers asking to to find whether it is correct from syntax point of view. and if it is correct explain what it will do.(around 15 bits). SECTION-B ANSWER AS MANY AS POSSIBLE. 6.& 7. two programs on pre-processor directions has been given asking to find the output. 8. simple question given on pointer a) kernighan & richie page no. 122 b) schaum series page no. 323 try to understand the pointer problems given here he asked to explain in the interview if answer it in exam. 9. write a c program to find whether a stack is progressing in forward or reverse direction. 10. write a c program that reverses the linked list. GUIDELINES: the interview is very tough he is asking to do the problems in front of him. he is also giving some new problems to solve before him. you should have a very good funda of C language. ----------------------------------------------------------------------P . V . THATAYYA NAIDU M.S ( CS) Hostel : 91-044-2351326 Research Scholar (PP: #341 Naidu)

341, BrahmaPutra Hostel Infotech Lab : 91-044-2351365 IIT MADRAS - 600036 ext:3529/3530 INDIA EMAIL : [email protected] naidu%[email protected] ----------------------------------------------------------------------THIS IS THE PAPER IN IIT KHARAGPUR DESHAW 97 PART 1 TIME:20 MIN * 20 QUESTIONS , EACH QUESTION CARRIES 2 MARKS 1. A SOLID ICE OF 11 X 8 X2 INCHES IS MADE INTO ROD OF DIA 4 INCH. WHAT IS THE LENGE OF ROD? ANS: 3.5 INCH 2. THERE WERE 750 PEOPLE WHEN THE FIRST SONG WAS SUNG. AFTER EACH SONG 50 PEOPLE ARE LEAVING THE HALL. HOWMANY SONGS ARE SUNG TO MAKE THEM ZERO? ANS:16 3. A PERSON IS CLIMBING OF 60 MTS . FOR EVERY MINUTE HE IS CLIMBING 6 MTS AND SLIPPING 4 MTS . AFTER HOWMANY MINUTES HE MAY REACH THE TOP? ANS: (60-6)/2 +1 :28 4. HOWMANY ZEROS ARE THERE IN THE PRODUCT OF THE INTEGER FROM 1TO 100? ANS: 24( NOT GIVEN) 1 TO 10 -2 ZEROS 21 TO 30 -3 ZEROS : BECAUSE 25 = 5*5 22 *5 24 *5 5. A CAN DO WORK IN 2 HOURS B CAN DO A WORK IN 3 HOURS WHAT IS THE SHORTEST TIME TYEY CAN FINISH THE WORK? ANS: 1HOUR 12 MIN. 6..SALARY IS INCREASED BY 1200 ,TAX IS DECREASED FROM 12% TO 10% BUT PAYING SAME AMOUNT AS TAX . WHAT IS THE PREVISIOUS SALARY? ANS:6000 7. THE LEAST NO. WHICH IS WHEN DEVIDED BY 4,6,7 LEAVES A REMAINDER OF 2 ? ANS: 86 8. A MAN DRIVING THE CAR AT TWICE THE SPEED OF AUTO ONEDAY HE WAS DRIVEN CAR FOR 10 MIN. AND CAR IS FAILED. HE LEFT THE CAR AND TOOK AUTO TO GOTO THE OFFICE . HE SPENT 30 MIN. IN THE AUTO. WHAT WILL BE THE TIME TAKE BY CAR TO GO OFFICE? ANS:25 MIN

9. A REPORT HS 20 WHEETS, EACH OF 55 LINES AND EACH SU;CH A LINE CONSISTS OF 65 CHARACTERS. IF THE REPORT HAS TO BE RETYPED WITH EACH SHEET HAVING 65 LINES AND EACH LINE HAVE 75 CHARACTERS, THE PERCENTAGE OF REDUCTION OF NO OF SHEETS IS CLOSEST IS TO? ANS: 25%

10. OUT OF 100 FAMILIES IN NEIGHBOUR HOOD , 55 OWN RADIO, 75 OWN T.V AND 25 OWN VCR. ONLY 10 FAMILIES HAVE ALLOF THESE, AND EACH VCR OWNER HAS TV . IF 25 FAMILIES HAVE THE RADIO ONLY, THE NO. OF FAMILIES HAVE ONLY TV ARE? ANS: 30

APTITUDE: ( QUESTIONS 16 T019) KYA KYA IS AN ISLAND IN THE SOUTH PACIFI . THE INHABITANTS OF KYA KYA ALWAYS ANSWER ANY QUESTION WITH TWO SENTENCES, ONE OR WHICH IS ALWAYS TRUE AND OTHER IS ALWAYS FALSE. 1. YOU ARE WALKING ON THE ROAD AND COME TO A FORK. YOU ASK ,THE INHABITANTS RAM.LAXMAN, AND LILA AS" WHICH ROAD WILL TAKE ME TO THE VILAGE? RAM SAYS: I NEVER SPEAK TO STRANGERS. IAM NEW TO THIS PLACE LAXMAN SAYS: IAM MARRIED TO.LILA. TAKE THE LEFT ROAD LILA SAYS: IAM MARRIED TO RAM. HE IS NOT NEW TO THIS PLACE ANS: LEFT ROAD TAKE YU TO THE VILLAGE 2. YOU FIND THAT YOUR BOAT IS STOLLEN. U QUESTIONED THREE INHABITANTS OT ISLANDS AND THEIR REPLIES ARE JOHN : I DIDNOT DO IT. MATHEW DIDNOT DO IT MATHEW : I DIDNOT DO IT. KRISHNA DIDNOT DO IT KRISHNA: I DID NOT DO IT; I DONOT KNOW WHO DID IT ANS: MATHEW STOLEN THE BOAT 3. YOU WANT TO SPEAK TO THE CHIEF OF VILLAGE , U ASK THREE FELLOWS AMAR BOBBY, CHARLES AND BOBBY IS WEARING RED SHIRT AMAR : IAM NOT BOBBY`S SON ; THE CHIEF WEARS RED SHIRT BOBBY : IAM AMARS FATHER ; CHARLES IS THE CHIEF CHARLES : THE CHIEF IS ONE AMONG US; IAM THE CHIEF ANS: BOBBY IS THE CHIEF 4. THERE IS ONLY OPNE POLOT IN THE VILLAGE(ISLAND). YOU INTERVIEWED THREEM MAN KOISK ,LORRY AND MISHRA U ALSO NOTICE THAT KOISK IS WEARING CAP. M SAYS : LARRY IS FATHER IN THE PILOT .LARRY IS NOT THE PRIESTS SON KOISK : IAM THE PRIEST ON THEIS ISLAND ONLY PRISTS CAN WEAR THE CAPS

LARRY : IAM THE PRIEST SON . KOISK IS NOT THE PREST ANS : KOISK IS THE PILOT

THIS PAPER HAS GIVEN IN IIT DELHI , SO GO THROUGH THIS IT WILL GIVE ROUGH IDEA; 1. typedef struct{ char *; nodeptr next; } * nodeptr; what does nodeptr stand for? 2. supposing thaty each integer occupies 4 bytes and each charactrer 1 byte , what is the output of the following programme? #include<stdio.h> main() { int a[] ={ 1,2,3,4,5,6,7}; char c[] = {' a','x','h','o','k'}; printf("%d\t %d ", (&a[3]-&a[0]),(&c[3]-&c[0])); } ans : 3 3 3. what is the output of the program? #include<stdio.h> main() { struct s1 {int i; }; struct s2 {int i; }; struct s1 st1; struct s2 st2; st1.i =5; st2 = st1; printf(" %d " , st2.i); } ans: nothing (error) expl: diff struct variables should not assigned using "=" operator.

4.what is the output of the program? #include<stdio.h> main() { int i,j; int mat[3][3] ={1,2,3,4,5,6,7,8,9}; for (i=2;i>=0;i--) for ( j=2;j>=0;j--) printf("%d" , *(*(mat+j)+i));

} ans : 9 6 3 8 5 2 7 4 1 5. fun(n); } int fun( int n) { int i; for(i=0;i<=n;i++) fun(n-i); printf(" well done"); } howmany times is the printf statement executed for n=10? ans: zero expl: Befire reaching to printf statement it will goes to infinite loop. 6.what is the output of the program? main() { struct emp{ char emp[]; int empno; float sal; }; struct emp member = { "TIGER"}; printf(" %d %f", member.empno,member.sal); ans: error. In struct variable emp[], we have to give array size. If array size given ans is 0, 0.00

7. output of the program? # define infiniteloop while(1) main() { infiniteloop; printf("DONE"); } ans: none expl: infiniteloop in main ends with ";" . so loop will not reach end; and the DONE also will not print. 8. output of the program? main() { int a=2, b=3;

printf(" %d ", a+++b); } ans:5 expl: here it evaluates as a++ + b. 9. output of the program? #define prn(a) printf("%d",a) #define print(a,b,c) prn(a), prn(b), prn(c) #define max(a,b) (a<b)? b:a main() { int x=1, y=2; print(max(x++,y),x,y); print(max(x++,y),x,y); } ans: 3 4 2 10. which of the following is the correct declaration for the function main() ? ans: main( int , char *[]) 11. if ptr is defined as int *ptr[][100]; which of the following correctly allocates memory for ptr? ans: ptr = (int *)(malloc(100* sizeof(int)); FEW MORE PROGRAMS HERE BUT NOT AVAILABLE:

************ 1. Name of the Company INFOSYS Technologies Ltd. 2. Date of Int/Selection 30th and 31st Aug '95 3. Panel Details The Panel consisted of 3 chota guys, one GM, and one Veeps(HRD). The VP(HRD) was quite painful during the written test and exceedingly strict. GM was called Kris, and had some fundaes 4. Area of Work Area of work is 100% appli s/w. Has 4 groups, Mainframes (50% of revenue), AS/400, Open Systems & Client Server, and OSDC (Off-Shore Devpt Group). Usually CS, EE and ECE guys are placed in Open Sys, and OSDC. 5. Pay (Gross) (Take Home) 8,925/- pm, gross for MTech/MS. 20% of Basic increment every April. 6. Perks and Benefits A big office, 15k sq ft, non A/C, about 15 kms from B'lore proper. Daily bus trips from 13 diff places in B'lore. Subsidised Lunch and Breaker. 4 coffee/tea free per day. No advances or loans for house, motor vehicle.

Stock offer after 1 year or so. High chances of going abroad for brief stints of 3-4 months. 7. Work atmosphere, and facilities Atmosphere is cool, hajaar IIT guys there, and avg age is 23-25. Good news for girls and bad for guys, only about 10-12% of staff are kudis, the rest are chokras. An AT-486 66 Mhz for everyone, with facility to use it as a WS, or a node. E-mail group ids for everyone, and if you are on OSDC, Internet ids. 8. Selection Procedures Two tests, one Mathematical Ability, another Analytical. Short-listed junta for GD (only for PGs). Then Personal Interview (some tech ques thrown in). 9. Qualities students should have Prepare well for tests. Speak in the GD, dont be too agressive, try to give some new thots when it is your turn. Personal Int is cool. 10. Some statistics. About 500 guys took written test. 30 PGs short-listed for GD & Int. 22 selected. 128 Btechs selected. 11. Some Comments about the Company Junta Company, i.e. takes guys in large nos. and truck-loads. Mainly UGs, and a few PGs. 7th in s/w export revenue-wise. Good Co. for Mtechs. MS with no interest in appli prog, don't apply. ************ 1. Name of the Company TISL - Tata Information Systems Limited, Blr. 2. Date of Int/Selection Date of Interview 14/09/95 - Interview time 9.30 pm Date of Selection 15/09/95 3. Panel Details Two Panels. Three Guys, two technical and one HR. One technical for each panel, and the HR guy going between the two. 4. Area of Work Mostly IBM projects, and some system areas. 5. Pay (Gross) (Take Home) Gross 1.38 lakhs for PGs, and guys with CG 9-9.5 get a 5% hike on basic, amounting to a approx. amount of Rs. 400/-pm, and 10% hike on basic for guys with CG 9.5 and above. 6. Perks and Benefits For junta from outside Blr, Airfare, or First A/C train fare, and two weeks stay in a Hotel for self spouse and children. 10 months HRA (approx. Rs.23000) as interest free loan for paying advance.Rs.50000 vehicle loan at 5% interest. Subsidized lunch. Medical, and other insurance policies. 7. Work atmosphere, and facilities Presently promised that each one will get a separate cabin, and a PC and a terminal attached to the mainframes. E-mail facility will be provided for most junta. 8. Selection Procedures One written test and one interview. Written test Has 3 sections, finding the next element in a series of alphabets, finding next figure in a series of figures, and finally a quantitative ability test. This test needs more speed than anything else as you have to answer something like 30 questions in 10 minutes etc. Interview First question tell me about yourself, and depending on your answer the rest of the interview proceeds.

9. Qualities students should have, i.e. CGPA, talking skills etc. For written test CGPA should be above 7.5 for BTech and MTech CS junta. But talking skills are important, mainly be confident, and remember that they need you as much as you need them if not more. 10. Some statistics i.e. how many attended int/test, and how many got thru. For written, there were hajjar junta. So can't specify the no. For interview Total, 30 in first set and 10 in second set.From CS, 7 BTechs, 2 MTechs and one MS. Total junta who got thro' 26. From CS, 6 BTechs, and 1 MTech. ********** 1. Name of the company Bharat Electronics Ltd ,Central &Research Labs 2. Date of Selection 22nd September 3. Panel Details There were 4 persons in that panel.Each of them asked questions on different subjects. 4. Area of work Mostly , for Defense and Embedded S/W 5. Pay I do not know clearly. I think around Rs 7200 to Rs 7500 without PF . 6. Perks & Befits It is a Public Sector. May not give any perks.They told that they give Vehicle Allowance , Canteen Subsidy and such things. 7. Work atmosphere & facilities It is good it seems. I heard that the campus is also good. 8. Selection Procedure Only Interview. All the panel members asked questions on different subjects.Usually , thet ask OS, Networks,S/W and the course i am doing (DC)now and Project. They will ask whether we really want to join in it. There is 3 years bond. 1 year Training period. 9. Qualities we should have I do not know clearly about this. They are not so stringent on CGPA. If we can impress them in the interview for the questions they asked in subjects and if we can give the guarantee to join in that company , it is O.K. .Also, they prefer ECE degree people with computers postgraduate degree. 10. Statistics Around 20 or 25 people attended. They selected 6 students.(2 M.Tech 1 M.Tech(E.C.E) 1 M.S(E.C.E) 2 Ph.d *********** 1. Name of the Company Oracle Software (I) Ltd. 2. Date of Int/Selection 19 th Sept. 3. Panel Details Two Project Managers - Mr. G.Ramesh & Mr.Ravishankar(Expert in SCO Unix) 4. Area of Work They want expertise in Unix Internals preferably. 5. Pay (Gross) (Take Home) 1.3 lacs gross. Take home not known. 6. Perks and Benefits The best perks among all the software Co's.

Some of the perks are - Bike loan (interest free) - Visa card. - ANZ Grindlays ATM account. - Club membership. - House Advance - Flexi Timings - Catered Lunch daily. - Dinner allowance of Rs. 50 if you work in the night. Etc. 7. Work atmosphere, and facilities Don't know much. But they mentioned there's one Workstation per person. 8. Selection Procedures Intreview only. 9. Qualities students should have, i.e. CGPA, talking skills etc. A good CGPA.(Not necessarily very high ). 10. Some statistics i.e. how many attended int/test, and how many got thru. 6 Mtechs,5 Btechs and 2 MS's attended,of which 2 Mtechs,2 MS's and 1 Btech got selected. ************ 1. Name of the Company 2. Date of Int/Selection 3. Panel Details 4. Area of Work 5. Pay (Gross) (Take Home) 6. Perks and Benefits 7. Work atmosphere, and facilities 8. Selection Procedures 9. Qualities students should have 10. Some statistics. ************ 1. Name of the Company WIPRO Systems, Bangalore. 2. Date of Int/Selection 1st & 2nd September, 1995. 3. Panel Details 2 guys on the panel. 4. Area of Work They are interested in application programming, mainly. They have groups which work on OS and Networking also. Lots of interest in Mainframe COBOL, and other tools. C++ and WINDOWS work also going on. 5. Pay (Gross) (Take Home) About 11k gross. 6. Perks and Benefits Hajaar perks like house rent advance, vehicle loan, free grub, medical, LTA. Medical bills can include Ray Ban(!). 7. Work atmosphere, and facilities Good ambience, and office is on MG Road, Bangalore. Only thing is uniform, ties, shoes etc. If not on Mainframes, you have a WS to yourself, and if you are on Mainframes, only a node for you. 8. Selection Procedures Only interview. But a short-list initially is put out based on CGPA. During 94 they had the cut-off at 8.3. The interview is peaceful and all CS and EE guys selected.

9. Qualities students should have Good and decent dress, CGPA above cut-off and goos commn skills. 10. Some statistics. About 12 PGs attended the interview and 10 got thru. EASI -96 ------------------

NOW I AM SENDING EASI-TECH-96 PAPER FIRST PRIORITY FOR --F E M & C++ You should prepare one FEM project work and mention it in your BIODATA as your present work.Then they will definitely call for interview even you perform worstly in written test. One more thing is this year they have big FORD project. So priority is there for mechanicals. I WILL SEND REMAINING PAPERS BY POST. OOOOOKKKKKK! EASI-TECH(96) WRITE THE OUTPUT FOR FOLLOWING PROGRAMS. 1) printf("%d%x\n",ox2,12); 2) int a=10; int b=20; a=a^b; b=a^b; a=a^b; printf("%d%d\n",a,b); 3)enum {ELLIPSE, TRIANGLE, RECTANGLE, SQUARE=100, CIRCLE=5 } printf{"%d%d%d%d\n",TRIANGLE-RECTANGLE,SQUARE*CIRCLE-RECTANGLE}; 4) define the following... a) pointer to a integer b) pointer to a char c) function pointer returning a pointer integer. 5) void a(void); main() { a(); } void a(void) { char a="HELLOW"; char *b="HELLOW"; char c[10]="HELLOW"; printf("%s%s%s\n",a,b,c); printf("%d%d%d\n",sizeof(a),sizeof(b),sizeof(c))); } 6) int a=15; int b=16; printf("%d %d \n",a&b,a/b); (bitwise operators) 7) int a[5],*p; for(p=a;p<&a[5];p++)

{ *p=p-a; printf("%d\n",*p); } 8) sscanf("xyz abc ABC 345" "% *[a-z A-Z]lf",&a); printf("lf",a); 9) Not clear fprintf(- - - - 10) main() { int i=10; printf("%d",i); { int i=20; printf("%d",i); } printf("%d",i); } 11)struct class { int i; float a; string[12]; } sizeof(class)=? 12) int *p; i=10; p=i; printf("%d",*p); 13) fact(5) int n; fact(n) { sum=n*fact(n-1); } NEXT FINITE ELEMENT ANALYSYS QUESTIONS 1) NAME THE EQUATION AND EXPLAIN THE TERMS A) M/I=F/Y=E/R. B) mx..+cx.+kx=F(t) ans: sdof mass-spring-dashpot equn. 2) WHAT ARE THE DIFFT.TYPES OF FINITE ELEMENTS. 3) WHAT IS THE SIZE OF STIFFNESS MATRIX FOR A 4 NODED SHELL ELEMENT IN 3-D SPACE. 4) HOW MANY NODES ARE THERE FOR A BEAM ELEMENT ? WHY? 5) WRITE STIFFNESS MATRIX OF TRUSS ELEMENT. 6)WHAT ARE PLANE STRESS AND PLANE STRAIN ELEMENTS 7)WHAT IS MENT BY STRESS SMOTHENING 8)WHAT IS GAUSS POINT 9)WHAT ARE CO AND C1 PROBLEMS [OK 13Q IN C AND 9Q IN FEM] THIS IS ORIGINAL FULL WIDTH PAPER SSSSSSSsUUUu yours,

murthy. 1) YOU SHOULD LEARN POINTERS(they may ask in I.W) 2)****SHOULD LEARN C++(this is very very IMP,Based on this only I got job.One more thing is CLASS,INHERATENCI&POLYMORPHISM is sufficient) 3)YOU SHOULD PREPARE ONE FEM PROJECT AND TELL THEM THAT AS YOUR OWN WORK(This will increase chance to 99%) EASI-TECH WRITTEN TEST PATTERN -------------------1] C TEST 10Q 20MINUITS 2]F E M TEST 19Q 20MINUITS 3]APTITUDE TEST 15Q 20MINUITS ----------------------------F E M TEST ---------1)WHO USED THE TERM FINITE ELEMENT FOR THE FIRST TIME? a) b) c) CLOUGH 2)DERIVE THE JACOBIEN |J| FOR BEAM ELEMENT WITH STRAIN ENERGY? (ANS:PROMLEM IS NOT CORRECT PLEASE DO NOT ATTEMPT) 3)FOR AN ELEMENT SIGMA Ni=1,WHICH TYPE OF ELEMENT IT IS? a) b)NATURAL CO-ORDINATE (ANS 100% CORRECT) 4)TIMOSHENKO BEAM ELEMENT THEORY TO CONSIDER -- - - -? a) b) c)SHEAR DEFORMATION 5)SHEAR LOCKING - - - - ? (ANS IS VERY STIFF 'K') 6)MEMBRANE LOCKING (ANS IS ARCH ELEMENT) 7)Ex(epsiolan x)=dU/dX,Ey=dV/dY,r(X,Y)=?(gama(x,y)=?) (ANS IS dU/dY+dV/dX ) 8)K=integral B(TRANSPOSE)*D*B FOR LARGE DEFORMATION WHICH MATRIX WILL GET EFFECTED? (ANS IS D matrix )100%correct 9)FOR PLANE STRAIN f(Ex,Ey,Ez,r(x,y) ) - - (ANS IS Ez=0) 10)SERENDIPITY ELEMENT IS (ANS 8 NODED ELEMENT) (The element which is having nodes only on boundary is called SERENDIPITY element) 11)IF THE ROTATION OF ELEMENT AND THE DISPLACEMENT ABOUT N-A IS SAME THEN THE ORDER OF CONTINUITY (ANS IS C1) 12)FRONTAL THEORY IS APPLIED FOR (Please refer any fem book) 13)MINDLINS THEORY IS APPLIED FOR c) this is the answer(Both Co&C1problems) 14)X=SigmaNi*Xi,U=sigmaNi*Ui WHICH TYPE OF ELEMENT (Refer book) 15)BEAM SUBJECTED TO UDL FIND THE MOMENTS AT THE 2 NODES

16)Integral B(Transpose)*sigma(here sigma means stress)*dV REPRESENTS? (ANS IS INTERNAL LOAD VECTOR) 17)Integral ET(epsiolan transpose)*sigma*dV P=strain displacement vector Q=stress-strain deformation Find [K] (ANS [K]=[P]T(p transpose)*[Q]*[P] ) 18) 19) REMEMBER ORDER MAY NOT BE CORRECT APTITUDE TEST 101 + 296 is (ans 1200) check 2)0.625= ? (ans 27/40) 3)One ship goes along the stream direction 28 km and in opposite direction 13 km in 5 hrs for each direction.What is the velocity of stream? (ans 1.5 kmph) 4)Cubic root of 3375=? (ans 15) 5)2020201-565656=? (ans 1454545) 6)CHAIRS PROBLEM 5 chairs=9 tables,12 tables = 7 stools likethat- - (ans is 80Rs) 7)One clock ringes 7 O'clock in 7 sec.In how many seconds it will ring 10 O'clock. (ans 10.5 sec) 8)One watch is showing 30 past 3 .What is the angle between minutes & hours hand? (ans 75 degrees) 9)The average of 4 consecutive even numbers is 27. What is the largest number? (ans 30) 10) 25 stations ,24 stations are inbetween- - - - how many tickets should be required. (ans 25*24=600)PUZZLES TO PUZZLE YOU "S.DEVI"PROB 24 11)One ball was dropped from 8ft height and every time it goes half of the height. How much distance it will travell before coming to rest. (ans 24 approximately) 12)Two trains are travelline at equilateral .Train A is travelling in the direction of earths spin.Other train B is travelling in opposite direction of earths spin.Which trains wheels will wear first?and why? (ans TRAIN B .Because of less centrifugal force.) 1)33 1/3 of

OK HARI 3 MORE QUES ARE THERE.I HOPE YOU CAN SOLVE EASILY. NOW I have only 3 C ques. I am sendins them in immediate mail. Any whey I will try to send remaining 7 C ques before 20th.

C QUESTIONS:WHAT IS THE OUT PUT FOR FOLLOWING PROGRAMMS 1)main() { char a[2]; *a[0]=7; *a[1]=5; printf("%d",&a[1]-a) ANS: ans may be 1.(illegal initialization) 2) #include<stdio.h> main(){ char a[]="hellow"; char *b="hellow"; char c[5]="hellow"; printf("%s %s %s ",a,b,c); printf(" ",sizeof(a),sizeof(b),sizeof(c)); } (ans is hellow,hellow,hellow 6,2,5 ) 3) #include<stdio.h> main() float value=10.00; printf("%g %0.2g %0.4g %f",value,value,value,value) } (ans is 10,10,10,10.000000) 4) #include<stdio.h> void function1; int i-value=100; main() { i-value=50; function1; printf("i-value in the function=",i-value); printf("i-value after the function=",i-value); } printf("i-value at the end of main=",i-value); functioni() i-value=25; THIS IS ROUGH IDEA OF THE PROGRAM ANS ARE 1)i-value in the function=25; 2)i-value after the function=50; 3)i-value at the end of the main=100; 5) main() { funct(int n); { switch(n) case1: m=2;

break; case2: m=5; break; case3: m=7; break; default: m=0; } THIS IS ROUGH IDEA: (ANS:Out put is m=0) REMAINING 5 PROGRAMS SOME WHAT LARGE AND COMPLICATED.ANY WHEY I WILL SEND REMAINING PROGRAMS BEFORE 20th. I am sending mainly c paper and some questions.Rao also will send somethig.There are 15 c q's all are discriptive. 1)fallacy f() { int a; void c;f2(&c,&a); 2)a=0; b=(a=0)?2:3; a) What will be the value of b? why b) If in 1st stmt a=0 is replaced by -1, b=? c) If in second stmt a=0 is replaced by -1, b=? 3)char *a[2] int const *p; int *const p; struct new { int a;int b; *var[5] (struct new) 4)f() { int a=2; f1(a++); } f1(int c) { printf("%d", c); } c=? 5)f1() { f(3);} f(int t) { switch(t); { case 2: c=3; case 3: c=4; case 4: c=5; case 5: c=6; default: c=0;} value of c? 6)Fallacy int *f1() {

int a=5; return &a; } f() int *b=f1() int c=*b; } 7)a)Function returning an int pointer b)Function ptr returning an int ptr c)Function ptr returning an array of integers d)array of function ptr returning an array of integers (See Scham series book) 8)fallacy int a; short b; b=a; 9)Define function ?Explain about arguments? 10)C passes By value or By reference? 11)Post processed code for abc=1; b=abc1; (1 or 2 blank lines are given) strcpy(s,"abc"); z=abc; 12)difference between my-strcpy and strcpy ?check 13)f() { int *b; *b=2; } 14)Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.(Study)Check 15)Calling refernce draw the diagram of function stack illustrating the variables in the -----then were pushed on the stack at the point when function f2 has been introduced type def struct { double x,double y} point; main( int argc, char *arg[3]) {double a; int b,c; f1(a,b);} f1(double x, int y) { point p; stack int n; f2(p,x,y)} f2(point p, double angle) { int i,j,k,int max) } _____________________________________________________________ 1)Least no. when divide by [7 gives remainder 6,6gives 5,5 gives 4 and soon ans;419 2)What compilation do (ans source code to obj) 3)Artficial language is provided which of the language (Lisp) check 4)241 change its equivalent octal ? 5)for cube and sphere 3 views are similarly draw one such figure? 6)Write a program to exchange two variaables without temp 7)Fortran cannot have value by reference 8)4,6,8,__ 9)success is to failure, joy is to 10)MEANING OF JOLLY?

11)opposite to essential? 12)"Raw" means 13)To be good "Wrestler " one should have? 14)"Command" opposite? 15)genuine opposite? 16)Two proverbs are goven 17)Sum of two consecutive nos is 55, larger one is? 18)A person goes 4/5 of his usual speed reaches 10min lateto his destinaton, time taken? 19)80% pass in english, 70%pass in maths , 10%fail in both , 144 pass in both . How many all appeared to the test? 20)To get a parabola if you cut a section of? 21)Bird is flying 120km/hr b/w B to R. two trians at B to R at 60 kmph The distance trvelled by the bird before it is killed.Ans.120 22)meaning of inert If any are there rao will send you. Prepare well for the interview. Mostly on graphics , geometry .Prepare questions like (for interview)Prove some of the angles in a triangle are 180.Angle in a half circle is 90.How will you measure hight of building when you are at the top of the building and if you have stone with you. Best of luck Sekhar

GSSL ITest : General Intelligence II test : Technical test III test : C-language I Test Some of the questions what I have Iam sending. 1. 5,5,,13,13,21,21 2.0,7,26,63,124, 3. 1,3,5,7, Ans: 9 Ans: 29 Ans: 215 i.e.n**3-1 rule following '1' is not a prime number

4. If a person walks at 4/5th of his usual spee he reaches 40min late. If he walks athis usual speed how much time does he travels. Ans:160min or 2hr 40min 5. Two trains A&B start at opposite points 120km at 60kmph. A fly starting along with train A at 120kmph reaches B then returns back to touch and continue. By the time two trains meet howmuch distance the fly would have travelled? Ans : By 1hour both trains meet, so the distance travel by fly in 1hr is 120km. 6.In a class 80% have passed english,70% passed Hindi 10% didnot passed either. If 144 students passed both. What is the total strength of the class. Ans: 240

. Find the least number when divided by 7 gives the reminder 6, when divided by 6 gives reminder 5, when divided by 5 gives reminder 4 and so on.... Ans: 419 8. If a man stands in front of sun what is the first letter of the direction which is left to him: Ans: North(N) 9.A square is to circle what is cube to Ans: sphere 10. Synonyms i) Joy = gay ii) Inert = Inactive 11.One wordswill begiven find oddman out: Ans:sickle like that a) sow b) cut c) d) sickel 12. If I bought a cycle before 2days of my birthday and I broke it after 3 days of my birthday the day I broke is Mar2, 1956? Answer following logical questions? i) when is his birthday? Ans: April,28 (due to leap year i.e.1956) but do not keep answer blindly we just think before choosing answer Iam just giving ideaof question 13. Monday Aug25, 96 Mr A, You forgott your umbrella during the party on last friday.I expected you to collect it on your visit on wednesday,I plan to leave on this Friday. Questions: when A missed umbrella? When A is supposed to collect it? When K leaves? Hint: These dates i.e. Aug 25 is not exactly given in test, but Iam giving feel of that question.If you solve this question you can solve it easily in exam. 14.What is my father's sons son to my son? Ans: cousin brother 15.On cutting which solid parabola would be generated Ans: cone 16. Eulers formula: Ans: F+V-E =2; F= faces;V= vertices;E = number of edges 17. Newton Rapson method is to find Ans:to find the root of f(x) = 0;

18. How many tangents can be dran within three circles if they donot lie within each other Ans : 12 But this answer is not there I kept 8 as answer 19. In language the fortran which is true. A) fortran uses call by value 20. When a program is compiled what it produces Ans:source code to object code 21. In the following venn diagram shaded region is represented by some question like that I can't draw figure here thats why Iam sendinganswer only Ans: (B-A)' i.e. (B-A) whole dash

22. xy-x+2y = 6 equation is shifted to form equation xy=c what is c? Ans : 4 23.When x is real what is the least value of (x**2-6*x+5)/(x**2+2*x+1) Ans:-1/3 24.When an object like cube or sphere is seen along x,y,z,axes we get the same.Apart from these suggest another which has similar characteristics? Ans:you have to draw the figure triangular prism. Ans: is triangular prism you draw

25. When an object is seen from front side we can see two concentric squares and topview also without any hidden lines. Draw the side view. Ans: I know ans but I canot draw. 26. Convert 251 decimal to base 8(i.e. octal)? Ans: similar question but for this question answer is 373

27. How much information can be solved in 1 byte of a IBM pc compatible? Ans: 256 28.What is the language used for Artificial Intelligence Ans: lisp 29. Swap two variables without using temporary variable Ans: a= a+b; b= a-b; a= a-b:

30.Which is not the operating system ?Ans: BIOS 31. What is the optimum number of operations for 2*(x**3)+3*(x**2)+5*x+5? Ans: three multiplications, three additions. 32. A=> Bmeans Ans: if A is true B has to be true

33.If A is not invertible and BA = I is not possible Ans: Determinant is Zero. 34, What is FREE BoDY Diagram Ans: Used for analysing FEM. 35. A die is thrown twice what is the probability that you get same number Ans:11/36.

Dear Murthy! Yaa! you are luck fellow. I got HCL full paper. I am mailing it. The quetions are in order. So you no need to prepare answers and mugging that that quetions. Just you mug that answers which are in order or you write all these answers on the hand compactly while you are going to exam. Paper Model: Section I: computer awareness(i.e general things about computer) -ve marks: 1/4 Section II: Simple C- language Q. 15 & -ve marks: -1/4 each quetion ->2 marks each quetion -> 2 marks. Q.15

Section III: On pointers & structures and C++,JAVA( only 1 on this) Q.10 -ve marks: -1 Section IV: Analytical -ve marks: -1/4 Q.20

Murthy from each section I am giving one are to quetions also because for checking whether the same paper or not. And for doubtful answers also I am writing quetions but not writing answers for these quetions.

Section-I 1). Piggy backing is a technique for a) Flow control b) sequence c) Acknowledgement ans: c piggy backing d) retransmition

2). The layer in the OST model handles terminal emulation a) session b) application c) presentation d) transport ans: b application 3) ans: a odd numbers of errors

4)Q. In signed magnitude notation what is the minimum value that can be repre sented with 8 bits a) -128 b) -255 c) -127 d) 0 5) c 6) a 7) b 8) a 9) b 10) a 11) d 12) b 20 120 synchronise the access system call the operating system 177333 used as a network layer protocall in network and windows system has to be unique in the sub network

13)Q. there is an employer table with key feilds as employer no. data in every n'th row are needed for a simple following queries will get required results. a) select A employe no. from employe A , where exists from employe B where A employe no. >= B employe having (count(*) mod n)=0 b) select employe no. from employe A, employe B where A employe no. >= B employ no. grouply employe no. having (count(*) mod n=0 ) c) both a& b d)none of the above 14)Q. type duplicates of a row in a table customer with non uniform key feild customer no. you can see a) delete from costomer where customer no. exists ( select distinct customer no. from customer having count ) b) delete customer a where customer no. in (select customer b where custermer no. equal to b custemor no. ) and a rowid > b rowid c) delete customer a where custermor no. in ( select customer no. from customer a, customer b ) d) none of the above

15) c ----------

Volatile modifier Section I over with 15 quetions -------------------

SECTION-II Section II is not covered completly But it is very very easy. You can do it very easely. 1) ans: recursion

2) long int size a) 4 bytes b) 2 bytes c) compiler dependent d) 8 bytes ans: compiler dependent note: order of a,b,c,d are doubt but answer is correct. 3) x=2,y=6,z=6 x=y==z; printf(%d",x) 4) if(x>2)?3:4 5) 6) 7) ans: c 6 ( quetion on enum ) 8) --------14) c : class A,B and C can have member functions with same name. 15) ans: d none of the above

?

SECTION-III 1) ans: b ked list 2) ans: a 3) ans: b 4) ans: b 5) ans: d 16 55,55 always 13 It does not work when rp is the last element in the lin

6) ans: c 7) --8) ans:d 9) ans: c 10)ans: c

5,10,10,3

4 5 semicolon missing

SECTION-IV

following are not in order: 2. M > D > Y 6. 10 in 4 seconds, ? in 6 minutes ans: (a) = 10x6x60/4 = 900 ans: (a)

7. a=2, b=4, c=5 (a+b)/c - c/(a+b) = 11/30 (ans). 8. 100(100000000+100000000)/10000 = 2x1000000 (ans). 9. what does the hexanumber E78 in radix 7. (a) 12455 (b) 14153 (c) 14256 (d) 13541 (e) 131112 ans: (d)

10. Q is not equal to zero and k = (Q x n - s)/2 find n? (a) (2 x k + s)/Q (b) (2 x s x k)/Q (c) (2 x k - s)/Q (d) (2 x k + s x Q)/Q (e) (k + s)/Q

(from GRE book page no:411) data: A causes B or C, but not both F occurs only if B occurs D occurs if B or C occurs E occurs only if C occurs J occurs only if E or F occurs D causes G,H or both H occurs if E occurs G occurs if F occurs NOTE: check following answers. 11. If A occurs which of the following must occurs I. F & G II. E and H III. D (a) I only (b) II only (c) III only (d) I,II, & III

(e) I & II (or) II & III but not both 12. If B occurs which must occur (a) D

ans: (e)

(b) D and G (c) G and H (d) F and G (e) J

ans: (a)

13. If J occurs which must have occured (a) E (b) either B or C (c) both E & F (d) B (e) both B & C ans: (b) 14. which may occurs as a result of cause not mentioned (1) D (2) A (3) F ans: (c)

(a) 1 only (b) 2 only (c) 1 & 2 (d) 2 & 3 (e) 1,2,3 15. E occurs which one cannot occurs (a) A 11 to 15:(b) F (c) D (d) C (e) J ans: (b)

----------- e , a , b , c , b ---------------

Below are in order: 16. to 20. answers: e a c a e

--------------- over ---------------BEST OF LUCK In written test in each section you have to get minimum marks i.e you have to p ass in each section. There will be questions from C, C++, JAVA. about 10 questi ons in C++ in the written test.

INTERVIEW:

I will send interview quetions tomorrow early morning.

ok

yours lovingly srihari.K

three. I have answers for Q/A paper. For Q/C you should try for answers. INFOSYS 1997. TIME 1hr. PAPER CODE Q/A. marks 50. -------------------------------------------------------------1)At 6'o clock clock ticks 6 times. The time between first and last ticks was 30sec. How much time it takes at 12'o clock. Ans. 66 sec. 2 marks.

2)Three friends divided some bullets equally. After all of them shot 4 bullets the total no.of remaining bullets is equal to that of one has after division. Find the original number divided. Ans. x x x-4 x-4 3x-12 = x x= 6 ans is 18 x x-4 2 marks

3)A ship went on a voyage after 180 miles a plane statrted with 10 times speed that of the ship. Find the distance when they meet from starting point. Ans. 180 + (x/10) = x x = 20 ans is 180+20=200miles.

2 marks

4) Fill the empty slots. Three FOOTBALL teams are there. Given below the list of maches. A B C played won 2 2 2 *0 2 *0 lost *0 *1 *1 draw *0 1 *1 Goals for *7 2 3 Goals against 1 4 7

the slots with stars are answers. 4 marks BC drew with 2-2 A won on B by 2-0 a won on C by 5-1 ( YOU HAVE TO FILL THE BLANKS AT APPROPRIATE STAR SYMBOLS.)` 5) There are 3 societies a,b,c. a lent tractors to b and c as many as they had. After some time b gave as many tractors to a and c as many as they have. After sometime c did the same thing. At the end of this transaction each one of them had 24. Find the tractors each orginally had. Ans a had 39, b had 21, c had 12, 4 marks

6) There N stations on a railroad. After adding x stations 46 additional tickets have to be printed. Find N and X. Ans. let N(N-1) = t; (N+x)(N+x-1) = t+46;

trail and error method

x=2 and N=11

4 marks

7)Given that April 1 is tuesday. a,b,c are 3 persons told that their farewell party was on a - may 8, thursday b - may 10,tuesday c - june 8, friday Out of a,b,c one is only correct one of the regarding month,day,date. Other told two correct and the third person told all wrong.What is correct date,month,day. 5 marks (ans may be MAY 10 SUNDAY. check once again) 8)There are 4 parties. df,gs,dl(depositloss),ew ran for a contest. Anup,Sujit,John made the following statements regarding results. Anup said either df or ew will definitely win sujit said he is confident that df will not win John said he is confident that neither ew nor dl will win the result has come. only one of the above three has made a correct statement. Who has made the correct statement and who has won the contest. 5 marks. (ans DL ) 9)Five people a,b,c,d,e are related to each other. Four of them make one true statement each as follows. i) b is my father's brother. (ans. d said this) ii)e is my mother-in-law. ( b ) iii)c is my son-in-law's brother. ( e ) iv)a is my brother's wife. ( c ) who said each statement. 10 marks. 10) All members of d are also members of a All '' e '' d all '' c '' both a and b not all '' a are members of d not all '' d '' e Some questions on these conditions.(5questions 5 marks) 11) boys are allowed to watch football at c.v.Raman auditorium subjected to conditions. i)the boy over age 16 can wear overcoat ii)no boy over age 15 can wear cap iii)to watch the football either he has to wear overcoat or cap or both iv) a boy with an umberella or above 16 or both cannot wear sweater. v) boys must either not watch football or wear sweater. What is the appearence of the boy who is watching football. Try to solve this question................

ok!!!!! infosys paper 1997. paper code q/c. -----------------------------------------------------------------------1) 2) given be * be = acb a,b,c,e are non zero numbers find b,e. ans) b=1 e=9 a,b,c,d,e are having numerical values. there are some conditions

a) a=c <===> b!=e b) difference between a and c as same as difference between c and b as same as difference between a and d c) c<a and c>d then find a,b,c,d,e 3) there are six cards in which it has two king cards. all cards are turned down and two cards are opened a) what is the possobility to get at least one king. b) what is the possibility to get two kings. 4) a person went to a shop and asked for change for 1.15paise. but he said that he could not only give change for one rupee. but also for 50p,25p,10p and 5p. what were the coins he had ans) 1-->50 4--->10p 1--->25p 5) there are 3 nurses and they work altogether only once in a week. no nurse is called to work for 3 consecutive days. nurse 1 is off on tueseday,thursday and sunday. nurse 2 is off on saturday. nurse 3 is off on thursday,sunday. no two nurses are off more than once a week. find the day on which all the 3 nurses were on work. 6) there are 5 persons a,b,c,d,e and each is wearing a block or white cap on his head. a person can see the caps of the remaining 4 but can't see his own cap. a person wearing white says true and who wears block says false. i) a says i see 3 whites and 1 block ii) b says i see 4 blocks iii) e says i see 4 whites iiii) c says i see 3 blocks and 1 white. now find the caps weared by a,b,c,d and e 7) there are two women, kavitha and shamili and two males shyam, aravind who are musicians. out of these four one is a pianist, one flutist, violinist and drummer. i) across aravind beats pianist ii) across shyam is not a flutist iii) kavitha's left is a pianist iiii) shamili's left is not a drummer v) flutist and drummer are married. 8) 1/3 ed of the contents of a container evaporated on the 1 st day. 3/4 th of the remaining contents of the container evaporated the second day. what part of the contents of the container are left at the end of the second day. 9) a man covered 28 steps in 30 seconds but he decided to move fast and covered 34 steps in 18 seconds. how many steps are there on the escalator when stationary. 10) all fair skinned, rich, handsome, muscular, lean and employed are tall men 1) all lean men are muscular. 2) no fairskinned person who is not rich is handsome. 3) some muscular men are handsome. 4) all handsome are fairskinned. 5) no person who is neither fair skinned nor muscular is enplyed. 6) we unable to recall this condition and question also incomplete. ------------------------------------------------------------------------

/* ------------info -------------*/ /* GEORGE SUMMERS puzzle books are suggested.

----------------------------INFOSYS TECHNOLOGIES LIMITED. ----------------------------Question Paper -------------Part 1. -----(1) 9 cards are there. u have to arrange them in a 3*3 matrix. cards are of 4 colors.they are red,yellow,blue,green. conditions for arrangement: one red card must be in first row or second row.2 green cards should be in 3rd column.Yellow cards must be in the 3 corners only. Two blue cards must be in the 2nd row. Atleast one green card in each row. Solution: Yello Red Gren Blu Blu Gren Yello Gren Yello 2. 4 cards are placed on a table, each card has two colors. U don't know the color of the back side of eachcard.4 persons A B C and D are sitting on the table before the cards. They can see Red, Green Red and blue .Out of the 4 poeple 2 always lie. They see the color on the reverse side and give the following comment A: Yello/green B: Neither Blue/nor Green c: Blue/Yello D: Blue/ Yello find out the color on the other side of the 4 cards. 3.Red and brown tribes [FROM BARRONS GRE] Conditions to get married with each other. 4. Venn diagram regarding Rich, muscular, soft-skinned, employed, etc.,( Refer BARRONS GRE GUIDE) -----------------------------------------------------------------------PART 2. ------1. SAKUNTALA DEVI'S PUZZLE BOOK : PUZZLES TO PUZZLE YOU. problem no: 3. ( Brothers and Sisters) A family I know has several children. Each boy in this family has as many sisters as brothers but each girl has twice as many brothers as sisters. How many brothers and sisters are there? ans: 4 boys and 3 girls. 2. No. of animals is 11 more than the no. of birds. If the no. of birds were the no. of animals and no. of animals were the no. of birds( ie., interchanging no.s of animals and birds.), the total no. of legs get reduced by one fifth (1/5). How many no. of birds and animals were there? ans: birds:11,animals:22 3. In a soap company a soap is manufactured with 11 parts. For making one soap you will get 1 part as scrap. At the end of the day u have 251 such scraps. From that how many soaps can be manufactured? ans: 22 + 2+ 1 = 25. 4. 2 * * | 3 * * | No. 7 does not occur in this ---------------| 5 * * | multiplication. * 4 * |

* * 3 | Find the product. ---------------| * * * * * | ---------------| -------------------------------------------------ans 2 8 1 3 2 2 ----5 6 2 5 6 2 0 8 4 3 0 0 --------9 0 4 8 2 --------5. There is a 5digit no. 3 pairs of sum is eleven each. Last digit is 3 times the first one. 3 rd digit is 3 less than the second. 4 th digit is 4 more than the second one. Find the digit. ans : 25296. 6. There are five thieves, each loot a bakery one after the other such that the first one takes 1/2 of the total no. of the breads plus 1/2 of a bread. Similarly 2nd, 3rd,4th and 5fth also did the same. After the fifth one no. of breads remained are 3. Initially how many breads were there? ans : 31. 7.ESCALATOR PROBLEM OF SAKUNTALA DEVI 'PUZZLES TO PUZZLE'book. Problem No: Problem 27( Down the escalator) ans : the no of steps in the stair way : 46. 8.Harbour line and Main line Problem of Sakuntala Devi Puzzle book. Ans : 4/5. ( More Puzzles book) 9.There are some chicken in a poultry. They are fed with corn One sack of corn will come for 9 days.The farmer decides to sell some chicken and wanted to hold 12 chicken with him. He cuts the feed by 10% and sack of corn comes for 30 days. So initially how many chicken are there? 10.Two people X & Y walk on the wall of a godown in opposite direction. They meet at a point on one side and then go ahead. X after walking for some time, walks in opposite direction for 15 mtrs.Then again he turns back and walks in the original direction. What distance did Y walk before they met again, if X walks 11 mtrs by the time Y walks 8 mtrs. 11.Problem from SAKUNTALA DEVI 'PUZZLES TO PUZZLE U'. Problem no: 23( Walking back to happiness.) The walking time : 55 mins. With this The paper has been completed. For the lack time I have'nt typed those probs, which are in Sakuntala Devi Puzzle books. I wish all of you the best. Send me the mail immediately after the written test will be over. thank you. -Sarma. B. Y.

Interview Practice -------------------------------------

Practicing for the interview means practicing several behaviors - not just answering questions. You must dress well, watch your body language and posture, practice your manners and eye contact as well as practice answering questions correctly, smoothly, and with confidence. The practice questions below, in one form or another, account for a large percentage of interview questions. With each question, you are given a series of choices as to how you might answer the question. When you select an answer, you will learn whether your answer is correct-and why. Answering these questions will help you polish your interviewing techniques. The questions and answers in this excercise are generic and, in many cases, must be tailored to your individual situation. Still, the logic behind the answer remains essentially the same. Why are you the best person for the job? I 've held a lot of positions like this one, and that experience will help me here." "Because I am good at what I do." "Our discussion here leads me to believe this is a good place to work." "You need someone who can produce results, and my background and experience are proof of my ability. For example..." If asked a point blank question such as: Are you creative? Are you analytical? Can you work under pressure? etc. What is the best way to answer? Answer yes or no. Answer yes and give a specific example. Answer yes and give an explanation. 3 Tell me about yourself. 1.Outline personal data, hobbies, and interests. 2.Give an overview of your personality and work habits. 3.Give three specific examples of your personality traits and accomplishments. 4. What was your CGPA? Why is it low? 1.My CGPA is -----. basically because I had a lot of fun in college. 2.My GPA is ----- because I held a full time job while in college, working my way through school. It is not relfective of my ability to do the job. 3.My GPA is ------ which I don't think is too low, at least compared to my friends. 5. What are you looking for in a position? 1."I'm looking for an opportunity to apply my skills and

contribute to the growth of the company while helping create some advancement opportunities for myself." 2."I'm looking for an organization that will appreciate my contributions and reward my efforts." 3."I'm looking for a position that will allow me to make enough money to support my lifestyle. I am a hard worker and will give a concerted effort to earn the money I need." 6. What do you know about our organization? 1."I've done a little homework and here is what I know about your organization...(cite examples)" 2."Everything I've seen and heard makes me want to be a part of this organization. I understand your industry is ________ and your primary customer is __________. A particularly exciting part of your business appears to be _________ ." 3."I know enough to know this is an exciting place to work. It appears to be fit for my career goals." 7. What is a weakness? 1. I get really frustrated with my co-workers when they whine about everything. 2. I don't "toot my own horn". I like to go in and get the job done and I don't dwell on who gets credit. 3. I don't think I have a weakness. 8. How would you characterize your work style? 1. I am a very driven person. I make a list of what needs to be done and then tackle the items until I've completed the job. 2. I show up whenever I'm scheduled to work. 3.I haven't held a job yet so I don't know what my work style will be. 9. What are your strengths? 1."I am good at giving constructive criticism to my coworkers. This honesty is something I'm very proud of and have found essential to having open working relationships." 2."I consider myself to be very consistent. I have proven myself to be someone who can be counted upon to do what is expected." 3."I would have to chose between two skills. I am very proud of my determination and ability to get things done. At the same time, I am very proud of my analytical abilities and problem solving skills. These skills combine to give me a unique ability to solve problems and then implement the solutions." 10. How would co-workers describe you?

1."They perceive me as a leader. The people who have worked with me learned great deal and accomplished in many cases more than they thought possible." 2."My employees would tell you they got direction when they needed and the room to work when it was appropriate. I believe a measure of a good manager is how much he is able to get done through others." 3."They perceive me as someone who cared about them personally and had high expectations. I get a great deal of satisfaction from helping others do their best. My former employees would highlight three of my priorities which are to build loyalty and a team environment, obtain results and develop people." 11. What did you like and dislike about college? 1. I didn't like the tremendous ammount of homework some professors assigned us. I liked those professors who realized, I had a life outside of class. 2.I liked the opportunity to be involved on campus. It was a small campus that allowed students to take responsibility, organize events and be a part of the planning team. I can't really think of anything I disliked, college was a wonderful experience. 3.I liked having Wednesdays off. I think the thing I disliked most was living in the dorms. 12. Are you willing to relocate? 1.No. 2.I'm open to opportunities within the company so if that involves relocation I would consider it. 3.I'd move, but I know your headquarters is in Alaska and that's too cold for me. 13. What are your short term goals? 1."Short term, I just want a job." 2."Bills are beginning to pile up. In the short run I need to find work so I can keep up with my obligations." 3."Short-term, I'd like to find a position that is a good fit and where I can contribute to a company's bottom line. The position we are here to discuss today would appear to be such an opportunity. Could you tell me more about it?" 14. Where do you want to be in 5 years? 1.I haven't really thought that far ahead but I think I'd want your job. 2."If selected I would hope to meet my goals and take advantage of opportunitites to learn so I will be considered for other positions within the company. I hope to build my career with a company such as this one."

3."Long term, I hope to start my own business." 15. Describe a situation you've encountered with a difficult customer. 1.In my last job I dealt with customers at a retail store. One customer wanted to return an item she had obviously bought several years ago, which was against store policy. I talked to her calmly and explained our policies and encouraged her to shop and I would exchange the item however I could not give a refund. 2. I rarely encounter a difficult customer because of my excellent customer service. 3. I had a customer once who claimed her steak was not cooked correctly....I picked up a knife and cut it open and explained that's the way it's supposed to be. 16. Before we go any further, what kind of money do you need to make? 1.I feel I am worth at least $30,000." 2."My salary requirements are negotiable. Your firm has a reputation of compensating employees fairly and I trust you would do the same in my case. I am very interested in finding the right opportunity and will be open to any fair offer when I do so." 3."Money is not very important to me. I need to be able to pay the bills but the work environment is far more important to me." Face to Face Interview Preparation So you have a job interview, NOW WHAT? You have sent out hundreds of resumes and finally a Human Resource person calls to schedule a time for you to come in for a face to face interview. This is a great company, and you think you are perfect for the job. Now, you must demonstrate that to the hiring authority you are perfect for the position. Here are some pointers to keep in mind when going in for the interview. Prepare - Do not go in attempting to "wing" it. Keep in mind there are lots of competitors for the job, and you will only have this opportunity to impress the hiring authority.Research and know the company, their history, products, services and reputation. Prepare answers to questions that will likely come up, like "What is your biggest weakness?" "What is your greatest failure?" "Describe your best and worse boss?" "Tell me something about yourself?" "Why did you leave your last job?" "How can you contribute to this company in this job?" There will likely be a longer list of questions, each a

potential landmine that can eliminate you from the competition. Keep your answers short and to the point. Do not ramble. Always be honest and avoid negative statements. Wear your best suit - The first impressions of a candidate are lasting. It is better to be over-dressed than under-dressed. Your appearance will demonstrate that you are taking the initiative. Go out of your way to make a good impression. Even if you never wear a suit to work, even if it is a production job, the interviewer will be pleased by your effort to impress. Be on time - It is better for you to be early and wait for your appointment time than to keep the interviewer waiting and wondering. If you miss your appointment time you may not get another. If a problem or emergency arises, and they do, call immediately and explain and offer to come in at another time, whenever is convenient for the interviewer. Body language - Sit up, look attentive, do not cross your arms or legs make eye contact. Interviewers rely on body language to determine your level of interest. Present a positive attitude - Companies seek pleasant and positive people. Bring extra copies of your resume - You may interview with a team of people, do not make them share one resume. Avoid smoking and drinking alcohol before and during an interview. If going to lunch with an interviewer, decline alcholic beverages even if the interviewer orders a cocktail with their meal. If you are a smoker, abstain before and during the interview. Smoking can offend many people, even smoking before an interview can leave an odor which may be offensive to the interviewer. Do not lead with money or benefit questions in the initial interview - If your main motivation is money it will probably turn off most hiring authorities. Convince them you can do the job and want the job before discussing money and benefits. Money, benefits and vacation will come up and can be discussed should the company wish to make you an offer. Sell yourself - If you don't no one else will. Use facts and figures to quantify your experience and ability. Tell them the things that will benefit the company if they hire you. Show interest in the job - If you act cool they may not realize that you want the job. Companies want someone who is interested and enthusiastic about the job and the company. Don't make the hiring authority guess if you want the job. Do not close any doors - No matter what you see or hear during the interview don't overreact. Obstacles may come up regarding money, relocation or other issues that can be resolved later if you leave the issue open. Getting an offer - If an offer is made to you during an interview never, reject it outright. Ask for time to think it over to consider money and the specific details of the offer. Always respond positively. If you let them know you want the

job it will be a lot easier to negotiate items like salary later. When the Interview is over - Ask if there are any reservations about your ability to do the job. Deal with these now. Ask what is the next step in the interview process. If you like the job and want an offer now is the time to tell them. Do not assume they will know if you want the job or not. Follow-up - Be sure to send a note letting them know you appreciate the opportunity to interview and reiterating your interest in the position. Keep the note brief, and to the point.

1.In my last job I dealt with customers at a retail store. One customer wanted to return an item she had obviously bought several years ago, 2."If selected I would hope to meet my goals and take advantage of opportunitites to learn so I will be considered for other positions within the company. I hope to build my career with a company such as this one." 3."Long term, I hope to start my own business." 15. Describe a situation you've encountered with a difficult customer.

Interview -tips ------------------------------1)You should do some rough work immediately adjacent to the problem(Aptitede) 2)You should write the explanationary notes adjacent to the C program. INTERVIEW AIM: 1)Project should be on FEM. 2)You have to explain project clearly 3)Don't tell "Iam expert in FEM or in C" Other wise they will ask more typical Ques. 4)You tell "I know C++ & C . I am learning C++ simultaneously with C." Q1)TELL ABOUT YOUR WORK (means project work) Q2)TELL ABOUT YOUR FAMILY Ans: Sir,I came from a family which gives higher priority to education.We are two.Because of my parents active guidance we are pursuing higher studies.I sister studied Msc and she got married. I studied B.tech in N.U 10 in- - - INTER in - - - Q3)WHY YOU ARE COMING TO SOFT WARE? ANS:Well sir,

What I have learned all these days definitely increased my technical skills.But a the same time also increased my ANALYTICAL,PROUBLE SHOOTING& PROBLEM SOLVING skills. What ever may be the technical backgrount ,above skills are necessary for S-W. Rapid grouth,frequent updating&Attractive compensation pay packages. Q4)WHAT IS YOUR AMBITION? ANS)Sir , I would like to become a person who is someone in SOFT WARE. Q5)WHERE DO YOU LIKE TO SEE AFTER 5 YEARS? ANS:Sir One year from now I would like to become a good soft ware expert. Two years from now I would like to become a person who handles team work(i.e project leader) Five years from now I have to handle morethan one project at a time. Q6)WHY THIS COLLEGE? Sir, from the very first begining I have had special carving(interest) to pursue(get) my higher studies from any reputed institution.I hope I have succeeded. Q7)YOUR +POINTS ANS:I am a team person (you sould mension as captain of cricket) I can handle problems as they came Q8)YOUR -POINTS Sir I am a bit over confident(or emotional)and I believes people in first insident. Q9)IF YOU CAN'T SELECTED TO THIS JOB ,WHAT CAN YOU DO? ANS: Sir I am confident that I should definitely get job in your organization.I that worst case will happened I will try to rectify my errors and once again I will try for your organization. Even then if I failed , I will search for another organization which is suitable for my potential. Q10)WHY THIS COMPANY? ANS: Sir Iam looking in the company for the following things. 1)Which is a gaint in S-W. 2)Which is well reputed organization. 3)Which is having noninert enveronment I hope I will find all the above things in your organization. OOOOOOOOOOK! THESE ARE MOST FREQUENT INTERVIEW QUESTIONS. YOU SHOULD PREPARE WELL AND LEAVE THE RESULT TO GOD. SSSSSSSSSSEU! yours, murthy.

> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >

We do not remember the questions exactly, here we just tried to cover the major areas. Paper consists of two sections : 1. analytical (20 marks) 2. C skills (20 marks)total time 45 min Analytical: ------------1. Given a cube, with different colors on its faces, and then is cut into 64 pieces, and the questions relate to the colors of different colored small cubes. 2. A few ladies and gents sit around table in some given order and 4 questions are about their seating arrangement with some restrictions. 3. Draw a venn diagram for 3 items : white, flowers, cloth Ans : draw 3 circles each intersecting the other , with white kept in the middle. 4. A problem related to seating arrangement of 4 people ( 2 ladies and 2 gents) with some restrictions 5. problem related to milk with water added to it for three times Ans: 20.5 litres 6. Problem related to diagrams . Five diagrams were given and asked to find the sixth one. C-Skills: -------1. Max number of nodes in a binary tree with height 3 is 20 : Ans: False 2. 10,20,30,40,50,60 : give the order when put in a queue and in a stack Ans : Queue : 10,20,30,40,50,60 stack : 60,50,40,30,20,10 3. Debugging is the process of finding Ans : logical and runtime errors 4. trace the error: void main(){ int &a; /* some other stuff here */ } Ans: syntax error 5. a problem with a function named 'myValue' will be given and asked to find the value of main() for an argument of 150, Ans : 150 6. Some problems related to 'for' loops.

> > > > > > > > > > > > > > >

7. problem on conditional inclusion. 8. problem related to depth first and breadth first search (DSA subject) 9. study the syntax of malloc function 10. locate the error int arr (20); Ans: syntax error. the above are only the guide lines, may not be the exact paper. WISHING YOU ALL THE BEST

******************************************************************************** There are two sections in Intergraph. 1.Aptitude 20 nos 2.'C' Programming

1.Non-verbal questions ________________________________________________________ | *| | | | | | | | | | | | | | | |_______|_______|_______|_______|_______|_______|__________| | | | | | | | | | | | | | | | | |_______|_______|_______|_______|_______|_______|____________| Like this 2.Venn diagram Draw venn diagram for flowers,white,clothes (Complete question is not there) 3.Analytical ABCDEF -->Boys PQRST -->Girls AD ST BR CQ 4. a.A b.S c.B d.C will with D will with T will with R and Q wants to be in the same team.

5. Matricide:Mother::Homicide:? a)Human b)Children c)Father

d)None

8.Rs.3 costs 5 oranges.Then sold each orange at 1 rupee each.Then sold each orange at 1 rupee each.For Rs.36 profit what is the no. of oranges required? Ans.90 9.The wages of the worker was increased from Rs.18 to Rs.21 per week.The average working hours is 7 hrs/day instead of 8 hrs/day.How much fast wokers should do work? 10.A sales person visits M,N,P,Q,R and S S can be varied according to the question. Ans. S MNPQR

13.A cube is colored on the opposite faces blue,black and yellow.It is then cut into 36 cubes.Out of which 32 were small cubes and 4 where big cubes. a)How many cubes were there,colored on the face b)How many cubes were colored on three faces. 16.A cask contain 40 liters milk.8 liters we taken out and filled with water.The same process is contained second&third time.How much amount of milk will be there? 'C' language -----------1). main() { int a[100]; int i; x= 0 y= 100 ------------------for(i=1;i<=4;i++) } return; 2). union(one questions) Ans:a 3). Debugging Ans: Logical&routine error

TECHNICAL TEST (MASCOT) --------- ---Total 6 sections. 1)Computer Fundamentals 2)Algorithms 3)Hardware 4)Software 5)General Awareness 6)Languages * All together 60 questions with each section containing 10 questions. * All are multiple choice questions 1. 2. 3. 4. One Nibble = ? Hexadecimal and Octal representation of 1024 ? What a compiler does ? DOS ? (whether Graphical interface or Character interface and two more choices are given) 5. CPU - abbrevation 6. Fortran used as ( Ans : Scientific Language) 7. ASCII character set ? (total number) 8. Windows NT- What NT stands for? 9. Which is not an input device ? (keyboard, Disk, Mouse,Lightpen) 10. Which is not a pointing device ?( mouse,Joy stick,lightpen none) 11. Microsoft Chief ? 12. 4GL ? (Fortran,SQL,ADA, ....) 13. Father of Computers? 14. Which of them is Object Oriented Language.? 15. Power PC is the product of ? (Microsoft,IBM,Apple,Motorola,Intel) (A combination of any correct 3 companies) 16. Latest processor used ? (Pentium, Power PC, Pentium pro,none) 17. MS Word is ? 18. First Super Computer built in India. (Ans : param) 19. Which of the following companies donot manufacture chips? (Microsoft, Motorola, Intel, HP) 20. LAN - abbrevation 21. WAN - abbrevation 22. Modem is ? (related to electrical hardware.- Like Modulator &demodulator) 23. FDD - abbrevation ( floppy disk drive) 24. BIT - abbrevation 25. Information is ? (message, data,processed data,none) 26. Which is not networking ?(internet,ethernet,arcnet,none) 27. One Gigabyte =?( 2 power30 , 2 power 20 ,2 power 10 none) 28. Which of the following is not RDBMS ? (sybase, SQL,Acess,none)_ 29. Oracle is ? (Ans : Relationasl Data Base Management System) 30. In Oracle, Table means ( Ans : Collection of records) 31. DMA - abbrevation (Direct Memory Access,Discrete memory Access, Disk memoryaccess) 32. What is meant byStatic Variable ? 33. What is meant by QUEUE? {refer any data structures text} 34. What is meant by STACK? {refer any data structures text} 35. The processor used in first IBM PC? (8086,8088,zig4,intel) 36. Difference between 80286 and 80287 37. In bubble sort , no. of comparisons required ?(ans : formula : N*(N-1)/2)

38. No. of comparisons of an item in 100 items by binary comparison? ( 10,25,50 100) 39. CRT - (Cathode Ray Tube) 40. No. of entryvalues are there in ideally in a subroutine. 41. Binary tree? 42. Flow in one direction ? (Single linked list,Double linked list,.......,....) 43. Electron screen size ? (here, 2 lines of algorithm is given. Name the algoirithm) 44. Which is not storage device.? (printer,CD ROM,Disk,none) 45. A question regarding memory ? ( least used memory,recently unused memory,..) 46. ISO - (International Standard Organisation) 47. HTML - (Hyper Text Makeup Language) 48. Flow chart for factorial N? (ans :choice a) 49. What is meant by Recursion ? 50. Struct(s) { int a; long b; } Union (u) {int a; long b; } Print sizeof(s)and sizeof(u) if sizeof(int)=4 and sizeof(long)=4 51.Switch (i) i=1; case 1 i++; case 2 ++i; break; ( ans : 1,2,3,none) case 3 --i; Output of i after executing the program 52. char S; char S[6]= " HELLO"; printf("%s ",S[6]); output of the above program ? (0, ASCII 0, I,unpredictable) 53. Unsigned char c; for ( c=0;c!=256;c++2) printf("%d",c); No. of times the loop is executed ? (127,128,256,infinitely) 54. int i; i=0; repeat i=i+1; <====== PASCAL PROGRAM print i; until(i<10) end No. of times the loop is executed?

55. Convert (int A,var ,int B;int c) { A=10; B=4-; C=120; } Convert (inta,b,c) { <====== PASCAL PROGRAM a=1; b=4; c=12; } convert (A,B,c) ? (10,40,120 10,40,12,..........,............) 56. Procedure A Begin -------end Procedure B Begin ----------end 57. int i; i=2; i++; if(i=4) { printf(i=4); } else { printf(i=3); } output of the program ? (4,3,unpredictable,none) 58. what is FAT?. File allocation table QUANTITATIVE APPTITUDE TEST : --------------------------Total 44 questions are there. Refer R.S. Aggarwal 1. 2. 3. 4. 5. How many degrees hours hand rotate in 10 minutes? 1/(10 power 18) - 1/(10 power 20) = ? 0 <x < 1: Which is greater ? (1/(x square),1/x,x,x square) c=a/b ; a-1=c What is the relation between a&b N = ((8.42)**2)*(95. ....)/((0.982)*(64.....)**2) If N contains the first three digits as 988,Which of the following is the nearest answer (9.88,98.8,988,none) 6. The sum of 7 consecutive odd integers with 27 as the fourth number. 7. (66666666666666)**2 + 888888888888=? <====== PASCAL PROGRAM No. Of errors in the program ?(1,2,3,none)

8. 2486724...... Express it in product of 3 numbers.(The given number is not exactly correct. Choices are given. Very easy) 9. Radius of sphere is increased by 50%. By how much percentage is surface area is increased. 10. In which of the following , 2 as a common factor , can be eliminated. Ans : log(x square)/log(y square) = log(x)/log(y)

Antonyms : 11. AUSPICISIOUS 12. REHALISHLY 13. & 14. - Sentence correction 15, 16 , 17 Spelling Mistakes 18, 19 - Two Questions 6 letters are assigned certain numbers. In each qusetion , 4 combination of digits are given . Of which , which gives a meaningful word. 20 & 21. - 4 sentences will be given in each question. Arrange them in logical order . 22. 5 straight lines are cut in a circle. A question regarding this. Reasoning : a) b) c) d) If statement A alone is required If statement B alone is required If bothe statements A & B are required Neither

23. Does Mr. Mathew give tution ? A) MAthew is a teacher B) In school, the teacher is not expected to give tutions. 24. There is no power cut in advanced country If T is a city, Is there power cut in that city? A) Z is a advanced country B) T ia a capital city of country Z 25. Tanzanians are in East Africa. Tanzanizns are good in either Education , Dance or Music A) Tanzanians are good at Education B) East Africa are good at dance & Music. Remaining questions 26 - 29 are of the same type. 30. On onw day, 14 children are admitted in a school by their mothers. 2 are sisters, 3 are brothers,2 are brother and sister and 2 are twins. The rest are singles. How many mothers came? (5 , 7, 9, 14) 31. Problem Cisterns & pipes. It will take 8hrs to fill a cistern. But due to leak at the bottom, it take 10 hrs to full it. In how many hrs, th eful tank will be emptied because of leak.? (18,8,40,10) 32. Question regarding men & work A does alone a work in 4 days B does alone a work in 8 days C does alone a work in 10 days

A & B together -----C & B together -----33. In 3.5 Kg rod , there is 74% silver. If it is alloyed with a 0.5 Kg rod, the % of silver goes p to 84%. The percent of silver in 0.5 Kg rod? 34. Two chords of lengths 2L1 and 2L2 are drawn in a circle. Their lengths are inversely proportional to the straight distance joining the centre. Find the radius of circle. 35. A Kg of tea costs Rs 49.50 . But the supplier gives 10 gms less for every Kg he sold. What is the actual cost. 36 - 40 A question on transportation table. 5 questions were given. ------------------------------------------------------A B C D E ------------------------------------------------------A X 12 8 20 6 ------------------------------------------------------B 12 X 12 5 9 ------------------------------------------------------C 20 8 X 4 7 ------------------------------------------------------D 3 15 6 X 10 ------------------------------------------------------E 12 5 8 3 X ------------------------------------------------------A,B,C,D,E denote the stages. X denote the start of the stage. The bus goes from A to E and E to A woith back stops at B,C, & D For each the charge is Rs.0.70 The numbers in the table are how many passengers are there in the bus upto that stage.( the numbers given the table are not correct) 36. Total no. of passengers in onward journey 37. Total amount in the conductors bag just before the bus reaches the stage C 38. How many Rs. 1.40 tickets are issued to passengers in backward journey. 39. If the bus breaks down between the stages C & D , the amount refunded to passengers. 40. If the ticket costs Rs.1.50, how much is the profit in Backward journey. Remaining 4 questions may be fron English. ---------------------------------------------------------

718, 1047, 1243 570 ------> INFOSYS 1173 -----> MOSCOT

Hello junta!, I am sending some papers received from iit kharag . It consists novel, verifone, oracle etc etc.... with best wishes, NOVEL ****************************************** PART 1 1). A beggr collects cigarette stubs and makes one ful cigarette with every 7 stubs. Once he gets 49 stubs . How many cigarettes can he smoke totally. Ans. 8 2). A soldiar looses his way in a thick jungle at random walks from his camp but mathematically in an interestingg fashion. First he walks one mile east then half mile to north. Then 1/4 mile to west, then 1/8 mile to south and so on making a loop. Finally hoe far he is from his camp and in which direction. ans: in north and south directions 1/2 - 1/8 + 1/32 - 1/128 + 1/512 - and so on = 1/2/((1-(-1/4)) similarly in east and west directions 1- 1/4 + 1/16 - 1/64 + 1/256 and so on = 1/(( 1- ( - 1/4)) add both the answers 3). hoe 1000000000 can be written as a product of two factors neither of them containing zeros Ans 2 power 9 x 5 ppower 9 ( check the answer ) 4). Conversation between two mathematcians: first : I have three childern. Thew pproduct of their ages is 36 . If you sum their ages . it is exactly same as my neighbour's door number on my left. The sacond mathematiciaan verfies the door number and says that the not sufficient . Then the first says " o.k one more clue is that my youngest is the youngest" Immmediately the second mathematician answers . Can you aanswer the questoion asked by the first mathematician? What are the childeren ages? ans 2 and 3 and 6 5). Light glows for every 13 seconds . How many times did it between 1:57:58 and 3:20:47 am ans : 383 + 1 = 384 6). 500 men are arranged in an array of 10 rows and 50 columns . ALL tallest among each row aare asked to fall out . And the shortest among THEM is A. Similarly after resuming that to their originaal podsitions that the shorteest among each column are asked to fall out. And the longest among them is B . Now who is taller among A and B ? ans A 7). A person spending out 1/3 for cloths , 1/5 of the remsaining for food and 1/4 of the remaining for travelles is left with Rs 100/- . How he had in the begining ? ans RS 250/8). there are six boxes containing 5 , 7 , 14 , 16 , 18 , 29 balls of either red or blue in colour. Some boxes contain only red balls and others contain only blue . One sales man sold one

box out of them and then he says " I have the same number of red balls left out as that of blue ". Which box is the one he solds out ? Ans : total no of balls = 89 and (89-29 /2 = 60/2 = 30 and also 14 + 16 = 5 + 7 + 18 = 30 9). A chain is broken into three pieces of equal lenths conttaining 3 links each. It is taken to a backsmith to join into a single continuous one . How many links are to tobe opened to make it ? Ans : 2. 10). Grass in lawn grows equally thickand in a uniform rate. It takes 24 days for 70 cows and 60 for 30 cows . How many cows can eat away the same in 96 days.? Ans : 18 or 19 11). There is a certain four digit number whose fourth digit is twise the first digit. Third digit is three more than second digit. Sum of the first and fourth digits twise the third number. What was that number ? Ans : 2034 and 4368 If you qualify in the first part then you have to appear for the second i.e the following part. Part 2. 1. From a vessel on the first day, 1/3rd of the liquid evaporates. On the second day 3/4th of the remaining liquid evaporates. what fraction of the volume is present at the end of the II day. 2. an orange galss has orange juice. and white glass has apple juice. Bothe equal volume 50ml of the orange juice is taken and poured into the apple juice. 50ml from the white glass is poured into the orange glass. Of the two quantities, the amount of apple juice in the orange glass and the amount of orange juice in the white glass, which one is greater and by how much? 3. there is a 4 inch cube painted on all sides. this is cut into no of 1 inch cubes. what is the no of cubes which have no pointed sides. 4. sam and mala have a conversation. sam says i am vertainly not over 40. mala says i am 38 and you are atleast 5 years older than me. Now sam says you are atleast 39. all the sattements by the two are false. How hold are they realy. 5. ram singh goes to his office in the city, every day from his suburbun house. his driver mangaram drops him at the railway station in the morning and picks him up in the evening. Every evening ram singh reaches the station at 5 o'clock. mangaram also reaches at the same time. one day ramsingh started early from his office and came to the station at 4 o'clock. not wanting to wait for the car he starts walking home. Mangaram starts at normal time, picks him up on the way and takes him back house, half an hour early. how much time did ram singh walk. 6. in a railway station, there are tow trains going. One in the harbour line and one in the main line, each having a frequency of 10 minutes. the main line service starts at 5 o'clock. the harbour line starts at 5.02a.m. a man goes to the station every day to catch the first train. what is the probability of man catchinhg the first train 7. some people went for vaction. unfortunately it rained for 13

days when they were there. but whenever it rained in the morning, they had clean afternood and vice versa. In all they enjoyed 11 morning and 12 afternoons. how many days did they stay there totally 8. exalator problem repeat 9. a survey was taken among 100 people to firn their preference of watching t.v. programmes. there are 3 channels. given no of people who watch at least channel 1 " " 2 " " 3 no channels at all atleast channels 1and 3 " " 1 and 2 " " 2 and 3 find the no of people who watched all three. 10. albert and fernandes they have two leg swimming race. both start from opposite and of the pool. On the first leg, the boys pass each other at 18 mt from the deep end of the pool. during the II leg they pass at 10 mt from the shallow end of the pool. Both go at const speed. but one of them is faster. each boy rests for 4 sec to see at the end of the i leg. what is the length of the pool. 11. T H I S Each alphabet stands for one I S digit, what is the maximum value T -------------can take X F X X X X U X -------------X X N X X -------------1. an escalator is descending at constant speed. A walks down and takes 50 steps to reach the bottom. B runs down and takes 90 steps in the same time as A takes 10 steps. how many steps are visible when the escalator is not operating. 2. evvery day a cyclist meets a train at a particular crossing. the road is straignt before the crossing and both are travelling in the same direction. cyclist travels with a speed of 10 Kmph. One day the cyclist comes late by 25 min. and meets the train 5km before the crossing. what is the seppd of the train. 3. five persons muckerjee, misra, iyer, patil and sharma, all take then first or middle names in the full names. There are 4 persons having I or middle name of kumar, 3 persons with mohan, 2 persons withdev and 1 anil. --Either mukherjee and patil have a I or middle name of dev or misra and iyer have their I or middle name of dev --of mukherkjee and misre, either both of them have a first or middle name of mohan or neither have a first or middle name of mohan --either iyer of sharma has a I or middle name of kumar hut not both. who has the I or middle name of anil 4. reading conprehension 5. a bird keeper has got Ppigeon, M mynas and S sparrows. the keeper goes for lunch leaving his assistant to watch the birds. a. suppose p=10, m=5, s=8 when the bird keeper comes back, the assistant informs the x birds have escaped. the bird keeper

exclaims oh no! all my sparrows are gone. how many birds flew away. b. when the bird keeper come back, the assistand told him that x birds have escaped. the keeper realised that atleast2 sparrows have escaped. what is minimum no of birds that can escape. 6. select from the five alternatives A,B,C,D,E AT THE end of each question ,two conditions will be given. the choices are to filled at follows. a. if a definete conclusion can be drawn from condition 1 b. if a definete conclusion can be drawn from condition 2 c. if a definete conclusion can be drawn from condition 1 and 2 d. if a definete conclusion can be drawn from condition 1 or 2 e. no conclusion can be drawn using both conditions 1. person 1 says N<5 person says n>5 person 3 says 3N>20 person 4 says 3n>10 person 5 says N<8 whaT IS value of N a) 1. no of persons who speak false being less than no of persons who tells the truth. 2. person 2 is telling the truth. b) 1. no of persong telling the truth is greater than no of persons telling lies 2. person 5 is telling the truth. 7. there are N coins on a table. there are two players A&B. you can take 1 or 2 coins at a time. the person who takes the last coin is the loser. a always starts first --1. if N=7 a) A can always win by taking two coins in his first chanse b) B can win only if A takes two coins in his first chance. c) B can always win by proper play d) none of the above --2. A can win by proper play if N is equal to a) 13 b) 37 c) 22 d) 34 e) 48 ans. e. --3. B can win by proper play if N is equal to a) 25 b)26 c) 32 d) 41 e) none --4. if N<4, can A win by proper play always 8. Two turns have vertain pecular charcteristics. One of them always lies on Monday, Wednesday, Friday. \the other always lies on Tuesdays, thursdays and saturdays. On the other days they tel the truth. You are given a conversation. person A-- today is sunday my name is anil person B-- today is tuesday, my name is bill answers for selected questions 2. equal 3. 8 4. 37(M),41(S) 5. 45 min. 6. 0.8 7. 18 11. T max value = 4 3. Anil kumar Mukherjee Kumar Misra dev Mohan iyer dev kumar patil mohan

1. 2. 3. 8.

150 60 kmph Mukherjee today is tuesday

mohan sharma kumar

Verifone Interview. ****************************:Here, we had three single man panels. They are seeing the subjects taken and asking questions in that mainly. They didn't go deep into any subject and they were just asking overview. When they catch any new word they are asking about it. These are some of the questions asked to us.(not to a single person.) What is a finite Automata. what is a turing machine. how many processors are there in a pentium microprocessor. in Sparc. difference between risc and cisc. is risc always fast. what is a real time system. name some real time OS what are the characteristics of Real time OS. is DOS a real time OS. what is a kernel,shell. what is binary search, traversal, hashing etc. given a scenario what is the suitable data structure. write a code to count the no. of 1's in a binary rep. of a number. memory taken for char *, int * etc. char *cp; int *ip; cp++,ip++ - what is the result. compare the no. of bytes in unix and Dos for long char short int. how to make programs portable on unix and Dos under such circumstances. in c++, what is a constructor, destructor etc. what is friend etc.

what is waterfall model, prototype model etc. what is testing. what is unit testing, integration testing etc. What is indexing in databases? What is atomicity? Can recursive pgms be written in C++, Write a recursive pgm to calculate factorial in c++. What is best data structure to store the processes info in a real time operating system?

VERIFONE ------> Paper:********************************* Verifone test Questions :

There are two parts : 1. Aptitute test Some questions are: (not in order) : 15 Minutes, 20 Questions

1. A question (first one)on addition of fraction of inches a. was the answer 2. There were 36 chairs. how many ways can they be placed such that all rows have equal no. of chairs and atleast three chairs are there in each row and there are atleast three rows. 5 ways. 3. There are 27 balls, of which 1 is heavier. given a balance how many times you need to weigh to find out the odd ball. 3 Weighs. 4. Product of three consecutive nos. 210. What is the sum of two least numbers 11. 5. If the area of the sqaure is increased by 69 % how much the length of the side will increase? 30% 6. if the sum of five consecutive nos. 35? how many prime nos are there : 2 primes. 7. if the length of the rectangle is reduced by 20% and breath is increased by 20 % what is the net change ? 4 % decrease 8. A question on sets. There are some 20 Basketball players & 30 Football players, and 25 cricket players. 1 of them plays all the three games. 8 of them plays atleast two games. They are 50 altogether. How many of them plays none of the games. 9. A question on directions. B is 20 miles east of A. D is 30 miles east of C. E is 10 miles north of D. C is 20 miles north of B. How far E is from A? Some 3 questions on Reasoning like, 10. If you say that giving stock options to employees increases the productivity of the company, which of the following sentences support it. A) Giving stock options increases the morale of the employees .. .. etc., 11. Gamblers comes to the Amusement parks. There are some Amusement parks in each city. There are some gamblers in each city. So what can you infer. A) Amusement park always have gamblers. .. .. etc.,

2. Technical Questions. i. Electrical & Electronics : 15 Questions 1.A Circuit with nand gates. (ans. may be XOR) 2.CMRR. relates to (options not in order) voltage follower non invering amplifier inverting amplifier integrator 3. Given a circuit , give the ouput. (ans. may be triangular wave.) 4. o/p of an assembly code. mulitply by 11. 5. how to handle asynchronous events. a) polling b) interrrupt etc. ii)Data Structures, Algo., & Complexity theory : 5 questions iii) OS : 5 questions iv) Networks and Hardware: 5 questions v) Databases and Misc.: 5 questions vi) C Pgm. : 5 questions some more 10 questions. 1. if W is a sequence of strings without a and W' is its reversal then WaW' is accepted by: Context Free Grammmars 2. Whether all recusive pgm can be writtten iteratively? yes. 3. What data structes you will use if you want to go to first record from the last and vice versa? doubly linked circular list 4. Given 10000 nos. and 48MB Memory. What is the complexity of the efficient sorting algo.? (the algo. is not mentioned) O(N) 5. Given a C code and ask what it does? code was something similar to Bubble sort and that particular code does the sorting in Desending order and the complexity is O(n^2)(which is the next question). 6. A code like this is given. a. for(i=0;i<num;i++) b. for(i=num;i>0;i--) Assuming no code optimization and assume that the microprocessor has flags etc. which one is correct. b will execute faster.

7. If there are too many page faults what is the problem? 8. To ensure one pgm. doesnt corrupt other pgm. in a Multi-pgm enviornment what you should do? 9. Which one you will use to implement critical section? Binary Semaphore 10. Which one is not needed for Multi-processing. enviornment? options are: virtual memory,security,time sharing,none of the above. 11. Which one is not done by Data link layer ? bit stuffing, LRC,CRC,parity check 12. Which one is not related to Data link layer? 13. Which one is not suitable for client-server application? tcp/ip,message passing,rpc,none of the above. 14. What is SQL. Procedural Relational DB Query Language. 15. Indexing in databases give you options were like 1.efficient deleting and inserting 2.efficient deleting. etc. 16. int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output? 17. Scope of Static Variable ............ in a file. 18. for(i=0; i<=10;i++,printf("%d",i)); +20. Real Time Os should have a)fast context switch b)Virtual memory etc. (+- is there in the questions)

21. Messages are transferred in some E71 code, where after 7 bits of data, 1 bit of stopping data is to be transferred. what should be done. options were like a) send directly b) send after encoding etc. 22. There are three processes A, B, C. A sends data to B. B removes the header stores it and sends the data to C. C returns it to B. B receives the message, identifies the message and adds the header that was stored and sends to A.B receives the messages from C such that atmost 'm' messages B are pending. Identify the best Data Structure. 23. A question in compiler about the heap and stack allocation of memory. 24. struct {

char a[3]; int b; }x; char *cp; a) size of x is 7. B b) c) d) cp takes the size of a pointer. (d ) is the ans. -------------------------------------------------------------------------------OVER --------------------------------------------------------------------------------

******************************************************* ORACLE ******************************************************* section 2: 1. what is sparese matrices?. give (at least) two methods for implemetation rather than two dimentional array. 2.what are cheap locks/latches?. 3.what is two phase locking?. Name two locks. 4. What are volatile variables in C?. What is their significance ?. 5. will these two work in same manner #define intp int * typedef int * inpp; 6. what are binary trees?. what is its use?. 7. section 3 : A). write header file containing functions used, etc (C), problem is to maitain a Queue. user has to give size and type of Queue. This problem is like this I don't remember exactly. B). C++ 1. What is polymorphism? 2. What is Inheritence?. 3. Mention four Object Oriented Programming Languages?> 4. Mention basic concepts of OOP. 5. What are messages in OOP?. 6. What is garbase collection?. 7.what is object?. 8. what is a class?. section 4: 1. expand the following:

a.SEI b. ISO 2. what are different levels of SEI?. 3. What is significance of ISO?> 4. Expand the following: a. WWW b. HTTP c. HTML d. TCP/IP 5. what is Black box testing?. 6. explain the following: 1. white box testing 2. white box testing 3. boundary testing 4 stress 5. negative 6. system 7. unit 8.module 9.destructive --------------------------------------------------------------------------------

********************************************* INFOSYS *********************************************

1) There are two balls touching each other circumferencically. The radius of the big ball is 4 times the diameter of the small ball.The outer small ball rotates in anticlockwise direction circumferencically over the bigger one at the rate of 16 rev/sec. The bigger wheel also rotates anticlockwise at Nrev/sec. what is 'N' for the horizontal line from the centre of small wheel always is horizontal. 2) 1 2 3 4 + 3 4 5 5 ---------4 6 8 9 - 2 3 4 5 ---------2 3 4 4 + 1 2 5 4 -----------3 6 9 8

Q) Strike off any digit from each number in seven rows (need not be at same place) and combine the same operations with 3 digit numbers to get the same addition. After this strike off another digit from all and add all the No.s to get the same 2 digit No. perform the same process again with 1 digit No.s. Give the ' no.s in 7 rows at each stage.

3) there is a safe with a 5 digit No. The 4th digit is 4 greater than second digit, while 3rd digit is 3 less than 2nd digit. The 1st digit is thrice the last digit. There are 3 pairs whose sum is 11. Find the number. Ans) 65292. 4) there are 2 guards Bal and Pal walking on the side of a wall of a wearhouse(12m X 11m) in opposite directions. They meet at a point and Bal says to Pal " See you again in the other side". After a few moments of walking Bal decides to go back for a smoke but he changes his direction again to his previous one after 10 minutes of walking in the other(opposite) direction remembering that Pal will be waiting for to meet.If Bal and Pal walk 8 and 11 feet respectively, how much distance they would have travelled before meeting again. 5) xxx)xxxxx(xxx 3xx ------xxx x3x -----xxx 3xx ------

Q) Find the 5 digit No. Hint: 5 is used atleast once in the calculation. 6) Afly is there 1 feet below the ceiling right across a wall length is 30m at equal distance from both the ends. There is a spider 1 feet above floor right across the long wall eqidistant from both the ends. If the width of the room is 12m and 12m, what distance is to be travelled by the spider to catch the fly? if it takes the shortest path. 7) Ramesh sit around a round table with some other men. He has one rupee more than his right person and this person in turn has 1 rupee more than the person to his right and so on, Ramesh decided to give 1 rupee to his right & he in turn 2 rupees to his right and 3 rupees to his right & so on. This process went on till a person has 'no money' to give to his right. At this time he has 4 times the money to his right person. How many men are there along with Ramesh and what is the money with poorest fellow. 8)Question related to probabilities of removing the red ball from a basket,given that two balls are removed from the basket and the other ball is red. The basket contains blue,red,yellow balls. 9)Venkat has 1boy&2daughters.The product of these children age is 72. The sum of their ages give the door numberof Venkat.Boy is elder of three.Can you tell the ages of all the three. ANALYTICAL ---------1)L:says all of my other 4 friends have money M:says that P said that exact one has money N:says that L said that precisely two have money O:says that M said that 3 of others have money. P:Land N said that they have money. all are liers.Who has money&who doesn't have?

2)A hotel has two,the east wing and the west wing.some east wing rooms but not all have an ocean view(OV).All WW have a harbour view(HV).The charge for all rooms is identical, except as follows * Extra charge for all HV rooms on or above the 3rd floor * Extra charge for all OV rooms except those without balcony * Extra charge for some HV rooms on the first two floor&some EW rooms without OV but having kitchen facilities. (GRE modrl Test 3-question 1J-22) 3)Post man has a data of name surname door no.pet name of 4 families. But only one is correct for each family.There are a set of statements &questions. 4)4 couples have a party.Depending on the set of statements,find who insulted whom and who is the host of the party. 5)5 women given some of their heights(tall,medium,short)Hair( long, plainted),stards(Black or Brown), sari,2 medium,2-short.Tall->no sari.Plainted->medium.Answer the combinations. 1) A person has to go both Northwards&Southwards in search of a job. He decides to go by the first train he encounters.There are trains for every 15 min both southwards and northwards.First train towards south is at 6:00 A.M. and that towards North is at 6:10 .If the person arrives at any random time,what is the probability that he gets into a train towards North. 2) A person has his own coach&whenever he goes to railway station he takes his coach.One day he was supposed to reach the railway station at 5 O'clock.But he finished his work early and reached at 3 O'clock. Then he rung up his residence and asked to send the coach immediately. He came to know that the coach has left just now to tje railway station. He thought that the coach has left just now to the railway station.He thought that he should not waste his time and started moving towards his residence at the speed of 3mi/hr.On the way,he gets the coach and reaches home at 6 o'clock.How far is his residence from railway station. 3)Radha,Geeta&Revathi went for a picnic.After a few days they forgot the date,day and month on which they went to picnic.Radha said that it was onThursday,May 8 and Geeta said that it was Thursday May 10.Revathi said Friday Jun 8.Now one of them told all things wrongly,others one thing wrong and the last two things wrongly.If April 1st is tuesday what is the right day,date and month? -------------------------------------------------------------------------

******************************************* SIEMENS INFO ******************************************* THIS PAPER CONSISTS 6 PARTS. 1)general 2)c/unix 3)c++/motif 4)database all are multiple choice q's

5)x-windows 6)ms-windows we have written q's not acc. to each part.total 50. q's. time is sufficient. if u have basic idea about all of the u can easily answer the paper. paper -----1)which of following operator can't be overloaded. a)== b)++ c)?! d)<= 2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above 3)CDPATH shell variable is in(c-shell) a) b) c) d) 4) term stickily bit is related to a)kernel b)undeletable file c) d)none 5)semaphore variable is different from ordinary variable by 6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y? 7) static variable will be visible in a)fn. in which they are defined b)module " " " " c)all the program d)none 8)unix system is a)multi processing b)multi processing ,multiuser c)multi processing ,multiuser,multitasking d)multiuser,multitasking 9)x.25 protocol encapsulates the follwing layers a)network b)datalink c)physical d)all of the above e)none of the above 10)TCP/IP can work on a)ethernet

b)tokenring c)a&b d)none 11)a node has the ip address 138.50.10.7 and 138.50.10.9.But it is transmitting data from node1 to node2only. The reason may be a)a node cannot have more than one address b)class A should have second octet different c)classB " " " " " d)a,b,c 12) the OSI layer from bottom to top 13)for an application which exceeds 64k the memory model should be a)medium b)huge c)large d)none 14)the condition required for dead lock in unix sustem is 15)set-user-id is related to (in unix) 16) bourne shell has a)history record b) c) d) 17)wrong statement about c++ a)code removably b)encapsulation of data and code c)program easy maintenance d)program runs faster 18)struct base {int a,b; base(); int virtual function1(); } struct derv1:base{ int b,c,d; derv1() int virtual function1(); } struct derv2 : base {int a,e; } base::base() { a=2;b=3; } derv1::derv1(){ b=5; c=10;d=11;} base::function1() {return(100); } derv1::function1() { return(200); } main() base ba; derv1 d1,d2; printf("%d %d",d1.a,d1.b) o/p is a)a=2;b=3; b)a=3; b=2;

c)a=5; b=10; d)none 19) for the above program answer the following q's main() base da; derv1 d1; derv2 d2; printf("%d %d %d",da.function1(),d1.function1(),d2.function1()); o/p is a)100,200,200; b)200,100,200; c)200,200,100; d)none 20)struct { int x; int y; }abc; you can not access x by the following 1)abc-->x; 2)abc[0]-->x; abc.x; (abc)-->x; a)1,2,3 b)2&3 c)1&2 d)1,3,4 21) automatic variables are destroyed after fn. ends because a)stored in swap b)stored in stack and poped out after fn. returns c)stored in data area d)stored in disk 22) relation between x-application and x-server (x-win) 23)UIL(user interface language) (x-win) 24)which is right in ms-windows a)application has single qvalue system has multiple qvalue b) " multiple " " single " c)" " " multiple " d)none 25)widget in x-windows is 26)gadget in x_windows is 27)variable DESTDIR in make program is accessed as a)$(DESTDIR) b)${DESTDIR} c)DESTDIR d)DESTDIR 28)the keystroke mouse entrie are interpreted in ms windows as a)interrupt b)message c)event d)none of the above 29)link between program and out side world (ms -win) a)device driver and hardware disk b)application and device driver c)application and hardware device d)none 30)ms -windows is a)multitasking b) c) d) 31)dynimic scoping is 32) after logout the process still runs in the background by giving

the command a)nohop b) 33)process dies out but still waita a)exit b)wakeup c)zombie d)steep 34)in dynamic memory allocation we use a)doubly linked list b)circularly linked c)B trees d)L trees e)none 35)to find the key of search the data structure is a)hask key b)trees c)linked lists d)records 36)data base --------------------------------------------------------employ_code salary employ_code -----------------------------------------------------------from -------------------------------------1236 1500 1237 2000 1238 2500 ----1238 1238 1237 -------

leave to -----

-------------------------select employ_code,employ_data ,leave the number of rows in the o/p a)18 b)6 c)7 d)3 37)DBMS 38)read about SQL,db 39)which is true a)bridge connects dissimiler LANand protocol insensitive b)router " " " " " c)gateway " " " " " d)none of the above 40)read types of tree traversals. 41)42)43) simple programs on pointers in c

1237 ----1237 ----1237 ------------------------------------------

_____________________________________________________________________

*********************************************

NOVEL NETWORK PAPER ********************************************* The paper consists os three sections. 1. aptitude 15 questions 20 min. 2. system concepts 20 questions 20 min. 3. 'c' 15 questions 20 min. NOTE::::: I'm sendin the questions, somany have no answers. U do check the answers for all the given questions also. All questions are MULTIPLE CHOICES ONLY. U do try to cover the related topics to get some understanding. In interview They are asking C C++ Operating system concepts and Networks. They will ask about Ur interesting subjects, U try to have good grip on those intresting subjects. They selected 11 out of 55 students. They asked about c c++ project work and OS,NETWORKS. But they selected only 2 , one from CS and another is BTech ECE. SECTION 1 is main factor selection to the interview -------------------------------------------------------------In the interveiw you should be very active .And should be frank to say no also.One CS student said that he don't know NETWORK and he hasn't taken NETWORKS subject.But he has selected. OK BEST OF LUCK. section 1::::; *. GRE book test paper 3 section 5 question no. 8 to 12 (ships WXYZ starting on dec. 23rd..........) * 5 programs are sheduled from monday to saterday, monday is not holiday, PQRST are the programs. The day before P is holiday, and some other clues are given, we have to find the sequence (4 questions) ANS: tuesday is the holiday P comes on wednesday , U can do the remaining very easily. * Suppose U R the presoner, There are two guards Who will tell truth or one will tell truth. There is a gate for liberty and another foe hell. Some questions are given, like i. are U tell truth? ii. another tell truth or not?? iii. both of U R telling truth?? iV. both of U lieing?? V. --------------

they gave a. b. c. d. and asking about which sequencing is sufficient to find the gate for liberty?? ( I can't give exact thing) * There are WIFE and HUSBAND at one side of river. They have one child, They want to cross the river. The child can't be lonly. The boat boy won't permit morethan one to cross the river, what is the correct way to cross the river?? * There are 7 targets, A B and C has to shoot them. All should be shooted consicutively. 1. The no. of chances for A and B are not less thn 2, 2. for C there is only one chance. 3. A can't shot 3 times consicutively. 4. B is permited to shoot in even chances only. They have given some 3or 4 questions on this * ---------------------------------------------------------------------------------------------------------------------------------------------------------section 3:: 1.Max value of SIGNED int a. b. c. d. 2.One questin is given, long one, to find the answer U should be femiliar with the operation as follows int *num={10,1,5,22,90}; main() { int *p,*q; int i; p=num; q=num+2; i=*p++; print the value of i, and q-p, and some other operations are there. } how the values will change?? 3. One pointer diff is given like this: int *(*p[10])(char *, char*) asked to find the meaning. 4. char *a[4]={"jaya","mahe","chandra","buchi"}; what is the value of sizeof(a)/sizeof(char *) a. 4 b.bytes for char c-- d.-( we don't know the answer) 5. void fn(int *a, int *b) { int *t; t=a; a=b; b=t; } main() { int a=2; int b=3;

fn(&a,&b); print the values os a and b; } what is the output--- out put won't swap, the same values remain. a. error at runtime b. compilation error c.2 3 d. 3 2 6. #define scanf "%s is a string" main() { printf(scanf,scanf); } what is the output. ANS : %s is string is string 7. i=2+3,4>3,1; printf("%d"i); ans is 5 only. 8. char *p="abc"; char *q="abc123"; while(*p=*q) { print("%c %c",*p,*q); } a. aabbcc b. aabbcc123 c. abcabc123 d. infinate loop ( this may be correct) 9. printf("%u",-1) what is the value? a. -1 b. 1 c. 65336 d. -(maxint value-1 I think, check for the answer)

10. #define void int int i=300; void main(void) { int i=200; { int i=100; print the value of i; } print the value of i } what is the output? may be 100 200 11. int x=2;

x=x<<2; printf("%d ",x); ANS=8; 12. int a[]={0,0X4,4,9}; int i=2; printf("%d %d",a[i],i[a]); what is the value??? 13. some other program is given , I can't remember it U can get it afterwads, the answer is 3 3, so U can check this in the exam. itself. I'll send the remaining two afterwars whenever I get them. OK ! ------------------------------------------------------------------------(may be error) /*some values are given*/

******************************************* MASCOT ******************************************* this test contains 2 papers paper1=aptitude-30min-44questions contains 3 sections paper2=computer skill-30min-60questions-6sections-10questions each ------paper1 ------section1 --------i do not remember the q's.simple quantitative apt. q's. but takes more time ,do fast. section2 -------1-8 q's on bus route. a b c d e a x 8 15 20 7 b 6 x 9 13 21 c 10 12 x 3 11 d 9 1 18 x 5 e 3 4 17 14 x where x is starting point.a&e are first and last stations.and b,c,d are intermediate stations. fig's are no. of passengers.cost of ticket is 0.7Rs /pass. between any successive stations. based on this few q's were given. the fig's are not correct. q's like total no.of pass.in onward journey. Rest of q's are 2 statements were given. u have to answer they are correct or not

.littlebit easy. section3 -------simple q's from r.s agarwal_quantitative apt. 1.1/10power18 - 1/10power20 .....value? 2.pipes-leaking-cisterns. paper2 -----------1.general awareness.2. 1.father of computers 2.expand HTML,DMA,FAT,LAN,WAN,FDDetc 3.intel's first micropro...a.pentium b.pentiumproetc 4.1024(dec)convert to hexa&octal 5.first micro.pro.a)8085b)8088etc 6.motorola's processor name? 7.windows_NT expand 8.simple programs on pascal&c 9.diff between 8087,8086 (which is latest vers.) 10.some basic q's on GUI. 11.q's on IBMpc 12.one program on finding factorial -------------------------------i remember only these q's. i will ask my pals about rest of q's.i want to know when mascot is coming.they have taken 14 from here. most of them are mech.&ime. ---------------------------------------------------

******************************************** TISL ******************************************** I know some 25 questions. The technical comprises of 50 questions on C,Unix and windows. 1.const char * char * const What is the differnce between the above tow?. 2.In Unix inter process communication take place using?. 3.What are the files in /etc directory?. 4.About i-node numbers 5.Max relaxable permisssion value with out giving write permission to others?. 6.About ln(linking) 7.A question on until until (who |grep mary) do sleep(60) done 8.Linking across directories?. 9.process id for kernell process 10.very first process created by kernell 11.function to repaint a window immediately?. 12.Function entry for DLL in win3.1

13.win 3.1 is a 14.win 3.1 supports which type of multi tasking?. 15.Message displayed when a window is destroyed 16.About fork()? 17.About send message and post message 18.Message to limit the size of window 19.System call executable binary file intoa process 20.About GDI object?. 21.API used to hide window 22.Initialize contents of a dialog?. _____________________________________________________________________

************************************ VERIFONE ************************************ there will be 45 qstns. 15+5+5+5+5+5+5. section: electronics: 1.a logic ckt is given and asked to identify the configuration. ans: XOR. 2.multi vibrator with nor gates is given ans: astable multi sqr wave opt. 3.4 stage ripple counter with delay(f/f) 10msec. How much time it takes for a state to change. 4*10=40. 4.impedence of a p'lel resonant circiut at resonance:R. 5.serial to parellel conversion is done by ans:shift register. 5.if the address bus id 20bits.then the memory space is 1Mb. 6.filtering can be done with:capacitor,iductor,both,none. 7.the config that is worst effected by low CMMR ans:Non inverting amplifier. 8.two progs are given. one satrts counting frm 0 to MAX and the other stars frm MAX to 0. which one executes fast.may be Max to 0.Think of.it should be. another 6 qstns are there. simple. Networks: 1. the fctn of datalink layer is:bit stuffing. 2.which of the following is not fctn of datalink layer: Encription. 3.voltage levels of rs232x:+12,-12. 4.which of the following is not used for client/server. RPC,TCP/IP,MESSAGEQs None ans:may be none. 5. database: 1. which of the following is true. ans:the primary key in DataBAse design is very important.

2. SQL is a Non procedural query langauge. 3. 4 5. compiler/algo/ds: 1.Data structure used to impliment a menu: doubly linked circular linked list. 2. some regular expression is given:WaW'.may be it is context free grammar. 3.,4,5. os: 1.the feature of real time os is: fast context swithing. 2.os impliments protection with the help of hardware(like virtual addressing in 386/286 etc). C: some small c progs are given asked to tell the function/errors etc. one of the qstn(last in the paper) is an invalid statement. finish of all these very fast and think about those others. they are simple only. Interview: depends on the member.(Mr.Deep if he comes asks archirect of 586/486/386/286 etc. otherwise DS,OS,C,TCP/IP . they hv taken 21(18btechs+3mtechs). ok if u hv any queries ask immediately. ok all the best.

------------------ COMPLETE -------------------PART 1 1). A beggr collects cigarette stubs and makes one ful cigarette with every 7 stubs. Once he gets 49 stubs . How many cigarettes can he smoke totally. Ans. 8 2). A soldiar looses his way in a thick jungle at random walks from his camp but mathematically in an interestingg fashion. First he walks one mile east then half mile to north. Then 1/4 mile to west, then 1/8 mile to south and so on making a loop. Finally hoe far he is from his camp and in which direction. ans: in north and south directions 1/2 - 1/8 + 1/32 - 1/128 + 1/512 - and so on = 1/2/((1-(-1/4)) similarly in east and west directions 1- 1/4 + 1/16 - 1/64 + 1/256 and so on = 1/(( 1- ( - 1/4)) add both the answers 3). hoe 1000000000 can be written as a product of two factors neither of them containing zeros Ans 2 power 9 x 5 ppower 9 ( check the answer ) 4). Conversation between two mathematcians: first : I have three childern. Thew pproduct of their ages is 36 . If you sum their ages . it is exactly same as my neighbour's door number on my left. The sacond mathematiciaan verfies the door number and says that the not sufficient . Then the first says " o.k one more clue is that my youngest is the youngest" Immmediately the second mathematician answers . Can you aanswer

the questoion asked by the first mathematician? What are the childeren ages? ans 2 and 3 and 6 5). Light glows for every 13 seconds . How many times did it between 1:57:58 and 3:20:47 am ans : 383 + 1 = 384 6). 500 men are arranged in an array of 10 rows and 50 columns . ALL tallest among each row aare asked to fall out . And the shortest among THEM is A. Similarly after resuming that to their originaal podsitions that the shorteest among each column are asked to fall out. And the longest among them is B . Now who is taller among A and B ? ans A 7). A person spending out 1/3 for cloths , 1/5 of the remsaining for food and 1/4 of the remaining for travelles is left with Rs 100/- . How he had in the begining ? ans RS 250/8). there are six boxes containing 5 , 7 , 14 , 16 , 18 , 29 balls of either red or blue in colour. Some boxes contain only red balls and others contain only blue . One sales man sold one box out of them and then he says " I have the same number of red balls left out as that of blue ". Which box is the one he solds out ? Ans : total no of balls = 89 and (89-29 /2 = 60/2 = 30 and also 14 + 16 = 5 + 7 + 18 = 30 9). A chain is broken into three pieces of equal lenths conttaining 3 links each. It is taken to a backsmith to join into a single continuous one . How many links are to tobe opened to make it ? Ans : 2. 10). Grass in lawn grows equally thickand in a uniform rate. It takes 24 days for 70 cows and 60 for 30 cows . How many cows can eat away the same in 96 days.? Ans : 18 or 19 11). There is a certain four digit number whose fourth digit is twise the first digit. Third digit is three more than second digit. Sum of the first and fourth digits twise the third number. What was that number ? Ans : 2034 and 4368 If you qualify in the first part then you have to appear for the second i.e the following part. Part 2. 1. From a vessel on the first day, 1/3rd of the liquid evaporates. On the second day 3/4th of the remaining liquid evaporates. what fraction of the volume is present at the end of the II day. 2. an orange galss has orange juice. and white glass has apple juice. Bothe equal volume 50ml of the orange juice is taken and poured into the apple juice. 50ml from the white glass is poured into the orange glass. Of the two quantities, the amount of apple juice in the orange glass and the amount of orange juice in the white glass, which one is greater and by how much? 3. there is a 4 inch cube painted on all sides. this is cut into no of 1 inch cubes. what is the no of cubes which have no pointed sides.

4. sam and mala have a conversation. sam says i am vertainly not over 40. mala says i am 38 and you are atleast 5 years older than me. Now sam says you are atleast 39. all the sattements by the two are false. How hold are they realy. 5. ram singh goes to his office in the city, every day from his suburbun house. his driver mangaram drops him at the railway station in the morning and picks him up in the evening. Every evening ram singh reaches the station at 5 o'clock. mangaram also reaches at the same time. one day ramsingh started early from his office and came to the station at 4 o'clock. not wanting to wait for the car he starts walking home. Mangaram starts at normal time, picks him up on the way and takes him back house, half an hour early. how much time did ram singh walk. 6. in a railway station, there are tow trains going. One in the harbour line and one in the main line, each having a frequency of 10 minutes. the main line service starts at 5 o'clock. the harbour line starts at 5.02a.m. a man goes to the station every day to catch the first train. what is the probability of man catchinhg the first train 7. some people went for vaction. unfortunately it rained for 13 days when they were there. but whenever it rained in the morning, they had clean afternood and vice versa. In all they enjoyed 11 morning and 12 afternoons. how many days did they stay there totally 8. exalator problem repeat 9. a survey was taken among 100 people to firn their preference of watching t.v. programmes. there are 3 channels. given no of people who watch at least channel 1 " " 2 " " 3 no channels at all atleast channels 1and 3 " " 1 and 2 " " 2 and 3 find the no of people who watched all three. 10. albert and fernandes they have two leg swimming race. both start from opposite and of the pool. On the first leg, the boys pass each other at 18 mt from the deep end of the pool. during the II leg they pass at 10 mt from the shallow end of the pool. Both go at const speed. but one of them is faster. each boy rests for 4 sec to see at the end of the i leg. what is the length of the pool. 11. T H I S Each alphabet stands for one I S digit, what is the maximum value T -------------can take X F X X X X U X -------------X X N X X -------------1. an escalator is descending at constant speed. A walks down and takes 50 steps to reach the bottom. B runs down and takes 90 steps in the same time as A takes 10 steps. how many steps are visible when the escalator is not operating. 2. evvery day a cyclist meets a train at a particular crossing. the road is straignt before the crossing and both are travelling

in the same direction. cyclist travels with a speed of 10 Kmph. One day the cyclist comes late by 25 min. and meets the train 5km before the crossing. what is the seppd of the train. 3. five persons muckerjee, misra, iyer, patil and sharma, all take then first or middle names in the full names. There are 4 persons having I or middle name of kumar, 3 persons with mohan, 2 persons withdev and 1 anil. --Either mukherjee and patil have a I or middle name of dev or misra and iyer have their I or middle name of dev --of mukherkjee and misre, either both of them have a first or middle name of mohan or neither have a first or middle name of mohan --either iyer of sharma has a I or middle name of kumar hut not both. who has the I or middle name of anil 4. reading conprehension 5. a bird keeper has got Ppigeon, M mynas and S sparrows. the keeper goes for lunch leaving his assistant to watch the birds. a. suppose p=10, m=5, s=8 when the bird keeper comes back, the assistant informs the x birds have escaped. the bird keeper exclaims oh no! all my sparrows are gone. how many birds flew away. b. when the bird keeper come back, the assistand told him that x birds have escaped. the keeper realised that atleast2 sparrows have escaped. what is minimum no of birds that can escape. 6. select from the five alternatives A,B,C,D,E AT THE end of each question ,two conditions will be given. the choices are to filled at follows. a. if a definete conclusion can be drawn from condition 1 b. if a definete conclusion can be drawn from condition 2 c. if a definete conclusion can be drawn from condition 1 and 2 d. if a definete conclusion can be drawn from condition 1 or 2 e. no conclusion can be drawn using both conditions 1. person 1 says N<5 person says n>5 person 3 says 3N>20 person 4 says 3n>10 person 5 says N<8 whaT IS value of N a) 1. no of persons who speak false being less than no of persons who tells the truth. 2. person 2 is telling the truth. b) 1. no of persong telling the truth is greater than no of persons telling lies 2. person 5 is telling the truth. 7. there are N coins on a table. there are two players A&B. you can take 1 or 2 coins at a time. the person who takes the last coin is the loser. a always starts first --1. if N=7 a) A can always win by taking two coins in his first chanse b) B can win only if A takes two coins in his first chance. c) B can always win by proper play d) none of the above --2. A can win by proper play if N is equal to a) 13 b) 37 c) 22 d) 34 e) 48 ans. e. --3. B can win by proper play if N is equal to a) 25 b)26 c) 32 d) 41 e) none --4. if N<4, can A win by proper play always 8. Two turns have vertain pecular charcteristics. One of them

always lies on Monday, Wednesday, Friday. \the other always lies on Tuesdays, thursdays and saturdays. On the other days they tel the truth. You are given a conversation. person A-- today is sunday my name is anil person B-- today is tuesday, my name is bill answers for selected questions 2. equal 3. 8 4. 37(M),41(S) 5. 45 min. 6. 0.8 7. 18 11. T max value = 4 3. Anil kumar Mukherjee Kumar Misra dev Mohan iyer dev kumar patil mohan mohan sharma kumar

1. 2. 3. 8.

150 60 kmph Mukherjee today is tuesday

INFOSYS --------

1) There are two balls touching each other circumferencically. The radius of the big ball is 4 times the diameter of the small ball.The outer small ball rotates in anticlockwise direction circumferencically over the bigger one at the rate of 16 rev/sec. The bigger wheel also rotates anticlockwise at Nrev/sec. what is 'N' for the horizontal line from the centre of small wheel always is horizontal. 2) 1 2 3 4 + 3 4 5 5 ---------4 6 8 9 - 2 3 4 5 ---------2 3 4 4 + 1 2 5 4 -----------3 6 9 8

Q) Strike off any digit from each number in seven rows (need not be at same place) and combine the same operations with 3 digit numbers to get the same addition. After this strike off another digit from all and add all the No.s to get the same 2 digit No. perform the same process again with 1 digit No.s. Give the ' no.s in 7 rows at each stage. 3) there is a safe with a 5 digit No. The 4th digit is 4 greater than second digit, while 3rd digit is 3 less than 2nd digit. The 1st digit is thrice the last digit. There are 3 pairs whose sum is 11. Find the number. Ans) 65292.

4) there are 2 guards Bal and Pal walking on the side of a wall of a wearhouse(12m X 11m) in opposite directions. They meet at a point and Bal says to Pal " See you again in the other side". After a few moments of walking Bal decides to go back for a smoke but he changes his direction again to his previous one after 10 minutes of walking in the other(opposite) direction remembering that Pal will be waiting for to meet.If Bal and Pal walk 8 and 11 feet respectively, how much distance they would have travelled before meeting again. 5) xxx)xxxxx(xxx 3xx ------xxx x3x -----xxx 3xx ------

Q) Find the 5 digit No. Hint: 5 is used atleast once in the calculation. 6) Afly is there 1 feet below the ceiling right across a wall length is 30m at equal distance from both the ends. There is a spider 1 feet above floor right across the long wall eqidistant from both the ends. If the width of the room is 12m and 12m, what distance is to be travelled by the spider to catch the fly? if it takes the shortest path. 7) Ramesh sit around a round table with some other men. He has one rupee more than his right person and this person in turn has 1 rupee more than the person to his right and so on, Ramesh decided to give 1 rupee to his right & he in turn 2 rupees to his right and 3 rupees to his right & so on. This process went on till a person has 'no money' to give to his right. At this time he has 4 times the money to his right person. How many men are there along with Ramesh and what is the money with poorest fellow. 8)Question related to probabilities of removing the red ball from a basket,given that two balls are removed from the basket and the other ball is red. The basket contains blue,red,yellow balls. 9)Venkat has 1boy&2daughters.The product of these children age is 72. The sum of their ages give the door numberof Venkat.Boy is elder of three.Can you tell the ages of all the three. ANALYTICAL ---------1)L:says all of my other 4 friends have money M:says that P said that exact one has money N:says that L said that precisely two have money O:says that M said that 3 of others have money. P:Land N said that they have money. all are liers.Who has money&who doesn't have? 2)A hotel has two,the east wing and the west wing.some east wing rooms but not all have an ocean view(OV).All WW have a harbour view(HV).The charge for all rooms is identical, except as follows * Extra charge for all HV rooms on or above the 3rd floor

* Extra charge for all OV rooms except those without balcony * Extra charge for some HV rooms on the first two floor&some EW rooms without OV but having kitchen facilities. (GRE modrl Test 3-question 1J-22) 3)Post man has a data of name surname door no.pet name of 4 families. But only one is correct for each family.There are a set of statements &questions. 4)4 couples have a party.Depending on the set of statements,find who insulted whom and who is the host of the party. 5)5 women given some of their heights(tall,medium,short)Hair( long, plainted),stards(Black or Brown), sari,2 medium,2-short.Tall->no sari.Plainted->medium.Answer the combinations. 1) A person has to go both Northwards&Southwards in search of a job. He decides to go by the first train he encounters.There are trains for every 15 min both southwards and northwards.First train towards south is at 6:00 A.M. and that towards North is at 6:10 .If the person arrives at any random time,what is the probability that he gets into a train towards North. 2) A person has his own coach&whenever he goes to railway station he takes his coach.One day he was supposed to reach the railway station at 5 O'clock.But he finished his work early and reached at 3 O'clock. Then he rung up his residence and asked to send the coach immediately. He came to know that the coach has left just now to tje railway station. He thought that the coach has left just now to the railway station.He thought that he should not waste his time and started moving towards his residence at the speed of 3mi/hr.On the way,he gets the coach and reaches home at 6 o'clock.How far is his residence from railway station. 3)Radha,Geeta&Revathi went for a picnic.After a few days they forgot the date,day and month on which they went to picnic.Radha said that it was onThursday,May 8 and Geeta said that it was Thursday May 10.Revathi said Friday Jun 8.Now one of them told all things wrongly,others one thing wrong and the last two things wrongly.If April 1st is tuesday what is the right day,date and month?

> > > > > > > > > > > > > >

DEar Shankar, Mani, Here are the infosys questions which appeared here., They had five sets of que. papers A,B,C,D,E. This is set A. Others are also of similar type with few modifications. love-kalya. INFOSYS

> There are 5 q papers with them. this is only one of those. > All otheres were more or less of the same model but different > qs. This is just to give U an idea.

> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >

> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >

The questions are not in order. 1)A,B,C,D,E related.4 of them made these statements each. i)C is my son in law's brother. ii)B is my father's brother. iii)E is my mother in law. iv)A is my brother's wife. who made these statements?(person mentioned is one of A,B,C,D,E)(10 mar ks). 2)e means belong. All members of E e D. All members of D e A. Not all members of D e E. Not all members of A e D. All members of C e both A and B.some questions are asked about relatio n.use venn diagram.(5 marks). 3)complete the table. Played won lost draw goals goals for against 2 2 1 2 1 2 4 2 3 7 A,B,C are 3 hockey teams.(2 marks). 4) A says Party was held on :Thursday ,May 8th. B says Party was held on :Tuesday,May 10th. C says party was held on :Friday ,June 8th. Given April 1 st was Tuesday.one of A,B,C says 1 correct.one says 1 wrong.and one was completely wrong of date,Month and day. Find the Day the party held. (5marks). 5) A ship is away from the shore by 180 miles.A plane is travelling at 10 times speed of the ship.How long from the shore will they meet? (2marks) 6) Every station in N railroad issue everyother station's ticket. some stations are added.Now they have to issue 46 more tickets. say the No.of stations after and before added.(5 marks). 7) 3 persons say these statements. A says either Democratic or liberal wins the elections. B says Democratic wins.C says neither democratic nor liberal wins the election.of these only one is wrong.who wins the election? (5 marks). 8) A clock showing 6 o'clock takes 30 secs to strike 6 times.How long will it take to strike 12 at midnight?Ans.66 secs.(2marks) 9) Only boys aged > 16 wear coats. Boys aged > 15 go to watch football.some more statements are given. What can be said about those who are watching football ? (age and costume) (5 marks). 10) There are 3 societies A,B,C having some tractors each. A Gives B and C as many tractors as they already have.

A B C

> > > > > > > > > > > > > > > > >

> > > > > > > > > > > > > > --

After some days B gives A and C as many tractors as they have. After some days C gives A and B as many tractors as they have. Finally each has 24 tractors.what is the original No.of tractors each had in the beginning? Ans.A -39. B- 21. C- 12.(7 marks). 11) 4,5 statements.From that find the answer.(7 marks). Reference books 1.) Puzzles and teasers by summer's 2.) Shakuntala Devi. (puzzles).

From: oepg9627 (Pullabhotla Srinivas) Message-Id: <9709141152.AA53207@vanavil> To: mepg9618 Status: R RAMCO 'C' QUESTION PAPER

1). -------------------------------------------------------------main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); }

Ans : An empty String 2). -------------------------------------------------------------main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } Ans 3). 57 94

-------------------------------------------------------------main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } Ans 5 20 1

4). ----------------------------------------------------------------#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } Ans 10 10 5 5

5). -------------------------------------------------------------main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Ans Samco Systems amco Systems

6). -------------------------------------------------------------#include<stdio.h> main() { char s1[]="Ramco";

char s2[]="Systems"; s1=s2; printf("%s",s1); } Ans Compilation error giving it cannot be an modifible 'lvalue'

7). -------------------------------------------------------------#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); } Ans : RamcoSystems

8). -------------------------------------------------------------[1]. The following variable is available in file1.c static int average_float; Ans all the functions in the file1.c can access the variable

9). -------------------------------------------------------------Ans : [2]. extern int x;

Check the answer

10). -------------------------------------------------------------[3]. Another Problem with # define TRUE 0

some code while(TRUE) { some code } This won't go into the loop as TRUE is defined as 0 Ans NONE OF THE ABOVE i.e D

11). -------------------------------------------------------------Ans : [4]. A question in structures where the memebers are dd,mm,yy. mm:dd:yy 09:07:97

12). -------------------------------------------------------------Ans : [5]. Another structure question 1 Rajiv System Analyst

13). -------------------------------------------------------------Answer INFILE.DAT is copied to OUTFILE.DAT

14). -------------------------------------------------------------A question with argc and argv . Input will be c:\TEMP.EXE Ramco Systems India Output will be India: I n d i a Systems: S y s t e m s Ramco: R a m c o Answer is choice d

15).

-------------------------------------------------------------Structure swap Ramco India Ramco Systems Corporation Ramco ... Limited . After swapping the result will be First two will be swapped. Ramco Systems Corporation Ramco India Ramco ... Limited .

16). -------------------------------------------------------------int x; main() { int x=0; { int x=10; x++; change_value(x); x++; Modify_value(); printf("First output: %d\n",x); } x++; change_value(x); printf("Second Output : %d\n",x); Modify_value(); printf("Third Output : %d\n",x); } Modify_value() { return (x+=10); } change_value() { return(x+=1); }

Ans

:

12

1

1

17). --------------------------------------------------------------

main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); } Ans : 11 16

18). -------------------------------------------------------------main() { int a=0; if(a=0) printf("Ramco Systems\n"); printf("Ramco Systems\n"); } Ans : Ony one time "Ramco Systems" will be printed -----------------OVER ------------------

/* ------------------- ramqp -------------------------*/ /* 1) A - G are 7 consecutive +ve integers not necessarily in the same order 1) B is the middle number 2) D is 3 less than c 3) the difference between F & A is equal in magnitude and sign to the difference between E & C 4) Neither F nor C lie between E & G a) What is the value of B-F 1 2 -1 -2 cannot be determined

b) which is greatest F C A E cannot be determined

c) Given both A & B are primes what is the lowest value of E 8 6 9 12 cannot

2) Given that a,b,c,d,e each represent one of the digits between 1-9 and that the following multiplication holds a b c d e 4 ---------e d c b a What digit does e represent a) b) c) d) e) 4 6 7 8 none

1. How many butes does an array A(1:8,-2:2,1:5) require for storage if each element of the array is 24 bits long. 200 2. begin i:=0; j:=0; loop: if(i != 0) i := i-1; else i := i+1; i := i+1; j := j+1; | block a | block b | block d 480 600 800 none

if (j <= 25) goto loop; end a) What is the value 2 ? b) How many times is 25 ? c) How many times is in [d] 26 d) How many times is to j=j+1 ? | block c of i at [c] the goto executed the loop executed if i is initialized to 1 the loop entered if the block [b] is changed

e) What is the value of i at [c] interchanging blocks [a] and [b] ? 2 ? Follow the instructions given below [ From 1 to 8 ]

1. A cause B or C but not both 2. F occurs only if B occurs 3. D occurs if B or C occurs 4. E occurs if only c occurs 5. J occurs only if E or F occurs 6. H occurs if E occurs 7. D causes G, H or Both. 8. G occurs if F occurs. Questions --------1. If A occurs which of the following may occur 1. F & G (ii) E & H (iii) D

Ans --(a) 1 only (b) 2 only (c) 3 only (d) 1,2,3 or 2 & 3 but not 1 (e) 1,2 & 3 2. If B occurs which must occur Ans --- (a) F & G (b) D & G (c) D (d) G & H (e) J 3. If J occurs which must occur Ans --(a) E (b) Both E & F (c) Either B or C (d) B (e) Both B & c 4. Which may occur as a result by a cause not mentioned. (I) D (II) A (III) F Ans --(a) I only (b) II (c) I & II (d) II & III (e) I,II,III 5. If E occurs which cannot occur. (a) F (b) A (c) D (d) C (e) J

#include<stdio.h> int SumElement(int *,int);

void main(void) { int x[10]; int i=10; for(;i;) { i--; *(x+i)=i; } printf("%d",SumElement(x,10)); } int SumElement(int array[],int size) { int i=0; float sum=0; for(;i<size;i++) sum+=array[i]; return sum; } #include<stdio.h> void main(void); int printf(const char*,...); void main(void) { int i=100,j=10,k=20; int sum; float ave; char myformat[]="ave=%.2f"; sum=i+j+k; ave=sum/3.0; printf(myformat,ave); } #include<stdio.h> void main(void); void main(void) { int a[10]; printf("%d",((a+9) + (a+1))); } #include<stdio.h> void main(void); void main(void) { struct s{ int x; float y; }s1={25,45.00}; union u{ int x; float y; } u1; u1=(union u)s1; printf("%d and %f",u1.x,u1.y); }

#include<stdio.h> void main(void) { unsigned int c; unsigned x=0x3; scanf("%u",&c); switch(c&x) { case 3: printf("Hello!\t"); case 2: printf("Welcome\t"); case 1: printf("To All\t"); default:printf("\n"); } } #include<stdio.h> int fn(void); void print(int,int(*)()); int i=10; void main(void) { int i=20; print(i,fn); } void print(int i,int (*fn1)()) { printf("%d\n",(*fn1)()); } int fn(void) { return(i-=5); } #include<stdio.h> void main(void); void main(void) { char numbers[5][6]={"Zero","One","Two","Three","Four"}; printf("%s is %c",&numbers[4][0],numbers[0][0]); } int bags[5]={20,5,20,3,20}; void main(void) { int pos=5,*next(); *next()=pos; printf("%d %d %d",pos,*next(),bags[0]); } int *next() { int i; for(i=0;i<5;i++) if (bags[i]==20) return(bags+i);

printf("Error!"); exit(0); }

#include<stdio.h> void main(void) { int y,z; int x=y=z=10; int f=x; float ans=0.0; f *=x*y; ans=x/3.0+y/3; printf("%d %.2f",f,ans); } #include<stdio.h> void main(void); double dbl=20.4530,d=4.5710,dblvar3; void main(void) { double dbln(void); dblvar3=dbln(); printf("%.2f\t%.2f\t%.2f\n",dbl,d,dblvar3); } double dbln(void) { double dblvar3; dbl=dblvar3=4.5; return(dbl+d+dblvar3); }

#include<stdio.h> static int i=5; void main(void) { int sum=0; do { sum+=(1/i); }while(0<i--); }

#include<stdio.h> void main(void) { int oldvar=25,newvar=-25; int swap(int,int); swap(oldvar,newvar); printf("Numbers are %d\t%d",newvar,oldvar); } int swap(int oldval,int newval) {

int tempval=oldval; oldval=newval; newval=tempval; }

#include<stdio.h> void main(void); void main(void) { int i=100,j=20; i++=j; i*=j; printf("%d\t%d\n",i,j); }

#include<stdio.h> void main(void); int newval(int); void main(void) { int ia[]={12,24,45,0}; int i; int sum=0; for(i=0;ia[i];i++) { sum+=newval(ia[i]); } printf("Sum= %d",sum); } int newval(int x) { static int div=1; return(x/div++); }

#include<stdio.h> void main(void); void main(void) { int var1,var2,var3,minmax; var1=5; var2=5; var3=6; minmax=(var1>var2)?(var1>var3)?var1:var3:(var2>var3)?var2:var3; printf("%d\n",minmax); }

#include<stdio.h> void main(void); void main(void) { void pa(int *a,int n);

int arr[5]={5,4,3,2,1}; pa(arr,5); } void pa(int *a,int n) { int i; for(i=0;i<n;i++) printf("%d\n",*(a++)+i); }

#include<stdio.h> void main(void); void print(void); void main(void) { print(); } void f1(void) { printf("\nf1():"); } #include "6.c" void print(void) { extern void f1(void); f1(); } static void f1(void) { printf("\n static f1()."); }

#include<stdio.h> void main(void); static int i=50; int print(int i); void main(void) { static int i=100; while(print(i)) { printf("%d\n",i); i--; } } int print(int x) { static int i=2; return(i--); }

#include<stdio.h>

void main(void); typedef struct NType { int i; char c; long x; } NewType; void main(void) { NewType *c; c=(NewType *)malloc(sizeof(NewType)); c->i=100; c->c='C'; (*c).x=100L; printf("(%d,%c,%4Ld)",c->i,c->c,c->x); }

#include<stdio.h> void main(void); const int k=100; void main(void) { int a[100]; int sum=0; for(k=0;k<100;k++) *(a+k)=k; sum+=a[--k]; printf("%d",sum); } /* BAAN

PAPER 1 completely from R.S.Agarwal 1 ---> analogy 1c(1-20)[pg 15-17] 2----> directions sense test 7b[1-10] 3---->logic deduction 17b[30-50] 4----> mathematical modelling 15a[1-20] technical paper is same for all papers peper 2 analogy from GRE book LOGIC model test 1 page 406 407 508 381 377 Q.no 1-4 17-22 1-4 40 -41 7-11 new GRE (motorist prob) (letters a,b,c) (all g's are h's) (president prob) (office staff)

part 2 problems on ages part 3 blood relations

series problems 6,9,14,21,(30) 5,2,(2.5),8 2,10,(30),68,130,(222) 9,15,23,33,(45) 6,25,62,123,314,241 5,11,19,29,(41),55 2,12,30,56,90,(132) 4,18,52,(17) 39,21,(45),93 1,3,7,(15)31 3,9,21,(45),93 35,24,15,8,(3) 2,12,30,56,90,(132) 3,11,19,29,(39),51 analogy fans:bleachers:: gre389 archipilago:islands::gre393 crow:boastful 393 bracket:shelf 394 taxonomy:classification 394 moderator:debate 413 glossary:words 413 lumber: bear 414 celerity:snail 414 wood:sand 454 carpenter :saw 87 horns:bull 87 gullible: 87 marathon :: (13th GRE 87p) Skin : man :: kick : Football :: Betal :chew (pno.45, RS 46) Bamboo: Shoot :: Bean : sprout Deflect : missile : distract : Attraction Editor : magazine :: director : film pine : clock :: calander :date Volcano : Lava :: Fault : earthquate (Eyes : Tears) Hero : Accuhade :: hanging stork : Ridicle Agitator : Firebrand :: Renegade ; Turncoat Burst : Sound :: Tinder : Fire Star : cluster :: Tree : clump Piston : Cylinger :: elevator : shaft Mitigate : punishment :: commute : sentence Erudite : scholar :: illeterate : ignorant Fire : Ashes :: explosion : debris (11 RS 11th) mason : wall :: Author : Book (87p GRE ) Fire : Ashes :: Event : memories SECTION II CODING DRIVE = ESJWF LADDLER -> MBEEMFS BUDPI = XZFMR

Load == MPBE HOW WILL YOU CODE 2) START =WALKA

What would be STUPID = WAZMRF FROM 3 TO 7 Z=A

A=Z, B=Y, C=X, .......... 3) 4) 5) 6) 7) LIMIT = ORNRG SOUR = HLFI POCKET = KLXPUG GROUP = TILFK ZERD = AVIL

FROM 8 TO 9 Here each letter is coded a s A = (BC)D , B=(CD ) E, C=(DE)F

8) SHOOT ---- VKRRW 9) VWDUW ------ YZGXZ 10) If DBMDVUUB = CALCUTTA How will be BOMBAY = ? (ANLAZX) 11) DELHI = CD****************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** **********************************************13, O = 15 then DEAF = ? (16) -------------------------TECHNICAL : 1. Binary equivalent of 52 ---110100 2. Hexadecimal equivalent of 3452 -----3.Consider the Boolean table 72A

Ans : a) 1 4. Consider the circuit Ans a) (A+B).(C+B) 5. jUST in time Concept address ---Ans : Elimination of waste by purchasing manufacturing exactly when needed 6. A better way of unit testing s/w program is Ans : User test 7.A lowest level of security by most RDBMS are Ans : a) field low 8. OOT uses Ans : Encapsulated of detect methods 9.EDI useful in Ans : Electronic Transmission 10. MRPII different from MRP aNS : Modular version of man redundant initials 11. Hard disk time for R/W head to move to correct

And : a) Lactency 12. Percentage of times a page number bound in associate register Ans : Bit ratio 13. MODEM --------Modulation and Demodulation 14. RDBMS file system Ans : Interrelated 15. Super Key is ----Primary key+ Attribute 16. Transmission is said to be ----committed 17. Windows 95 supports a) Multiuser b) n tasks c) Both Ans : c 18. Difference between printf and fprintf ---19.To change permission r&w to owner group to no permission to others a) Chmod 614 b) chmod 604 c) chmod 640 d) chmod 310 20. In batch process ------------better job

1) ONE RECTANGULAR PLATE WITH LENGTH 8INCHES,BREADTH 11 INCHES AND 2 INCHES THICKNESS IS THERE.WHAT IS THE LENGTH OF THE CIRCULAR ROD WITH DIAMETER 8 INCHES AND EQUAL TO VOLUME OF RECTANGULAR PLATE? ANS: 3.5INCHES 2) WHAT IS THE NUMBER OF ZEROS AT THE END OF THE PRODUCT OF THE NUMBERS FROM 1 TO 100 3) in some game 139 members have participated every time one fellow will get bye what is the number of matches to choose the champion to be held? ans: 138 4) one fast typist type some matter in 2hr and another slow typist type the same matter in 3hr. if both do combinely in how much time they will finish. ans: 1hr 12min 5) in 8*8 chess board what is the total number of squares refer odel ans:204 6) falling height is proportional to square of the time. one object falls 64cm in 2sec than in 6sec from how much height the object will fall. 7) gavaskar average in first 50 innings was 50 . after the 51st innings his average was 51 how many runs he made in the 51st innings 8)2 oranges,3 bananas and 4 apples cost Rs.15 . 3 ornages 2 bananas 1 apple costs Rs 10. what is the cost of 3 oranges, 3 bananas and 3 apples ANs Rs 15. 9)in 80 coins one coin is counterfiet what is minimum number of weighings to find out counterfiet coin 10)in a company 30% are supervisors and 40% employees are male if 60% of supervisors are male. what is the probability that a randomly choosen employee is a male or female? 11)statement: all green are blue are blue, all blue are white conclusion: I) some blue are green II) some white are green III)some green are not white IV) all white are blue

a) he has given four choices like gre type 12)all teachers are students. some students are girls. this type of questions are there. we cant able to reproduce them.:wq

1.while((*p++=*q++)!=0){} is equal to expl: while((*p++=*q++)!='\0'){} a) b) c) d) 2.the function strcmp(str1,str2) returns ans: int 3. int *x[](); means expl: Elments of an array can't be functions. 4.#define PRINT(int) printf("int=%d",int); main() {int x,y,z; x=03;y=-1;z=01; PRINT(x^x); z<<=3;PRINT(x); ----> I think here may be (z). for this ans=8. if (x) ans ix =3. y>>=3;PRINT(y); } expl: 0,8,-1 (if second is z)

5. struct list{ int x; struct list *next; }*head; the struct head.x =100 above is correct / wrong expl: Before using the ptr type struct variable we have to give memory to that . And also when ever the struct variable is ptr then we access the members by "->" operator.

6. '-'=45 '/'=47 printfr(%d/n,'-','-','-','-','/','/','/'); o/p =? ans: 45 ( i.e it takes first argument in printf function.

12.o/p=?

int i; i=1; i=i+2*i++; printf(%d,i); ********************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** *******************************************pointer; b=c; printf("a=%d b=%d",a,b); a. a=1 b=3 b a=3 b=3 c 3 2 d. error ans: d . Because ";" in dicates competion of that statemen t. so It give error. * Imp: And in above program " a=c/*pointer " statement it considering as starting of comment st atement. So , It also causing for syntax error.

11.#include<malloc.h> char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); o/p=? ans: prints " A " 13. int sum(n) int n; if(n<1)return n; else return(n+sum(n-1)) a 10 b 16 c 14 d 15 ans: If we take n=5 then ans is 15. 14. when a function is recursively called all , automatic variables are a. stored in stack b . c. d ans: (a)

15) #define MAN(x,y) (x)>(y)?(x):(y) { int i=10;j=5;k=0;

k= MAX(i++,++j) printf(%d %d %d %d,i,j,k)} 16) a=10;b=5; c=3;d=3; if(a<b)&&(c=d++) printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d); : ............................................. 19. what is o/p #include<stdarg.h> show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf("\n %d",a) } display(char) {int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); } a) 13 b) 12 c) 44 d) 14 ............................................. 17. if the following program (my prog) main(int size of ,char *arg[]) { while(size of arg) printf("%s",arg[--size of arg) } is run from the command line as myprog jan feb mar apr what would be the o/p a)myprog jan,feb,mar,apr b)rev c)jan,feb,mar,apr d)error ............................................. 18.what is o/p main() {int i=3; while(i--) { int i=100 i--; printf("%d..",i); } } a) infinite loop b) error c) 99..99..99..99 d) 3..22..1.. ............................................. 20)what is the o/p of the program main() {

int rows=3,colums=4; int a[rows][colums]={1,2,3,4,5,6,7,8,9,10,11,12}; i=j=k=99; for(i=0;i<rows;i++) for(j=0;j<colums;j++) if(a[k][j]<k) k=a[i][j]; printf("%d\n",k); ........................................................ ~ WISH YOU GOOD LUCK yours To Dear Venku, IITB.

venu

1) ONE RECTANGULAR PLATE WITH LENGTH 8INCHES,BREADTH 11 INCHES AND 2 INCHES THICKNESS IS THERE.WHAT IS THE LENGTH OF THE CIRCULAR ROD WITH DIAMETER 8 INCHES AND EQUAL TO VOLUME OF RECTANGULAR PLATE? ANS: 3.5INCHES 2) WHAT IS THE NUMBER OF ZEROS AT THE END OF THE PRODUCT OF THE NUMBERS FROM 1 TO 100 3) in some game 139 members have participated every time one fellow will get bye what is the number of matches to choose the champion to be held? ans: 138 4) one fast typist type some matter in 2hr and another slow typist type the same matter in 3hr. if both do combinely in how much time they will finish. ans: 1hr 12min 5) in 8*8 chess board what is the total number of squares refer odel ans:204 6) falling height is proportional to square of the time. one object falls 64cm in 2sec than in 6sec from how much height the object will fall. 7) gavaskar average in first 50 innings was 50 . after the 51st innings his average was 51 how many runs he made in the 51st innings 8)2 oranges,3 bananas and 4 apples cost Rs.15 . 3 ornages 2 bananas 1 apple costs Rs 10. what is the cost of 3 oranges, 3 bananas and 3 apples ANs Rs 15. 9)in 80 coins one coin is counterfiet what is minimum number of weighings to find out counterfiet coin 10)in a company 30% are supervisors and 40% employees are male if 60% of supervisors are male. what is the probability that a randomly choosen employee is a male or female? 11)statement: all green are blue are blue, all blue are white conclusion: I) some blue are green II) some white are green III)some green are not white IV) all white are blue

a) he has given four choices like gre type 12)all teachers are students. some students are girls. this type of questions are there. we cant able to reproduce them.:wq

1.while((*p++=*q++)!=0){} is equal to expl: while((*p++=*q++)!='\0'){} a) b) c) d) 2.the function strcmp(str1,str2) returns ans: int 3. int *x[](); means expl: Elments of an array can't be functions. 4.#define PRINT(int) printf("int=%d",int); main() {int x,y,z; x=03;y=-1;z=01; PRINT(x^x); z<<=3;PRINT(x); ----> I think here may be (z). for this ans=8. if (x) ans ix =3. y>>=3;PRINT(y); } expl: 0,8,-1 (if second is z)

5. struct list{ int x; struct list *next; }*head; the struct head.x =100 above is correct / wrong expl: Before using the ptr type struct variable we have to give memory to that . And also when ever the struct variable is ptr then we access the members by "->" operator.

6. '-'=45 '/'=47 printfr(%d/n,'-','-','-','-','/','/','/'); o/p =? ans: 45 ( i.e it takes first argument in printf function.

12.o/p=?

int i; i=1; i=i+2*i++; printf(%d,i); ********************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** *******************************************pointer; b=c; printf("a=%d b=%d",a,b); a. a=1 b=3 b a=3 b=3 c 3 2 d. error ans: d . Because ";" in dicates competion of that statemen t. so It give error. * Imp: And in above program " a=c/*pointer " statement it considering as starting of comment st atement. So , It also causing for syntax error.

11.#include<malloc.h> char *f() {char *s=malloc(8); strcpy(s,"goodbye")} main() { char *f(); printf("%c",*f()='A'); o/p=? ans: prints " A " 13. int sum(n) int n; if(n<1)return n; else return(n+sum(n-1)) a 10 b 16 c 14 d 15 ans: If we take n=5 then ans is 15. 14. when a function is recursively called all , automatic variables are a. stored in stack b . c. d ans: (a)

15) #define MAN(x,y) (x)>(y)?(x):(y) { int i=10;j=5;k=0;

k= MAX(i++,++j) printf(%d %d %d %d,i,j,k)} 16) a=10;b=5; c=3;d=3; if(a<b)&&(c=d++) printf(%d %d %d %d a,b,c,d) else printf("%d %d %d %d a,b,c,d); : ............................................. 19. what is o/p #include<stdarg.h> show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf("\n %d",a) } display(char) {int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); } a) 13 b) 12 c) 44 d) 14 ............................................. 17. if the following program (my prog) main(int size of ,char *arg[]) { while(size of arg) printf("%s",arg[--size of arg) } is run from the command line as myprog jan feb mar apr what would be the o/p a)myprog jan,feb,mar,apr b)rev c)jan,feb,mar,apr d)error ............................................. 18.what is o/p main() {int i=3; while(i--) { int i=100 i--; printf("%d..",i); } } a) infinite loop b) error c) 99..99..99..99 d) 3..22..1.. ............................................. 20)what is the o/p of the program main() {

int rows=3,colums=4; int a[rows][colums]={1,2,3,4,5,6,7,8,9,10,11,12}; i=j=k=99; for(i=0;i<rows;i++) for(j=0;j<colums;j++) if(a[k][j]<k) k=a[i][j]; printf("%d\n",k); ........................................................ ~ WISH YOU GOOD LUCK yours To Dear Venku, IITB.

venu

/*

BAAN

PAPER 1 completely from R.S.Agarwal 1 ---> analogy 1c(1-20)[pg 15-17] 2----> directions sense test 7b[1-10] 3---->logic deduction 17b[30-50] 4----> mathematical modelling 15a[1-20] technical paper is same for all papers peper 2 analogy from GRE book LOGIC model test 1 page 406 407 508 381 377 Q.no 1-4 17-22 1-4 40 -41 7-11 new GRE (motorist prob) (letters a,b,c) (all g's are h's) (president prob) (office staff)

part 2 problems on ages part 3 blood relations series problems 6,9,14,21,(30) 5,2,(2.5),8 2,10,(30),68,130,(222) 9,15,23,33,(45) 6,25,62,123,314,241 5,11,19,29,(41),55 2,12,30,56,90,(132) 4,18,52,(17) 39,21,(45),93

1,3,7,(15)31 3,9,21,(45),93 35,24,15,8,(3) 2,12,30,56,90,(132) 3,11,19,29,(39),51 analogy fans:bleachers:: gre389 archipilago:islands::gre393 crow:boastful 393 bracket:shelf 394 taxonomy:classification 394 moderator:debate 413 glossary:words 413 lumber: bear 414 celerity:snail 414 wood:sand 454 carpenter :saw 87 horns:bull 87 gullible: 87 marathon :: (13th GRE 87p) Skin : man :: kick : Football :: Betal :chew (pno.45, RS 46) Bamboo: Shoot :: Bean : sprout Deflect : missile : distract : Attraction Editor : magazine :: director : film pine : clock :: calander :date Volcano : Lava :: Fault : earthquate (Eyes : Tears) Hero : Accuhade :: hanging stork : Ridicle Agitator : Firebrand :: Renegade ; Turncoat Burst : Sound :: Tinder : Fire Star : cluster :: Tree : clump Piston : Cylinger :: elevator : shaft Mitigate : punishment :: commute : sentence Erudite : scholar :: illeterate : ignorant Fire : Ashes :: explosion : debris (11 RS 11th) mason : wall :: Author : Book (87p GRE ) Fire : Ashes :: Event : memories SECTION II CODING DRIVE = ESJWF LADDLER -> MBEEMFS BUDPI = XZFMR

Load == MPBE HOW WILL YOU CODE 2) START =WALKA

What would be STUPID = WAZMRF FROM 3 TO 7 Z=A

A=Z, B=Y, C=X, .......... 3) 4) 5) 6) LIMIT = ORNRG SOUR = HLFI POCKET = KLXPUG GROUP = TILFK

7) ZERD = AVIL FROM 8 TO 9 Here each letter is coded a s A = (BC)D , B=(CD ) E, C=(DE)F

8) SHOOT ---- VKRRW 9) VWDUW ------ YZGXZ 10) If DBMDVUUB = CALCUTTA How will be BOMBAY = ? (ANLAZX) 11) DELHI = CD?????????????????????????????????????????????????????????????????? ??????????????????????????????????????????????????????????????book on Microproce ssor) > > 24. Qn on pipeline architecture > > 25 QN on LAPB protocol > > > > > ???????????????????????????????????????????????????????????????????????????????? ???????????????????????????????????????????????????????????????????????????????4 ???4??????????????????4??????4???????????????????????????????????????? ??????????? ??????????????13, O = 15 then DEAF = ? (16) -------------------------TECHNICAL : 1. Binary equivalent of 52 ---110100 2. Hexadecimal equivalent of 3452 -----3.Consider the Boolean table 72A

Ans : a) 1 4. Consider the circuit Ans a) (A+B).(C+B) 5. jUST in time Concept address ---Ans : Elimination of waste by purchasing manufacturing exactly when needed 6. A better way of unit testing s/w program is Ans : User test 7.A lowest level of security by most RDBMS are Ans : a) field low 8. OOT uses Ans : Encapsulated of detect methods 9.EDI useful in Ans : Electronic Transmission 10. MRPII different from MRP aNS : Modular version of man redundant initials 11. Hard disk time for R/W head to move to correct And : a) Lactency 12. Percentage of times a page number bound in associate register Ans : Bit ratio 13. MODEM --------Modulation and Demodulation 14. RDBMS file system Ans : Interrelated

15. Super Key is ----Primary key+ Attribute 16. Transmission is said to be ----committed 17. Windows 95 supports a) Multiuser b) n tasks c) Both Ans : c 18. Difference between printf and fprintf ---19.To change permission r&w to owner group to no permission to others a) Chmod 614 b) chmod 604 c) chmod 640 d) chmod 310 20. In batch process ------------better job

******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ***************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ********************************4*********************************************** **********************5********************************************************* *****************************5** *************************************************************7****************** *************************************************8****************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ***** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ************** ********************************************************************************

******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** *********************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** ******************************************************************************** *********** >>From [email protected] Wed Sep 3 08:59:58 1997 Received: from [144.16.224.3] by vanavil (AIX 3.2/UCB 5.64/4.03) id AA33370; Wed, 3 Sep 1997 08:59:58 GMT Received: from violet by brahma.iitm.ernet.in; (5.65/1.1.8.2/07Feb96-0917AM) id AA06799; Wed, 3 Sep 1997 09:01:59 +0530 Received: from [144.16.224.5] by violet.iitm.ernet.in (AIX 3.2/UCB 5.64/4.03) id AA06123; Wed, 3 Sep 1997 09:01:42 GMT Received: from milan.doe.ernet.in by spark; (4.1/1.1.8.2/13Aug95-0211PM) id AA26135; Tue, 2 Sep 97 21:31:52+060 Received: from henna.iitd.ernet.in ([202.141.64.30]) by milan.doe.ernet.in (4.1/ SMI-4.1) id AA05863; Sun, 31 Aug 97 22:57:38+050 Received: from chemical.iitd.ernet.in (netearth) by henna.iitd.ernet.in (4.1/SMI -4.1-MHS-7.0 ) id AA20218; Fri, 29 Aug 97 17:00:11 IST X-Organisation: Indian Institute of Technology, New Delhi. Return-Path: <[email protected]> Received: by chemical.iitd.ernet.in; id AA05623; Fri, 29 Aug 1997 17:09:15 +0530 Received: by chemical; Fri, 29 Aug 1997 17:09:15 +0530 id AA05623; Fri, 29 Aug 1997 17:09:15 +0530

Date: Fri, 29 Aug 1997 17:09:14 +0530 (IST) From: "Mr.MV. Surendra Reddy" <[email protected]> Sender: "Mr.MV. Surendra Reddy" <[email protected]> Reply-To: "Mr.MV. Surendra Reddy" <[email protected]> Subject: from ravi To: [email protected] Message-Id: <[email protected]> Mime-Version: 1.0 Content-Type: TEXT/PLAIN; CHARSET=US-ASCII Status: R dear srihari, i received your mail & that hot mail too. how you got that mail. earlier i sent a mail with full details of my interview.i think you did't receive that.ok .i got in satyam secunderabad.till now dbss have not come. it was a formal g.d followed by personel interview.in g.d the toppic was "internet effect on indian culture."the lucky thing for me was no good competitor in our batch. first he divided 50 people into 5 batches and for each batch he given seperate topic.those are 1.computers in communications...2.g.d is essential for mode of selection.etc they took 4fellows from each batch.then in my interview heasked the the first question was what is the differance between CAD/CAM.that question i expected i answered very confidently.then i told about CONCURRENT ENGG. &REENGINEERING. then they asked about personnel questions. do interested in further studies etc..again they asked that have you done any course in computers.actually i have't done any course. i told him that i operated some packages.that is about AUTO CAD & UNI GRAPHICS& PATTERN. on which platform you used auto cad. on ms-dos.then they asked what is icon.then about unigraphics i did a minor project on that. i told some more good on that.so that was my interview.is satyam sec bad is coming to your campus or only dbss.our joining date is on 1st januvary of 98.what about our potti usha. she got job in which company.convey my best wishes to vijay, srikanth,g.v.s.ok . waiting for your reply.

_ _ _ _ | | | | __ ___ _____ __ _ _ __ (_) ___ ___ __| | __ _ _ _ | |_| |/ _` \ \ / / _ \ / _` | | '_ \| |/ __/ _ \ / _` |/ _` | | | | | _ | (_| |\ V / __/ | (_| | | | | | | (_| __/ | (_| | (_| | |_| | |_| |_|\__,_| \_/ \___| \__,_| |_| |_|_|\___\___| \__,_|\__,_|\__, | |___/ ----------------------------------------------------------------------------YOURS

M.V. Surendra Reddy NC-5, Shivalik Hostel IIT Delhi, Hauz Khas New Delhi - 110 016

>>From [email protected] Tue Sep 30 18:34:09 1997 Received: from [144.16.224.5] by violet.iitm.ernet.in (AIX 3.2/UCB 5.64/4.03) id AA18759; Tue, 30 Sep 1997 18:34:08 GMT Received: from cello.cs.iitm.ernet.in by spark; (4.1/1.1.8.2/13Aug95-0211PM) id AA09457; Tue, 30 Sep 97 18:35:27+060 Received: from ren.ren.nic.in (ren.nic.in [164.100.10.18]) by cello.cs.iitm.erne t.in (8.7.5/8.6.9) with SMTP id SAA16642 for <[email protected]>; Tue, 3 0 Sep 1997 18:31:49 +0530 Received: by ren.ren.nic.in (SMI-8.6/SMI-SVR4) id SAA06203; Tue, 30 Sep 1997 18:27:12 +0530 >Received: (from u9626305@localhost) by iitkgp.ren.nic.in (8.6.11/8.6.9) id OAA0 7313; Tue, 30 Sep 1997 14:41:23 +0500 Date: Tue, 30 Sep 1997 14:41:22 +0500 (GMT+0500) From: B V L N Murthy <[email protected]> To: [email protected] Cc: [email protected] In-Reply-To: <[email protected]> Message-Id: <[email protected]> Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Status: RO > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >

SIEMENS INFO THIS PAPER CONSISTS 6 PARTS. all are multiple choice q's 1)general 2)c/unix 3)c++/motif 4)database 5)x-windows 6)ms-windows we have written q's not acc. to each part.total 50. q's. time is sufficient. if u have basic idea about all of the u can easily answer the paper. paper -----1)which of following operator can't be overloaded. a)== b)++ c)?! d)<= 2)#include<iostream.h> main() { printf("Hello World"); } the program prints Hello World without changing main() the o/p should be intialisation Hello World Desruct the changes should be a)iostream operator<<(iostream os, char*s) os<<'intialisation'<<(Hello World)<<Destruct b) c) d)none of the above 3)CDPATH shell variable is in(c-shell) a) b) c) d) 4) term stickily bit is related to a)kernel b)undeletable file c) d)none 5)semaphore variable is different from ordinary variable by

> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >

6)swap(int x,y) { int temp; temp=x; x=y; y=temp; } main() { int x=2;y=3; swap(x,y); } after calling swap ,what are yhe values x&y? 7) static variable will be visible in a)fn. in which they are defined b)module " " " " c)all the program d)none 8)unix system is a)multi processing b)multi processing ,multiuser c)multi processing ,multiuser,multitasking d)multiuser,multitasking 9)x.25 protocol encapsulates the follwing layers a)network b)datalink c)physical d)all of the above e)none of the above 10)TCP/IP can work on a)ethernet b)tokenring c)a&b d)none 11)a node has the ip address 138.50.10.7 and 138.50.10.9.But it is transmitting data from node1 to node2only. The reason may be a)a node cannot have more than one address b)class A should have second octet different c)classB " " " " " d)a,b,c 12) the OSI layer from bottom to top 13)for an application which exceeds 64k the memory model should be a)medium b)huge c)large d)none 14)the condition required for dead lock in unix sustem is 15)set-user-id is related to (in unix) 16) bourne shell has a)history record b) c) d) 17)wrong statement about c++ a)code removably b)encapsulation of data and code c)program easy maintenance d)program runs faster 18)struct base {int a,b; base();

> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >

int virtual function1(); } struct derv1:base{ int b,c,d; derv1() int virtual function1(); } struct derv2 : base {int a,e; } base::base() { a=2;b=3; } derv1::derv1(){ b=5; c=10;d=11;} base::function1() {return(100); } derv1::function1() { return(200); } main() base ba; derv1 d1,d2; printf("%d %d",d1.a,d1.b) o/p is a)a=2;b=3; b)a=3; b=2; c)a=5; b=10; d)none 19) for the above program answer the following q's main() base da; derv1 d1; derv2 d2; printf("%d %d %d",da.function1(),d1.function1(),d2.function1()); o/p is a)100,200,200; b)200,100,200; c)200,200,100; d)none 20)struct { int x; int y; }abc; you can not access x by the following 1)abc-->x; 2)abc[0]-->x; abc.x; (abc)-->x; a)1,2,3 b)2&3 c)1&2 d)1,3,4 21) automatic variables are destroyed after fn. ends because a)stored in swap b)stored in stack and poped out after fn. returns

> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >

c)stored in data area d)stored in disk 22) relation between x-application and x-server (x-win) 23)UIL(user interface language) (x-win) 24)which is right in ms-windows a)application has single qvalue system has multiple qvalue b) " multiple " " single " c)" " " multiple " d)none 25)widget in x-windows is 26)gadget in x_windows is 27)variable DESTDIR in make program is accessed as a)$(DESTDIR) b)${DESTDIR} c)DESTDIR d)DESTDIR 28)the keystroke mouse entrie are interpreted in ms windows as a)interrupt b)message c)event d)none of the above 29)link between program and out side world (ms -win) a)device driver and hardware disk b)application and device driver c)application and hardware device d)none 30)ms -windows is a)multitasking b) c) d) 31)dynimic scoping is 32) after logout the process still runs in the background by giving the command a)nohop b) 33)process dies out but still waita a)exit b)wakeup c)zombie d)steep 34)in dynamic memory allocation we use a)doubly linked list b)circularly linked c)B trees d)L trees e)none 35)to find the key of search the data structure is a)hask key b)trees c)linked lists d)records 36)data base --------------------------------------------------------employ_code salary employ_code leave -----------------------------------------------------------from to -------------------------------------1236 1500 1238 -----

> > > > > > > > > > > > > > > > > > > > > > > >

1237 1238 -----

2000 2500

1238 1237

-----

---

-------------------------select employ_code,employ_data ,leave the number of rows in the o/p a)18 b)6 c)7 d)3 37)DBMS 38)read about SQL,db 39)which is true a)bridge connects dissimiler LANand protocol insensitive b)router " " " " " c)gateway " " " " " d)none of the above 40)read types of tree traversals. 41)42)43) simple programs on pointers in c

1237 ----1237 ----1237 ------------------------------------------

-----------------------------------------------------b V L N Murthy M.Tech. Dept. Of Mechanical Engg. Room# D/221 Azad Hall IIT, Kharagpur 721 302 India ------------------------------------------------------

Date: 28th Aug 97 Dear Sekar, TCS complete peper ( except psychometry ) I am sendig to you with solutions. Psychomery is very very easy. But you should answer all quetions. Ok! Please give me reply immediatly. PAPER-97 ___________________

-------------------------------------------------------------------------------CALICUT TCS paper --1997 --------------------------------------------------------------------------------

SECTION 1 INTURN CONSISTS OF THREE PARTS. PART 1 VERBAL--IT CONSISTS OF 40 WORDS WHICH HAS 5 MULTIPLE ANSWERS FOR THEM.THE MAIN WORDS WHICH I REMEMBER ARE AS FOLLOWS FOR WHICH YOU SHOULD LEARN THE SYNONYMS OF THESE--merry= gay alienate= estrange solicit= beechat heap= to pile cargo= freight momentary= transient volume= quantity veer= diverge dispel= dissipate admonish= cautious meager= scanty latitude= scope latent= potential covet= crave discretion= prudence latent= potential emanicipate= liberate lethargy= stupor concur= acquiesce confiscate= appropriate baffle= frustrate subside= wane misery= distress pretentious= ostentatious tranquil= serene efface= obliterate obstinate= stubborn hover= linger caprice= whim belate= too late renounce= reject brim= border divulge= reveal lament= wail bileaf= conviction adhesive= tenacious furtive= stealthy hamper= obstruct to merit= to deserve SECTION 1 PART B 20MIN 30 marks 15 QUANTITATIVE. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ THESE ARE SOME PROBLEMS : 1.) two pencils cost 8 cents. then 5 pencils cost? (20 cents) 2. A work is done by the people in 24 minutes. One of them can do this workalonely in 40 minutes. How much time to do the same work

for the second person? (60 minutes) 3. A car is filled with four and half gallons of fuel for a round trip. Fuel is taken 1/4 more in going then coming. What is the fuel consumed in coming up? (2 gallons) 4.Low temperature at the night in a city is 1/3 more than 1/2 high as higher temperature in a day. Sum of the low tem. and highest temp. is 100 degrees. Then what is the low temp? (40 deg.) 5. A person, who decided to go to weekened trip should not exceed 8 hours driving in a day. Average speed of forward journey is 40 m/h. Due to traffic in sundays, the return journey average speed is 30 m/h. How far he can select a picnic spot? a) 120 miles b) between 120 and 140 miles c) 160 miles ans: 120 miles 6. A salesperson multiplied a number and get the answer 3, instead of that number devided by 3. what is the answer he actually has to get? 1 x 3 = 3 so number = 1 devided by 3, the ans. is 1/3. 7. A ship started from port and moving with I miles per hour and another ship started from L and moving with H miles per hour. At which place these two ships meet? |----|----|----|----|----|----| port G H I J K L 8. A building with height D shadow upto G. A neighbour building with what height shadows C feet. |----|----|----|----|----|----|----| A B C D E F G H 9. A person was fined for exceeding the speed limit by 10 mph. Another person was also fined for exceeding the same speed limit by twice the same. If the second person was travelling at a speed of 35 mph, find the speed limit. (15 mph) 10.A bus started from bustand at 8.00am, and after 30 minutes staying at destination, it returned back to the busstand. The destination is 27 miles from the busstand. The speed of the bus is 18mph. In return journey bus travels with 50% fast speed. At what time it returns to the busstand? (11.00am). 11.In a mixture, R is 2 parts, S is 1 part. In aoder to make S to 25% of the mixture, howmuch r is to be added? 12. wind flows 160 miles in 330 min, for 80 miles how much time required. 13. with 4/5 full tank vehicle travels 12 miles, with 1/3 full tank how much distance travels ( 5 miles ) 14. two trees are there. one grows at 3/5 of the other in 4 years,

total growth of trees is 8 ft. what growth will smaller tree will have in 2 years ( < 2 ft. ) 15. A storm will move with a velocity of towards the centre in At the same rate how much far will it move in hrs. ( but the answer is 8/3 or 2 2/3 ) SECTION-1 PART-3 marks-50 questions-50 30 min hours,

CRITICAL REASONING

1. My father has no brothers. he has three sisters who has two childs each. My grandfather has sons. a) b) c) d) e) my grandfather has two sons three of my aunts have two sons my father is only child to his father i have six cousins from jmy mother side i have one uncle

2. Ether injected into gallablader to dissolve galstones. this type oneday treatment is enough for gallastones not for calcium stones. this method is alternative to surgery for millions of people who are suffering from this disease. a) calcium stones can be cured in oneday b) hundreds of people contains calcium stones c) surgery is the only treatment to calcium stones 3. Hacking is illegal entry into other computer. this is done mostly because of lack of knowledge of computer networking with networks one machine can access to another machine. hacking go about without knowing that each network is accredited to use network facility. a) Hacking people never break the code of the company which they work for b) Hacking is the only vulnerability of the computers for the usage of the data. c) Hacking is done mostly due to the lack of computer knowledge. (there will be some more questions in this one) 4. Alphine tunnels are closed tunnels. in the past 30 years not even a single accident has been recorded for there is one accident in the rail road system. even in case of a fire accident it is possible to shift the passengers into adjacent wagons and even the living fire can be detected and extinguished with in the duration of 30 min. a) no accident can occur in the closed tunnels b) fire is allowed to live for 30 min. c) all the care that travel in the tunnels will be carried by rail shutters. d) 5. In the past helicopters are forced to ground or crash because of the formation of the ice on the rotors and engines. a new electronic device has been developed which can detect the watercontent in the atmosphere and warns the pilot if the temp. is below freezing temp. about the formation of the ice on the rotors and wings.

a) the electronic device can avoid formation of the ice on the wings b) there will be the malfunction of rotor & engine because of formation of ice c) the helicopters are to be crashed or down d) there is only one device that warn about the formation of ice. 6. In the survey conducted in mumbai out of 63 newly married house wives not a single house wife felt that the husbands should take equal part in the household work as they felt they loose their power over their husbands. inspite of their careers they opt to do the kitchen work themselves after coming back to home. the wives get half as much leisure time as the husbands get at the week ends. a) housewives want the husbands to take part equally in the household b) wives have half as much leisure time as the husbands have c) 39% of the men will work equally in the house in cleaning and washing d) 7. In confucius days the technology development was less and it took weeks to communicate a message. wherein we can send it through satellite with in no time........ even with this fast developments it has become difficult to understand each other. a) people were not intelligent during confucius days b) transport facilities are very much improved in now-a-days c) even with the fast developments of the technology we cannot live happily. d) we can understand the people very much with the development of communication. 8. Senior manager in a big company said that new japanies company invades in India for transfering the cars from industrial and warned that jobs were under threat from japanies company. They stated that increasing competence would be coupled with an inevitable down term in car market and recent rise in interest rate which has already hit demand. a) manager issue their warning after a rise in interest rate b) manager told workers that japanies workers are taking jobs away from indian workers c) manager said that more people want to buy new cars in future d) increasing rate of interest mean that japanies firm will create into operate in the country 9. Human existence is suspecious of arbitrary divide between concise and unconcise. The concise world invades shape activity of the unconcise, while many of great activity of humanity waking as whole or partially improved by dreams. Even it could be ignored that dreams precede exceptional such a dichotomy could not be drawn as the influence of dream on waking state would reamin unclear. But as yet no company rebuilt exists to record the substitute of prendtl dreaming. a) sleepy can be creative state b) it is difficult to tell whether a sleeper is dream or not c) if we know what babies would dream about before they are born we could show that the concise and unconcise mind influence on one another d) it is untrue claim that concise and unconcise world never impinge one another

10. Any one who has has systematic exam phases will have perceived a profound although not a prolif of asymmetry whether or not the exception is volitions and self control of spontoneous appeal to predict facial as symmetry as does the type of emotion potrayed. position can not displace symmetric at left side regret of a negative emotion is more common posed expression negation emotions are likely to be symmetric representation and where as symmetric occurs relative left sided expression is more common. a) any angry person is more likely to have left sided expression than some one who has smiling b) an actor is likely to smile symmetric when acting c) delecious facial expression will always be as symmetrical 11. In the totalitariturian days, the words have very much devalued. In the present day, they are becoming domestic that is the words will be much more devalued. In that days, the words will be very much effected in political area. but at present, the words came very cheap, we can say they come free at cost. a) totalitarian society words are devalued b) totalitarian will have to come much about words c) the art totalitarian society the words are used for the political speeches d) 12. There should be copyright for all arts. the rule has come that all the arts has come under one copy right society, they were use the money that come from the arts for the developments. There may be a lot of money will come from the Tagore works. we have to ask the benifiters from Tagore work to help for the development of his works. a) b) c) d) Tagore works are come under this copy right rule people gives to theater and collect the money for development people are free to go to the because of the copy right rule we have ask the Tagore residents to help for the developments of art. If any doughts please use talk command. SEEU. TCS ----------------------------------------------Source : University of Roorkee Dated : 31/07/97 1. 2. 3. 4. VOCABULARY.(SYNONYMS) QUANTITATIVE APTITUDE CRITICAL REASIONING.(COMPREHENSION) PSYHOMETRIC TEST. 40 BITS. 15 BITS 50 BITS 150 BITS 20 MARKS. 30 MARKS 50 MARKS 150 MARKS -------250 MARKS -------20MIN. 15 MIN. 25 MIN. 30 MIN -----90 MIN -------

THE PSYCHOMETRIC TEST IS SIMPLE AND THERE IS NO NEED OF OF PREPARATION. IT SIMPLY TEST YOUR PSYCHOLOGY. GIVE MOST POSITIVE ANSWERS TO THIS SECTION. I AM SENDING SOME QUESTIONS TO YOU. THE VOCAB. IS SAME. BUT THERE IS SOME CHANGES IN PASSAGES.BUT THE IDEA IS SAME.

TAKE FOLLOWING PRECAUTIONS WHILE ANSWERING TEST. ------------------------------------------------------------1. DON'T WRITE FULL ANSWERS TO VOCAB. SECTION. DO ONLY 36 to 37 QWUE's.BECAUSE THEY DISQUALIFIED SOME CANDIDATES HERE. 2. WE ARE SENDING ANSWERS TO THIS SECTION. SO YOU SIMPLY MUG UP ANSWERS. 3. FOR CRITICAL REASONING SECTION WE ARE SENDING ANSWERS.BUT SOME OF THESE ANSWERS MAY CHANGE. SO YOU PLEASE CHECK IN EXAMINATION. THE ANSWERS IS SIMPLY (TRUE) OR (FALSE) OR (CAN'T SAY) TYPE. FOR THIS SECTION YOU HAVE READ AS FAST AS YOU CAN. IT SIMPLY TEST YOUR COMPREHENSION ABILITY. 4. EVENTHOUGH WE ARE SENDING ANSWERS TO MATHEMATICAL ABILITY. SECTION. YOU DO " ROUGH " WORK BACK OF YOUR PAGE. IT IS ALSO ONE OF IMPORTNANT CAUTION. 5. IN PSYCHOLOGY SECTION THE QWE'S MAY REPEATE AT LEAST FOUR TIMES. BY SIMPLY CHANGING SENTENCE FORMATION. SO BECAREFUL GIVE SAME ANSWERS TO THOSE QWE'S.

THERE WILL BE NO NEGATIVE MARKING. TIME 90 Min., APPEARED FOR EXAM =255 STUDENTS SELECTED FOR INTERVIEW =122, FINALLY SHORT LISTED = 55 STUDENTS. SECTION I VOCABULARY (SYNONYMS) TIME :15 Min. MARKS: 20. DIRECT ANSWERS : ----------------------------------------------------------------Admonish : usurp Meager :scanty Alienate : estrange Merry : gay Brim : Boarder obstinate : stubborn Pretention:pretentioius Tranquil:serene solicit : urge subside : wane furtive :stealthy misery : disstress volume :quantity veer : diverge stiffle :sniths adhesive : --Hamper : obstruct belief : conviction lament : wail to merit :to deserve incentive : ---inert: passive Baffle : Frustrate Confiscate : appropriat Covet : crave Caprice : whim Concur :acquiesce Cargo :freight Dispel : Scatter Divulge : ----Discretion: prudence Emancipate : liberate Efface : obliterate Hover : linger Heap : to pile Instigate : incite latitude : scope latent : potential lethergy : stupor momentary : transient ----- means , for these words we are not able to reproduce answers. PART II QUANTITATIVE APTITUDE ,TIME 20 Min. MARKS :30. ----------------------------------------------------------------1. Two pencils costs 8 cents, then 5 pencils cost how much (Ans:20 cents). 2. A work is done by the people in 24 min. one of them can do this work a lonely in 40 min. how much time required to do the same work for the second person. (ans:60 min.) 3. A car is filled with four and half gallons of oil for full round trip. fuel is taken 1/4 gallons mor3 in going than coming. what is the fiel consumed in coming up? (2 gallons)

4. low temperature at the night in a city is 1/3 more than 1/2 hinge as higher temperature in a day. sum of the low temp and higherst temp is 100C. then what is the low temperature (40 C) 5. A person who decided to go weekend trip should not exceed 8 hours driving in a day Average speed of forward journy is 40 mph. due to traffic in sundays, the return journey average speed is 30 mph. how far he can select a picnic spot (120 miles). 6. A sales person multiplied a number and get the answer is 3, instead of that number divided by 3. what is th answer he actually has to get ? (1/3). 7. A ship started from port and moving with I mph and another ship started from L and moving with H mph. At which place these two ships meet ? ( Ans is between I and J and close to J) !_____!_____!_____!_____!_____!_____! port G H I J K L 8. A building with hight D ft shadow upto G A neighbour building with what height shadow C ft is (B ft.) !_____!_____!_____!_____!_____!_____!_____! A B C D E F G H 9. A person was fined for exceeding the speed limit by 10 mph.Another person was also fined for exceeding the same speed limit by twice the same. If the second person was travelling at a speed of 35 mph. find the speed limit (15 mph) 10. A bus started from bustand at 8.00a m and after 30 min staying at destination, it returned back to the bustand. the destination is 27 miles from the bustand. the speed of the bus 50 percent fast speed. at what time it retur4ns to the bustand (11.00) 11.in a mixture, R is 2 parts, S is 1 part. in order to make S to 25% of the mixture, howmuch R is to be added ( one part). 12. wind flows 160 miles in 330 min, for 80 miles how much time required. 13. with 4/5 full tank vehicle travels 12 miles, with 1/3 full tank how much distance travels ( 5 miles). 14. two trees are there. one grows at 3/5 of the other. in 4 years, total growth of trees is 8 ft. what growth will smaller tree will have in 2 years. (<2ft) 15. A storm will move with a velocity of towords the center in hours. At the same rate how much far will it move in hrs. (but Ans is 8/3 or 2 2/3). PART III: TIME 25 Min, MARKS :50. ----------------------------------------------CRITICAL REASONING : THERE WILL BE 13 PASSAGES WITH 50 QUESTIONS TIME 30 MIN. HERE I AM SENDING ONLY SOME OF THE PASSAGES (these will give only rough idea) (ANSWERS WILL BE AS YES/NO/CAN'T SAY we are giving our answers, please check.) 1. My father has no brothers. he has three sisters who has two childs each. 1> my grandfather has two sons (f) 2> three of my aunts have two sons(can't say)

3> my father is only child to his father(f) 4> i have six cousins from my mother side(f) 5> i have one uncle(f) 2. Ether injected into gallablader to dissolve galstones. this type oneday treatment is enough for gallstones not for calcium stones. this method is alternative to surgery for millions of people who are suffering from this disease. 1> calcium stones can be cured in oneday (f) 2> hundreds of people contains calcium stones(can't say) 3> surgery is the only treatment to calcium stones(t) 4> Eather will be injected into the gallbleder to cure the cholestrol based gall stones(t). 3. Hacking is illigal entry into other computer. this is done mostly because of lack of knowledge of computer networking with networks one machine can access to another machine. hacking go about without knowing that each network is accredited to use network facility. 1> Hacking people never break the code of the company which they work for (can't say). 2> Hacking is the only vulnerability of the computers for the usage of the data.(f) 3> Hacking is done mostly due to the lack of computer knowledge (f). (there will be some more questions in this one ) 4. alphine tunnels are closed tunnels. in the past 30 yrs not even a single accident has been recorded for there is one accident in the rail road system. even in case of a fire accident it is possible to shift the passengers into adjacent wagons and even the living fire can be detected and extinguished with in the duration of 30 min. 1> no accident can occur in the closed tunnels (True) 2> fire is allowed to live for 30 min. (False) 3> All the care that travel in the tunnels will be carried by rail shutters.(t) 4> 5. In the past helicopters are forced to ground or crash because of the formation of the ice on the rotors and engines. a new electronic device has been developed which can detect the watercontent in the atmosphere and warns the pilot if the temp.is below freezing temp. about the formation of the ice on the rotors and wings. 1> the electronic device can avoid formation of the ice on the wings (Fa lse). 2> There will be the malfunction of rotor & engine because of formation of ice (t) 3> The helicopters are to be crashed or down (t) 4> There is only one device that warn about the formation of ice(t). 6.In the survey conducted in mumbai out of 63 newly married house wives not a si ngle house wife felt that the husbands should take equal part in the household work as they felt they loose their power over their husbands. inspite of their careers they opt to do the kitchen work themselves after coming back to home. the wives get half as much leisure time as the husbands get at the week ends. 1> housewives want the husbands to take part equally in the household(f) 2> wives have half as much leisure time as the husbands have(f) 3> 39% of the men will work equally in the house in cleaning and washing 3> 7. copernicus is the intelligent. In the days of copernicus the transport and te

chnology development was less & it took place weeks to comunicate a message at that time.wherein we can send it through satellite with in no time ----------. even with this fast developments it has become difficult to understand each othe r. 1> people were not intelligent during Copernicus days (f). 2> Transport facilities are very much improved in noe a days (can' say) 3> Even with the fast developments of the techonology we can't live happ ily.(can't say) 4> We can understand the people very much with the development of commun ication(f). Q8) senior managers warned the workers that because of the intfoductors of japanese industry in the car market. There is the threat to the workers. They also said that there will be the reduction in the purchase of the sal es of car in public.the interest rates of the car will be increased with the los s in demand. 1> japanese workers are taking over the jobs of indian industry.(false) 2> managers said car interests will go down after seeing the raise in intere st rates.(true) 3> japanese investments are ceasing to end in the car industry.(false) 4> people are very much interested to buy the cars.(false) Q9) In the totalitariturican days,the words have very much devalued.In the present day,they are becoming domestic that is the words will be much mo re devalued. In that days, the words will be very much effected in political area.but at present,the words came very cheap .we can say they come free at cost. 1> totalitarian society words are devalued.(false) 2> totalitarian will have to come much about words(t) 3> The art totalitatian society the words are used for the political speech es. 4> Q10) There should be copyright for all arts. The reele has came that all t he arts has come under one copy right society,they were use the money that co me from the arts for the developments . There may be a lot of money will come from the Tagore works. We have to ask the benifiters from Tagore work to help f or the development of his works. 1> Tagore works are came under this copy right rule.(f) 2> People are free to go to the because of the copy right rule.(can't say) 3> People gives to theater and collect the money for development.(can't say ) 4> We have ask the Tagore resedents to help for the developments of art.(c an't say) NOTE : DO 1,2,3,4,5 PASSAGES WHICH ARE EASY. LAST BUT ONE ALSO. DO THAT PASSAGES CAREFULLY. TIME WILL BE INSUFFICIENT. PASSAGES ARE NOT AS EXACTLY AS ABOVE. THERE IS HIGHLEVEL ENGLISH IN ALL THE PASSAGES, WE ARE GIVING IN OUR OWN WORDS , U CANNOT EXPECT THE SAME TYPE OF ENGLISH THERE. WHILE ANSWERING U SHOULD BE VERY FAST, DO NOT WASTE TIME, IT IS INSUFFICIENT,TRY TO AN SWER AS MANY AS POSSIBLE. SECTION 4. PSYCHOMETRIC TEST.

---------------------------------------DO NOT BOTHERE ABOUT MUCH ABOUT THIS TEST. BE OPTIMISTIC WHILE ANSWERE. THERE WILL BE 150 QUESTIONS IN 30 MIN. THE QUESTIONS IN THIS SECTION MAY REPEATED WITH SLIGHT VARIATIONS ANSWER SHOULD BE SAME IN BOTH THE CASES. (ans will be as yes/no/can't say) for example 1> you will be interested in social activities. 2> while going upstairs you will move two steps at a time. 3> you will be making friendship with same sex or with opposite sex also. 4> your friends will consider u as a leader in your group 5> people think that your'e serious minded. 6> some times you feel dull without any reason. 7> your'e host or hostes for several parties. 8> relatives come to your house you will entertain them. 9> you will do work for longtime without tireness. 10> in your company you want lead the organasition. etc.. the qwestions may repeate several times so becareful and give same ans's. *************** ALL THE BEST ********************** ================================================================================

******************************************************************************* -. ._..-'( )`-.._ ./'. '||\\. (\_/) .//||` .`\. ./'.|'.'||||\\|.. (o o) ..|//||||`.`|.`\. ./'..|'.|| |||||\`````` '`"'` ''''''/||||| ||.`|..`\. ./'.||'.|||| || B.V.V.S.N.MURTHY ||||||.`||.`\. /'|||' Email- [email protected] |||`\ '.|||'.||||||| |||| ||||||||||||.`|||.` '.||| ||||||||| |/' ``\||`` ''||/'' `\| ||||||||| |||.` |/' \./' `\./ \!|\ /|!/ \./' `\./ `\| V V V }' `\ /' `{ V V V ` ` ` V ' ' ' B.V.V.S.N.MURTHY(M.Tech) P.G HOSTEL #320 REC.CALICUT KERALA-673601 ***************************************************************************

>>From [email protected] Thu Sep 4 14:39:52 1997 Dear Srihari, Telco was over here.gd and Interview will be tomorrow. For S/W persons test is as follows. There are two sections each containg 40 questions.One arthematic and another is reasoning. In arthematic 11 are data sufficiency and 8 are anology.In reasoning all are puzzle type. Probably he rejects very few from test , since after that GD follows. Any I am sending some q's as for

as my rememberance. Arthematic 1) Hypothesis :problem (below 4 he will give) 2) Mirror:Image 3)money:Misapprobation 4)nackles:Adoration 5)construction:building 6)file:pile 7)ours:we 8)1/3,1 1/3,3,5 1/3, next 9)Selling price of 4 articles=Cost price of 3 articles then %loss(ans. 25%) 10)|x-3|=3-x then x= 11)data sufficiency p>q? 1)p,q positive 2)q-1=q*2+p This type you can see in GMAT book. Reasoning 1) ABCDEF attended for an interview, in which 3 were selected A is worst of the lot C got equal marks as F(C=F) D<F and G E is not selected B>C There are 5 questions below this. 2)There are 7 fellows sat in the following way C and F always sit as a apart as follows No. of fellows sat b/w c and D and D and F are equal like that he has given Ans: Order is as follows C E B D A G F by using this you can answer all About 4 to 5 are there 3)ABCDE are five brothers. There are twins(only one pair of equal age) both are neither younger nor older. D is younger to 3 brothers. B is older than E and C. q's like who is youngest? Eldest ? About 4 are there. 4)A person has meet a king for that ha has to cross 7 gates. At each gate he has to pay half the amount he is carrying. Finally he gave Rs 3/- to the king. Then the amount he carried at the beginning and some questions (about 5)like that. 5) Heros tell truth and cowards lie.There PQR three persons. P tells Q "I may be hero or I may be coward". Q tells R "P was telling that he was coward. Then R tells Q "P was not a coward but he was a hero". You better study the question it may not be entirely correct. In thus 3 q"s are there If want to go for hardcore there wont"be any test direct GD and interview Best of luck Sekhar

TISL -----------> PAPER MODEL Two parts. Part A: aptitude (100 Que) 100 marks 1 to 40 leter series 41 to 65 problems 66 to 100 figures (very very easy) Part B: comp knowledge test 50 QUE 50 marks IN this mail I am sending Part A 1to 40 Que in order and Part B 9to36 in order

+ten more Que not in order I WILL MAIL REMAINING QUESTIONS IN PART A TOMORROW. Sorry to day I am suffering with fever. OOOOOKKKKKKKKK! TISL(TATA-IBM)PAPER ------------------Q9). what will be the result of executing following program main { char *x="new"; char *y="dictonary"; char *t; void swap (char * , char *); swap (x,y); printf("(%s, %s)",x,y); char *t; t=x; x=y; y=t; printf("-(%s, %s)",x,y); } void swap (char *x,char *y) { char *t; y=x; x=y; y=t; } a).(New,Dictionary)-(New,Dictionary) b).(Dictionary,New)-(New,Dictionary) c).(New,Dictionary)-(Dictionary,New) d).(Dictionary,New)-(Dictionary,New) e).None of the above (Ans will be b or e) check Q10).If a directory contains public files (can be valied and used by any one ) which should not be altered ,the most liberal permissions that can be given to the directory is a)755 b)777 c)757 d)775 e)None of the above (Ans a) 11) what would the following program results in main() { char p[]="string"; char t; int i,j; for(i=0,j=strlen(p);i<j;i++) { t=p[i]; p[i]=p[j-i]; p[j-i]=t; } printf("%s",p);

} a)will print:string b)will not print anything since p will be pointing to a null string c)will print:gnirtS d)will result in a complication error e)will print invallid characters(junk) (Ans will be b ) check 12) After the following command is executed $ ln old new a listing is performed with the following output $ ls -li total 3 15768 -rw-rw-rw- 2 you 29 Sep 27 12:07 old 15768 " " " " " " " " new 15274 " " 1 " 40 " " 09:34 veryold which of the following is true a)old and new have same i-node number,2 b) " " " " " " " , 15768 c)old and new have nothing yo do with each other d)very old and new are linked e)very old and old are linked (Ans is b) 13) What will be the result of executing the following statement int i=10; printf("%d %d %d",i,++i,i++); a).10 11 12 b).12 11 10 c).10 11 11 d).result is OS dependent e).result is compiler dependent (Ans is e) 14) What does extern means in a function declaration a)the funct has global scope b)the funct need not be defined\ c)nothing really d)the funct has local scope only to the file it is defined in e)none of the above (Ans will be c) 15) What will be result of the following program main() { void f(int,int); int i=10; f(i,i++); } void f(int i,int j) { if(i>50) return; i+=j; f(i,j); printf("%d,",i); } a).85,53,32,21 b)10,11,21,32,53 c)21,32,53,85 d)32,21,11,10 e)none of the above

(Ans is e) 16). MS windows 3.1 is a a)operating system b)Application c)Programing language d)database e)shell (Ans will be b) 17).MS Windows 3.1 supports which tyoe of multi-tasking? a)cycle b)executive c)preemptive d)Non-preemptive e)Manual (Ans ) 18)The command ......ln/bin/mail /usr/you/bin/m a)will not be executed because you are linking files across different file systems b)results ln /bin/main being the same file as /usr/you/bin/m c)results in 2 links to the file mail d) " " " " m e)none (Ans will be b) 19)In a standerd directory lay out ,/etc is the directory where a) basic programs such as who and ed reside b) - - - - - - c)various administrative files such as password file reside d) - - - - - - e) - - - - - (Ans is c) 20) The command echo * a) echoes all files in the current directory b) - - - - c) d) e) (Ans is a) 21)What will be the result of the following segment of the program main() { char *s="hello world"; int i=7; printf("%.*%s",s); } a)syntax error b)hello w c) d) e) (Ans is b) 22) What will be the result of the following program main() { int a,b; printf("enter two numbers :"); scanf("%d%d",a,b); printf("%d+%d=%d",a,b,a+b); } a)- - - - b) - --

c) will generate run time error /core dump d) e) (Ans is c) 23) What is the size of 'q'in the following program? union{ int x; char y; struct { char x; char y; int xy;}p; }q; a)11 b)6 c)4 d)5 e)none (Ans is b why because no of bytes for int =4 given in instructions) 24) Which message is displayed when a window is destroyed a)WM_CLOSE b)WM_DESTROY c)WM_NCDESTROY d) E) (Ans is b) 25)Send Message and postmessage are a)send message puts the message in the message queue and results, postmessage processes the message immediately b)Sendmessage processes the message immediately,postmessage puts the message in the queue and returns c) Both put the message in the message queue and returns d) Both process the message immediately e) None of the above (Ans will be b check) 26) Which of the following message is used to limit the size of teh Window a)WM_SIZE b)WM_PAIN c)- - - d)- -- - (Ans is a) 27)until who|grep mary do sleep 60 done a) is syntactically incorrect b) waits 60 seconds irrespective of Mary being logged in or not c) waits until Marry is logged in d)waits till Mary exited e)None (Ans is c) 28)The UNIX system call that transforms an executable binary file into a process is a)execl() b)execv() c)execle() d)execve() e)All of the above (Ans will be d check)

29)Which of the following is true about fork() a)- - - - b)causes the creation of a new process ,the CHILD process with a new process ID c) d) e) (Ans is b) 30) What do the following variable names represents? sort register volatile default a)- - - b ) - - - c)all the above are keywords (Ans is c) 31)What will be the result of the following program main() { char *x="String"; char y[] = "add"; char *z; z=(char *) malloc(sizeof(x)+sizeof(y)=1); strcpy(z,y); strcat(z,y); printf("%s+%s=%s",y,x,z); } a)Add+string=Add string b)syntax error during compilation c)run time error/core dump d)add+string= e)none (Ans will be e consider cap&small leters) 32)What does the following expression means a) b) c) d)an arrey of n pointers to function returning pointers to functions returning pointers to characters (ANS IS d) 33)Which of the following is not a DDL object a)HBRUSH b)HPEN c)HBITMAP d)HRGN e)HWND (Ans ic e) 34) Which of the following message is used to initialize the contents of a dialog a)WM_CREATE b)WM_SIZE c)WM_COMMAND d)WM_INITDIALOG e)none (Ans will be d) 35)Interprocess communication in UNIX can be achieved using a)pipe b)Message c)Semaphores d)Shared Memory e)All of the above

(Ans is e) 36) Which of the following is true a)UNIX is a time sharing multi-user OS b)UNIX has a device independent file system c)UNIX is full duplex d)UNIX has command interpreter e)All of the above (Ans is e) Q). PS1 pwd export PS1 results in a). your primary prompt being your current directory b). " " and secondary prompts being the current dir c). " " prompt being your home dir d). " " and secondary prompts being the home dir e). None of the above. Q). If you type in the command nohup sort employees > list 2 > error out & and log off ,the next time you log in . the output will be a). in a file called list and the error will de typed in a file error out b). there will be no file called list or error out c). error will be logged in a file called list and o/p will be in error out d). you will not be allowed to log in e). none of the above Q). In UNIX a files i-node a)is a data structure that defines all specifications of a file like the file size ,number of lines to a file ,permissions etc. b).---c). - - - -d). _ _ _ ( ans is ---------(a) ) Q). The UNIX shell is.... a).does not come with the rest of the system b).forms the interface between the user and the kernal c)-- -- --d) - - - e) none (ans is (b) ) Q).enum number { a=-1, b= 4,c,d,e} what is the value of e ? 7,4,5,15,3 (ans is 7 ) check again Q).The very first process created by the kernal that runs till the kernal process is haltes is a)init b)getty c) d) e)none (Ans is a) Q) Result of the following program is main() { int i=0; for(i=0;i<20;i++) {

switch(i) case 0:i+=5; case 1:i+=2; case 5:i+=5; default i+=4; break;} printf("%d,",i); } } a)0,5,9,13,17 b)5,9,13,17 c)12,17,22 d)16,21 e)syntax error (Ans is d ) Q) What is the result main() { char c=-64; int i=-32 unsigned int u =-16; if(c>i){ printf("pass1,"); if(c<u) printf("pass2"); else printf("Fail2");} else printf("Fail1); if(i<u) printf("pass2"); else printf("Fail2") } a)Pass1,Pass2 b)Pass1,Fail2 c)Fail1,Pass2 d)Fail1,Fail2 e)none (Ans is c)

APTITUDE TEST ***************************************************** Missing leter 1).eefgghii- (Ans 2) 3)defdefghi- (Ans 4)cdexyzfghxyz-(Ans 5)defdegde(h) 6)abczabcyabc- (x) 7)fgbhibjkb- (l) 8)- - - - (Ans 9)aarbsctarb- (s) 10)bccdeefg- (g) 11)efhikl(n) 12)abccdeffg- (h) 13amnbopc(q) j) g) i)

is r)

14)tttssrqqqp- (p) 15)ddffhhjj- (l) 16)mnmnklopopkl- (q) 17)cddeeefff- (f) 18)gfed(c) 19)dfhjl(n) 20)abcijdefij (g) 21)efgefghefghi- (e) 22)bcbdedfgfhi- (h) 23)aababccdc(d) 24)aibcidef(i) 25)cehl(q) 26)abdehimn(s) check again 27)becfdge(h) 28)agbhc(i) 29)adhko(r) 30)efghjklno(q) 31)aedhg(k) 32aeibf(j) 33)zdwgt(J) 34)zeyijxg()find 35)cqreuvg(y) 36)ksjtiuh(v) 37)rsjtuhvw(f) 38)ieajfbk(g) 39)hebifej(g) 40)hjlmiel(h) --------------------------------

TOTAL 60 QUE'S 25-PROBLEMS & 35 FIGURES(figure series,we have to find next coming figure) HERE 13 PROB'S ARE THERS.REMAINING ALSO ALMOST LIKE THIS . 1) A boy multiplied a number with 10 and got 100,insted of dividing it . If he devided it what would be the answer? (Ans is 1) 2)If 12 shell cup board requires 18ft of wall space then 30 " " " " how much wall space? (Ans is 45) 3)The average salary of three employee is 95Rs.per week. If one employee earns 115 and other earns 65 rupees. how much will third be earn? (Ans is 105Rs) 4)A company instaled 36 punching machines at the begining of the year.In the spring they instaled 9 additional m/c's and then discontinued 18 in the fall.How many were still installed at the end of the year? (Ans is 9)check 5)During a given week a programmer spend 1/4 of his time preparing charts,3/8 of his time for coding,rest of his time for debugging the programs.If he had 48 hrs during the week how many hours did he spend debugging the program. (Ans is 18hrs) 6)A 16 story building has 12000ft on each floor. Company A rents 7 floors and company B rents 4 floors. What is the number of square feet of unrented floor space? (Ans is 60000 sqft)

7)A man owns 2/3 of a computer service buroue business and sells 3/4 of his share for $75000.What is the value of the business. (Ans is 150,000) 8)A computer printer produces 176400 lines in a given day. If the printer was in operation for 7hrs during the day how many lines did it print per minute? (Ans is 420) 9)From its total income a company spent $20000 for advertising half of the remainder on salaries and had $6000 left.What was the total income? (Ans is $32000) 10)In a certain company 20% of the men and 40% of the women attended the annual company picnic.If 35% of all the employees are men .What % of all the employee went to the picnic? (Ans is 33%) 11)The dimensions of certain IBM m/c are 48"*30". If the size of the m/c is increased proportionally until the sum of its dimensions equals to 156".What will be the increase in the shortest side? (Ans is 30) 12)If a card punch operator can process 80 cards in half an hour How many cards can this process in 7hr30min? (Ans is 1200) 13)In a computer tape library there are two racks with 40 tapes per rack.In a given day 30 tapes are in use . What fraction remains in the rack? (Ans is 5/8)

1. Name of the company: TCS Date of test/interview: 4,5,6 Sept people attended from M.Tech.,(CS): CH.RAVIKUMAR,A.RAJAMOHAN,J.JAYAKUMAR About the company: Junta company 3 year bond largest S/W firm in india revenue of 560 Crores They claim to work in all fields. They are emphasising that they are not just COBOL company they do other good things also. Place of posting can be any where. three to four months training .The training is in one of the following places . Delhi,Madras,Bombay. Pay is BAsic:6500 HRA:30% of the basic Medical :31000Rs PF:10% etc. people screened for interview: Ch.Ravi kumar,J.Jaya kumar,A.Raja mohan people selected from M.Tech., (CS): J.JAYAKUMAR 2.

Name of the company: Infosys Technologies Ltd. Bangalore Date of test/interview: 10,11 Sept people attended from M.Tech.,(CS): 9 CH.RAVIKUMAR,A.RAJAMOHAN,M.RAVEENDRA BABU,M.KEDAR PRABHAKAR, SANDEEP SINGH,NAVEEN K. THYAGI,N.D.P.RAO,ARVIND KUMAR, M.RAVI KUMAR. About the company: Turnover 900+ million rupees 1165 personnel main office in kreonics city, Ba. They work in Distribution Banking & Finance Manufacture Communications Insurance 85% of their turnover is in S/W exports.Apart from that they have some packages like BANCS2000 They market some products also. They have ISO9000 certification They have excellent facilities in their bangalore office. They are planning to expand . avg. age is 24 yrs in the company. 1 year bond and no money involved. Pay is :Rs10,577 p.m. (GROSS) people screened for interview: Naveen kumar Thyagi,M.Ravi kumar people selected: None from CS Dept. The question paper what ever we remember: 1.My neighbour has seven children.Every brother has equal no. of brothers and siters ,but each sister has twice as many brothers as sisters? Ans: 4,3 2.There are 11 more animals than birds in a pet shop.If there are as many birds as animals and if there are as many animals as birds the no. of legs is 4/5 of the original.Howmany birds and animals are there? Ans: 22,11 3.one soap can be made out of the scraps obtained while preparing 11 soaps.How many soaps can be prepared out of the scrap obtained out of 251 soaps.(Take all possibilities) Ans: 25 4.Find out the five digit number whose first digit is three times that of it's fifth digit,the fourth digit is four more than the second digit,the third digit is three less than the second digit, and there are 3 pairs of digits such that each sum is 11? Ans: 65292 5. 2XX 3XX --5XX X4X XX3 ------XXXXX ------Find out the X's and seven is not there in the calculation. Ans: 281x332

6.There are 5 burglars and once went to a bakery to rob it obviously The first guy ate 1/2 of the total bread and 1/2 of the bread. The second guy ate 1/2 of the remaining and 1/2 of the bread. The third guy ,fourth guy and fifth guy did the same.After fifth guy there is no bread left out.How many bread are there? Ans:31 7.The main line train starts at 5.00AM and the harbour line train starts at 5.02AM.Each train has the frequency of 10 minutes.If a guy goes in the morning at a random time what is the probability of he getting main line train? Ans: 0.8 8.There is 66x33m rectangular area .Ram is 11/8 times faster than Krishna.Both of them started walking at opposite ends and they met at some point then,Ram said "See you in the other end"Then they continued walking.After some time Ram thought he will have tea so he turned back walked back 15 meters then he changed his mind again and continued walking .How much Krishna has travelled by the time they meet? 9.A farmer has C chickens.A sack of feed comes for 9 days.As the feed cost is increasing the farmer sells some chickens and retains 12 chicken.If he reduces the feed quantity by 10% .Then he observes that the feed comes for 30 days.What is C? Ans:36 10.Escalator Problem. A person walking takes 26 steps to come down on a escalator and it takes 30 seconds for him for walking.The same person while running takes 18 second and 34 steps.How many steps are there in the escalator? Ans:46 Anal Paper: 1. There are nine cards arranged in three rows and three columns. Each row contains atleast one green card.There are three yellow corners.Red is either in the first row or second row.There are 2 greens in the 3rd column and 2 blues in the second row.What is the arrange ment of the cards Ans: Y R G B B G Y G Y 2. There are eight cards.Each card has colour on both sides.There are 2 blue 2 red 2 green 2 yellow. Name of the company: Ramco Systems Ltd. Date of interview/test: 12/9/96 ,13/9/96. People attended from mtech: Naveen kumar thyagi, ch.ravikumar, n.durga prasada r ao, ravindran, rajamohan. People attended from ms: salome jacob and Radha krishnan. About the company: It is a company started in 1989 by Ramco group of companies It has some 950 personnel working. It is a madras based company. Their's is the only product based company in india. Their product is called Ramco Marshall It is based on client-server architecture and the front end for that is MS-Windo ws. Their workareas are as follows: Client-Server Computing GUI RDBMS Distributed Computing(This is jargon) Work Flow Business Objects EDI(Electronic Data Interchange)

They have an allience with MS and Monitoring Technologies,USA. They believe in localising operations and Global marketing(Official way of sayin g we won't send you abroad) Pay Package:Rs.1.44 lac per annum. Take home is 9,400 Rs. People screened for interview: Salome Jacob,Naveen kumar Thyagi People selected from mtech: None People selected from ms: Salome Jacob.

4. Name of the company: Computer vision India ltd. Date of the interview/test:14/9/96 people who attended for test: M.Raveendra Babu,M.Kedar Prabhakar,Arvind Kumar, A.Rajamohan,ch.ravikumar,m.ravikumar,n.durgaprasada rao,j.gopala krishna About the company: It is started in 1994 in india. It is a subsidary of Computer Vision,US. They are mainly known as CAD/CAM Company.They have 220 people right now. They have some 250 Sun Sparc workstations in pune.It is a flat organisation. Flexi working hours.Among 220 personnel 17 are ph.d's and 110 are mtechs and the rest of them are mca's. It is a product based company.It's products include CADDS5,Medusa,DIM3 Pelorus(Scalable CAD Architecture),Discover(OODevelopment Tool),Discover, purify,optegra.They are interested in the following Math Tech. Design Soft.Stage(Mainly maintainance) Developing tools(mainly case tools) Electronic Product Development(EPD) Pay Package: Rs1.65lac+free lunch+transportation People screened for interview: M.Raveendra Babu,M.Kedar Prabhakar,M.Ravi kumar, Arvind kumar,J.Gopala Krishna,N.Durga Prasada Rao People selected: M.Raveendra Babu,M.Kedar Prabhakar,M.Ravi kumar,Arvind kumar,J .Gopala Krishna 5. Name of the company: Wipro Infotech,(Global R&D) Date of the test/interview:15/9/96 People Attended for test from mtech: Anurag Sharma,M.Ranga Rao Choudary, A.Phani Bhushan N.V.Shaji,M.Shilpa,Ashish K. Hanwadikar,K.Venkatesh,V.Surya Narayana, A. Siva Shankar,K.Venu Madhav,Sandeep Singh,Ch. Ravi kumar,A.Raja mohan People Attended for test from ms: Anantha Raman,Shankara Raman,Rajesh kumar, Santosh kumar,Gayathri,Renuka,Sudha Kiran,N.Jagdish Babu,Radha krishnan, Dheena,Vargheese About the Company: They are working in Fault Tolerant Technology, H/W & ASIC Object Oriented Technology, Communications&N/W OS & Device Drivers Database internals

Client-Server IBM mainframes Telecom Software Financial Applications Their clients include AT&T,UB Networks,Tandem etc. Their turnover is around Rs.50Cr and it is expected to be around Rs.80 Cr. this time.Expected growth rate is around 30% for 1996-97 Pay Package: Rs.1.57lac per annum take home Rs.12,000 p.m. People Scrrened for first interview: from mtech: mrrc,anurag,phani,akh,venky,shaji,surya,sans,sm from ms: shankr,araman,krishv,rajesh,skumar,gayatri,renuka,kiran, People Screened for Second interview: from mtech: mrrc,anurag,phani,akh,venky,shaji from ms:shankr,araman,rajesh,skumar,kiran,gayatri People Selected from mtech: M.Ranga Rao Choudary,Anurag Sharma, A.Phani Bhushan,Ashish K. Hanwadikar,K.Venkatesh People Selected from ms: K.N.Anantha Raman,Shankar Raman,B.Rajesh Kumar I.Santosh Kumar,Sudha Kiran,T.R.Gayatri 6. Name of the Company: HCL_HP Date of test/interview:17/9/96 & 18/9/96 People Attended for test: from mtech: Naveen kumar Thyagi,Sandeep Singh,T.C.Vengatesan N.Durga Prasada Rao,Ch.Ravi kumar,A.Raja mohan,Ravindran,N.V.Shaji, A.Siva Sankar,K.Venu Madhav from ms: N.Jagdish Babu, About the Company: It started in 1976.It is located in two places Madras and Noida.It has two seperate tests for S/W and H/W. Totally informal and one guy who came here from company was wearing a T-Shirt and Jeans. Flexible Working Hours. NIIT is also a componant of it. Pay Package: Rs.1.56lac per annum People Screened for interview: from mtech: Naveen Kumar Thyagi from ms: N.Jagdish Babu People Selected : from mtech: Naveen Kumar Thyagi from ms: N.Jagdish Babu 7. Name of the company: Oracle Date of the interview/test: 19/9/96 People who attended test: from mtech: V.Surya Narayana,Sandeep Singh,Naveen Kumar Thyagi, N.V.Shaji,Ch.Ravi kumar,J.Gopala krishna,M.Shilpa, A.Raja mohan,A.Siva Sankar,K.Venu Madhav from ms: N.Jagdish Babu,kalyan,ganesh, ........ About the company: It is the second largest S/W firm.Hazzaar Perks.Lot of parties. Screwed junta in the written by asking 70% RDBMS,which they never quoted as their requirement(they quoted C,UNIX,C++) in their advertisements.They will give ATZ Grindlays Card,Somany loans, Weekly booze parties etc etc Pay Package: Rs.1.77lac per annum People Screened for interview:

from mtech: NONE from ms: N.Jagdish Babu 8. Name of the company: InterGraph Date of the interview/test: 18/9/96 People who attended test: from mtech: A.Raja mohan from ms: none (There is a CG cut off for writing the test) About the company: Initially they said they require only Civil and Mech guys They called CS guys with reluctance and they didn't screened anyone for interview. People Screened for interview: from mtech: NONE from ms: NONE 9. Name of the company: MOTOROLA India Electronics Ltd. Date of the interview/test: 20/9/96 and 21/9/96 People who attended the interview: from mtech: Anurag Sharma,K.N.GuruPrasad,A.Phani Bhushan, K.Venkatesh,N.V.Shaji,Sandeep Singh, V.Surya Narayana,K.Venu Madhav,M.Shilpa, Ashish K. Hanwadikar,T.C.Vengatesan from ms: Dheena,SudhaKiran,ganesh About the Company:(The info here is the opinion expressed by the class members w ho attended the interview immedieately after the interview. So take note of this and it might have been affected by One of senior who is working comments or wha t ever it is.Take this into consideration.) This is the right royal screwing company you can get in indian scenario.It seems they put Video Cameras to monitor the moments of the peopl inside the company.their e-mails will be filtered and you will be doing only testing.You might have to work minimum 12 hours a day to 14hours a day.No perks or facilities.Work Environment is good,Salary is less compared to avg.industry standard.Company stamp is considered to be best.They won't give the details about their work .Everything is CONFIDENTIAL.In the world EVERYBODY IS SUSPECT UNTIL PROVED OTHERWISE for them.They screwed guys in the interviews saying that you people will be leaving the company.How will you assure us to the contrary? is their paining repeated question.It seems among 15 persons in a team in one year itself 10 persons left.That's why i think they are getting pained.Anyway,If you wanna enjoy u'r self this is not the company for you.If you want the stamp then yes it is the company. PHANI adds (as on 10/10/96) That there are no cameras for watching and it seems that he got it confirmed fro m one of senior working there called BAGI Pay package: Rs.1.42lac per annum People Selected finally: from mtech: K.Venkatesh,A.Phani Bhushan from ms: Dheena 10 Name of the company: CMC, Hyderabad

Date of test/interview: 23/9/96 People who attended test: from mtech: K.VenuMadhav,CH.RaviKumar,A.Rajamohan from ms: NONE About the company: It works in Banking S/W,Automation(PORTS,OFFICES etc etc) It is one of the good Public Sector Company.The experience in this company is considered to be good. It is sole company which does all sorts of job for the Govt.Of.India.It is responsible for the Railway Reservations and all.So basically it is a good company. Pay Package: Rs.1.26lac per annum(Take home is around 8000 Rs.p.m) People screened for interview: from mtech: a.rajamohan from ms: NONE People Selected finally: from mtech: from ms: NONE 12 Name of the company: Honeywell India Ltd. Date of test/interview:25/9/96 People who attended test: from mtech:Sandeep Singh,Ch.RaviKumar,N.DurgaPrasadaRao,K.VenuMadhav, V.SuryaNarayana,A.SivaSankar,M.Shilpa, from ms: About the company: It is an MNC and is mainly in the development of InFlight S/W and has very good customers.First one or two years like in any other MNC one will be put in testing then only any development work will be given. Pay Package; People screened for interview: from mtech: Sandeep Singh,A.Siva Sankar,A.Raja mohan from ms: Renuka,Ramakrishnan,Santosh People selected finally: from mtech: from ms: 13 Name of the company: Hughes Software Systems , Gurgaon B B B B B B B B B B B B B B B B B B

B B B B People who attended test: from mtech:N.V.Shaji,ArvindKumar,T.C.Vengatesan,N.Durga Prasada Rao, A.Siva Sankar,V.Surya Narayana,K.Venu Madhav,A.Raja mohan, Sandeep Singh,Ch. Ravi Kumar,R.Ravindran from ms: Varghese......... About the company: Pay Package;Rs.1.85lac per annum People screened for interview: from mtech:N.V.Shaji,ArvindKumar,T.C.Vengatesan,N.Durga Prasada Rao, A.Siva Sankar,V.Surya Narayana,K.Venu Madhav,Sandeep Singh from ms:Varghese.................... People selected finally: from mtech:N.V.Shaji,ArvindKumar,T.C.Vengatesan,A.Siva Sankar,V.Surya Narayana from ms: Varghese 14 Name of the company: Future S/W,Madras Date of test/interview:28/9/96 People who attended test: from mtech:Sandeep Singh, M.Ranga Rao Choudary,R.Ravindran,N.Durga Prasada Rao,K.Venu Madhav from ms: Radha krishnan, Renuka About the company: Pay Package; Rs. 1.7lac per annum People screened for interview: from mtech: Sandeep Singh,M.Ranga Rao Choudary,R.Ravindran,N.Durga Prasada Rao from ms: NONE People selected finally: from mtech:Sandeep Singh, M.Ranga Rao Choudary from ms: None 15 Name of the company: Date of test/interview: People who attended test: from mtech: from ms: About the company: Pay Package; People screened for interview: from mtech: from ms: People selected finally: from mtech: from ms: 16 Name of the company: Date of test/interview: People who attended test: from mtech: from ms: About the company: Pay Package; People screened for interview: from mtech: from ms:

People selected finally: from mtech: from ms: 17 Name of the company: Date of test/interview: People who attended test: from mtech: from ms: About the company: Pay Package; People screened for interview: from mtech: from ms: People selected finally: from mtech: from ms: >>From [email protected] Thu Aug 28 18:33 IST 1997 Return-Path: <[email protected]> Received: from deer.iitm.ernet.in by bronto.iitm.ernet.in (5.0/SMI-4.0) id AA00499; Thu, 28 Aug 1997 18:32:26 --5-30 Received: (from krishna@localhost) by deer.iitm.ernet.in (8.7.5/8.7.3) id SAA085 27; Thu, 28 Aug 1997 18:34:48 +0530 From: [email protected] Message-Id: <[email protected]> Subject: verifone paper! To: [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected], [email protected] Date: Thu, 28 Aug 1997 18:34:48 +0530 (IST) X-Mailer: ELM [version 2.4 PL25] Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Content-Length: 5675 Status: OR Hai friends, Here is the verifone paper. Enjoy!! bye mohan. ---------------------------------------------------------------------------VERIFONE Verifone test Questions : There are two parts : 1. Aptitute test : 15 Minutes, 20 Questions

Some questions are: (not in order) 1. A question (first one)on addition of fraction of inches a. was the answer 2. There were 36 chairs. how many ways can they be placed such that all rows have equal no. of chairs and atleast three chairs are there in each row and there are atleast three rows. 5 ways. 3. There are 27 balls, of which 1 is heavier. given a balance how many times you need to weigh to find out the odd ball. 3 Weighs. 4. Product of three consecutive nos. 210. What is the sum of two least numbers 11. 5. If the area of the sqaure is increased by 69 % how much the length of the side will increase? 30% 6. if the sum of five consecutive nos. 35? how many prime nos are there : 2 primes. 7. if the length of the rectangle is reduced by 20% and breath is increased by 20 % what is the net change ? 4 % decrease 8. A question on sets. There are some 20 Basketball players & 30 Football players, and 25 cricket players. 1 of them plays all the three games. 8 of them plays atleast two games. They are 50 altogether. How many of them plays none of the games. 9. A question on directions. B is 20 miles east of A. D is 30 miles east of C. E is 10 miles north of D. C is 20 miles north of B. How far E is from A? Some 3 questions on Reasoning like, 10. If you say that giving stock options to employees increases the productivity of the company, which of the following sentences support it. A) Giving stock options increases the morale of the employees .. .. etc., 11. Gamblers comes to the Amusement parks. There are some Amusement parks in each city. There are some gamblers in each city. So what can you infer. A) Amusement park always have gamblers. .. .. etc., 2. Technical Questions. i. Electrical & Electronics : 15 Questions 1.A Circuit with nand gates. (ans. may be XOR) 2.CMRR. relates to (options not in order)

voltage follower non invering amplifier inverting amplifier integrator 3. Given a circuit , give the ouput. (ans. may be triangular wave.) 4. o/p of an assembly code. mulitply by 11. 5. how to handle asynchronous events. a) polling b) interrrupt etc. ii)Data Structures, Algo., & Complexity theory : 5 questions iii) OS : 5 questions iv) Networks and Hardware: 5 questions v) Databases and Misc.: 5 questions vi) C Pgm. : 5 questions some more 10 questions. 1. if W is a sequence of strings without a and W' is its reversal then WaW' is accepted by: Context Free Grammmars 2. Whether all recusive pgm can be writtten iteratively? yes. 3. What data structes you will use if you want to go to first record from the last and vice versa? doubly linked circular list 4. Given 10000 nos. and 48MB Memory. What is the complexity of the efficient sorting algo.? (the algo. is not mentioned) O(N) 5. Given a C code and ask what it does? code was something similar to Bubble sort and that particular code does the sorting in Desending order and the complexity is O(n^2)(which is the next question). 6. A code like this is given. a. for(i=0;i<num;i++) b. for(i=num;i>0;i--) Assuming no code optimization and assume that the microprocessor has flags etc. which one is correct. b will execute faster. 7. If there are too many page faults what is the problem? 8. To ensure one pgm. doesnt corrupt other pgm. in a Multi-pgm enviornment what you should do? 9. Which one you will use to implement critical section?

Binary Semaphore 10. Which one is not needed for Multi-processing. enviornment? options are: virtual memory,security,time sharing,none of the above. 11. Which one is not done by Data link layer ? bit stuffing, LRC,CRC,parity check 12. Which one is not related to Data link layer? 13. Which one is not suitable for client-server application? tcp/ip,message passing,rpc,none of the above. 14. What is SQL. Procedural Relational DB Query Language. 15. Indexing in databases give you options were like 1.efficient deleting and inserting 2.efficient deleting. etc. 16. int a=1,b=2,c=3; printf("%d,%d",a,b,c); What is the output? 17. Scope of Static Variable ............ in a file. 18. for(i=0; i<=10;i++,printf("%d",i)); +20. Real Time Os should have a)fast context switch b)Virtual memory etc. (+- is there in the questions)

21. Messages are transferred in some E71 code, where after 7 bits of data, 1 bit of stopping data is to be transferred. what should be done. options were like a) send directly b) send after encoding etc. 22. There are three processes A, B, C. A sends data to B. B removes the header stores it and sends the data to C. C returns it to B. B receives the message, identifies the message and adds the header that was stored and sends to A.B receives the messages from C such that atmost 'm' messages B are pending. Identify the best Data Structure. 23. A question in compiler about the heap and stack allocation of memory. 24. struct { char a[3]; int b; }x; char *cp; a) size of x is 7. B

b) c) d) cp takes the size of a pointer. (d ) is the ans.

Wipro paper(System software) July-1997 -----------PART --A -----------------------------------------------------1) abcD+abcd+aBCd+aBCD then the simplified function is ( Capital letters are copliments of corresponding letters A=compliment of a) [a] a [b] ab [c] abc [d] a(bc)* [e] mone (bc)*=compliment of bc Ans: e ------------------------------------2) A 12 address lines maps to the memory of [a] 1k bytes [b] 0.5k bytes [c] 2k bytes [d] none Ans: b ---------------------------------------3) In a processor these are 120 instructions . Bits needed to impliment this instructions [a] 6 [b] 7 [c] 10 [d] none Ans: b ----------------------------------------4) In 8085 microprocessor READY signal does.which of the following is incorrect statements [a]It is input to the microprocessor [b] It sequences the instructions Ans : b ---------------------------------------5) Return address will be returned by function to [a] Pushes to the stack by call Ans : a -----------------------------------------6) n=7623 { temp=n/10; result=temp*10+ result; n=n/10 }

Ans : 3267 ---------------------------------------------7) If A>B then F=F(G); else B>C then F=G(G); in this , for 75% times A>B and 25% times B>C then,is 10000 instructions are there ,then the ratio of F to G [a] 7500:2500 [b] 7500:625 [c] 7500:625 if a=b=c else 7500:2500 -------------------------------------------------8) 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 --------------------------------------------------------9) 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 --------------------------------------------------------------PART-B ------1) Virtual memory size depends on [a] address lines [b] data bus [c] disc space [d] a & c [e] none Ans : a ----------------------------------------------2) Critical section is [a] [b] statements which are accessing shared resourses Ans : b ------------------------------------------------3) load a mul a store t1 load b mul b store t2 mul t2 add t1 then the content in accumulator is Ans : a**2+b**4

--------------------------------------------------4) question (3) in old paper 5) q(4) in old paper 6) question (7) in old paper 7) q(9) in old paper ------------------------------

1]. The following variable is available in file1.c static int average_float; all the functions in the file1.c can access the variable [2]. extern int x; Check the answer [3]. Another Problem with # define TRUE 0 some code while(TRUE) { some code } This won't go into the loop as TRUE is defined as 0 [4]. A question in structures where the memebers are dd,mm,yy. mm:dd:yy 09:07:97 [5]. Another structure question 1 Rajiv System Analyst [6]. INFILE.DAT is copied to OUTFILE.DAT

[7]. A question with argc and argv . Input will be c:\TEMP.EXE Ramco Systems India

----------------------------------------------------------------------main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); }

---------------------------------------------------------------------int x; main() { int x=0; { int x=10; x++; change_value(x); x++; Modify_value(); printf("First output: %d\n",x); } x++; change_value(x); printf("Second Output : %d\n",x); Modify_value(); printf("Third Output : %d\n",x); } Modify_value() { return (x+=10); } change_value() { return(x+=1); } ---------------------------------------------------------------------------main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } ----------------------------------------------------------------------main()

{ char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } ---------------------------------------------------------------------main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } -------------------------------------------------------------------#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp; temp=a; b=a; a=temp; return; } ---------------------------------------------------------------------main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } --------------------------------------------------------------------#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } -----------------------------------------------------------------

#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); }

HCL Here HCL came yesterday. They are taking students in 3 streams at present. one: Application software - Open to Computer Science and Non-computer science students - Written test of 1 hour duration consisting of 4 sections System software: - Open to all Written test of 90 minutes duration * Computer awareness section -Questions from Computer Science (network, windows, OLE, Internet, OSI) * C Prgramming fundamentals (c/c++/java) (Comparision of c and java) * Analysis of program code (c/c++/java) (only one question from java) * General aptitude (quantitative aptitude, analytical ability) ********************************************************************* Questions from systems: Section 1: 1. Piggy backing refers to.... 2. OSI emulation layer ? 3. Parity error checking is used for.........? 4. In a 20 Mhz computer, the time taken for a 3clock cycle instruction is:........ ans: 120 ns (check) 5. convert 0xFFE into radix 7 6. Internet IP address is unique for.. ans: domain of the node (check) Section 2: 1. Comparision of java and C The feature present in C but not in java (a) recursion (b)Passing variable arguments (c).... (d)...

Programs 1. main() { int y = 10; if(y++ == 10 && y++ != 10 && y++ > 11) printf("%d",y); else printf("2y = %d",2*y); } 2. void funca(p) int *p; { *p += 20; } void funcb(m) int *m; { int n; m = &n; *m += 10; } main() { int var = 25; int *varp; varp = &var; funca(varp); *varp += 10; funcb(varp); printf("%d...%d",var,*varp); } 3. main() { static int *p = 100; char *q = p; p++; q++; printf("%d...%d",p,q); } /* don't run it. Its a Java program */ /* find the error if any */ class A { static final int var = 10; private : int obj1; public : char obj2[]="some string"; func() { var = 15; system.out.obj1; system.out.obj2; } }

choices: 1) There is no semicolon at the end of the class 2) The variable var cann't be changed after declaration 3) Class A has not been declared as of public type 4) string can not be printed directly ans: ? 5. /* declare static int i; globally 1) the variable is available for all the functions after its declaration 2) the variable is not available for other than the current program 3) ..... 4) ..... */ static int i; main() { void fun1(); printf("%d\n",i); fun1(); } void fun1() { printf("%d\n",i); } Aptitude: GRE book, page no. 300 range, anlaytical ability question A causes B or C but not both.... ********************************************************************* All the best and good luck. Reply to me soon.

**************************************************************** V. Subramanian, 69, Sapphire Hostel, Regional Engineering College, Tiruchirappalli - 620 015. **************************************************************** Today is made for you.

>>From [email protected] Tue Nov 4 22:08:31 1997 Date: Tue, 4 Nov 1997 22:06:23 +0530 (IST) From: "k.s .sushant kumar" <[email protected]> To: [email protected]

This is the TCS paper held at IITM.

TCS is as follows. HAI GUYS 107 members were selected out of 400+ attentd for written and 200+ were short listed for intv's. 40+ from m.tech 30+ from b.tech and remaining from ms. intv's for PHDs are yet to be started. There is a rumour that, If age is above 24 TCS will not take. It is absolutely wrong. Here they took fellows who having less cgpa and who does't know minimum basics about compuer knowledge. So what I am saying is we should have some fate at that time. PAPER-97 ___________________

-------------------------------------------------------------------------------CALICUT TCS paper --1997 -------------------------------------------------------------------------------SECTION 1 INTURN CONSISTS OF THREE PARTS. PART 1 VERBAL--IT CONSISTS OF 40 WORDS WHICH HAS 5 MULTIPLE ANSWERS FOR THEM.THE MAIN WORDS WHICH I REMEMBER ARE AS FOLLOWS FOR WHICH YOU SHOULD LEARN THE SYNONYMS OF THESE--merry = gay alienate = isolate, antagonize, separate, estranged solicit = request, ask heep = gather cargo = consignment, goods (wool) momentary = short time, temporary volume = veer = change of direction disperse = scatter admonish = rebuke , scolding meager = small amount latitude = parallel, scope latent = hidden covet = desire

discretion = tact, judicially potential = capacity emanicipate = Liberate lethargy = Dull concur = agree confiscate = seize, impound, bannish dispel = away baffle = puzzle subside = reduce the value misery = sorrow pretentious = pompous, showy tranquil = calm efface = erase, rub out effigee = image, carving statue abstinate = refraining, to resist obstinate = self willed, stubborn hover = hang over caprice = vagry, impulse, changes mind without any reason, whim belate = late renaissance = interest on particular topic, revival of interest abstriate = forming abstract brim = edge divulge = disclose lament = express sadness belief = embrace = hug adhesive = tenatitous miserable = grief furtue = secrete SECTION 1 PART B 20MIN 30 marks 15 QUANTITATIVE.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ THESE ARE SOME PROBLEMS : 1.) two pencils cost 8 cents. then 5 pencils cost? (20 cents) 2. A work is done by the people in 24 minutes. One of them can do this work alonely in 40 minutes. How much time to do the same work for the second person? (60 minutes) 1/24-1/40=1/60 3. A car is filled with four and half gallons of fuel for a round trip. Fuel is taken 1/4 more in going then coming. What is the fuel consumed in coming up? (2 gallons) (1+1.25)x=4.5 x = 2 gallons 4.Low temperature at the night in a city is 1/3 more than 1/2 high as higher temperature in a day. Sum of the low tem. and highest temp. is 100 degrees. Then what is the low temp? (40 deg.) ans. (x/2)+x/3+x=100 x=600/11 5x/6=500/11=45.45 5. A person, who decided to go to weekened trip should not exceed 8 hours driving in a day. Average speed of forward journey is 40 m/h. Due to traffic in sundays, the return journey average speed is 30 m/h. How far he can select a picnic spot? a) 120 miles b) between 120 and 140 miles c) 160 miles x/40+x/30=8 x=120*8/7=137.14 6. A salesperson multiplied a number and get the answer 3, instead of that number devided by 3. what is the answer he actually has to get? 1 x 3 = 3 so number = 1 devided by 3, the ans. is 1/3. 7. A ship started from port and moving with I miles per hour and another ship started from L and moving with H miles per hour. At which place these two ships meet? |----|----|----|----|----|----| port G H I J K L ans. IX+HX=L X=L/(I+H) XI=LI/(I+H) 8. A building with height D shadow upto G. A neighbour building with what height shadows C feet. |----|----|----|----|----|----|----| A B C D E F G H

CD/G 9. A person was fined for exceeding the speed limit by 10 mph. Another person was also fined for exceeding the same speed limit by twice the same. If the second person was travelling at a speed of 35 mph, find the speed limit. (15 mph) 10*2=20 35-20=15 mph 10.A bus started from bustand at 8.00am, and after 30 minutes staying at destination, it returned back to the busstand. The destination is 27 miles from the busstand. The speed of the bus is 18mph. In return journey bus travels with 50% fast speed. At what time it returns to the busstand? (11.00am). 11.In a mixture, R is 2 parts, S is 1 part. In aoder to make S to 25% of the mixture, howmuch r is to be added?

SECTION-1

PART-3

marks-50 questions-50 30 min

CRITICAL REASONING It is very difficult to reproduce them and so we are giving here the first question of the section so that you may have a general idea of the section.Be careful time management is important. YOU HAVE TO MARK YES, NO OR WE CAN'T SAY.. My father is only child to his father.My father has three sisters. All are married and have two children each. 1) My grandfather has two sons. 2) I am having six cousins. 3) I have three uncles. SECTION-2 PSYCHOMETRIC TEST 150 QUESTIONS 50 MARKS.

IN THIS SECTION THERE WILL BE QUESTIONS RELATED TO YOUR PSYCHOLOGY YOU WILL HAVE TO SAY YES ,NO OR I CANT SAY. YOU MARK THEM IN THE MOST POSITIVE WAY .BUT WE ARE NOT CERTAIN WEATHER THE PAPER IS CORRECTED OR NOT .

--------------------------------------------------------------NOTE: In addition the above CALICUT paper we are adding some passages below , whichever not covered by them. VOCAB

some corrections are there in your paper please make a note admonish = to caution, to warn (not usurp) adhesive = tenatious incentive = ------------QUANT CRITICAL REASONING madhu here in this section time is very less that you just can't even read the total passages. that's why you should have an idea about the passage before going to the test. and put the ans just studying the q's. 8 passages which you have sent are OK i am sending the remaining ones with this info you can answer the q's.I am sending only that portion of the passage which is useful in answering the q's. *)passage related to concious and un concious world ---------------------------------------------------There is an influence of dreams on the waking state(sleeping can be creative) The other q's given in under this passage can not be answered just with the info given in it so don't struggle to read it. q's 1) sleeping can be creative 2) It's difficult to tell whether a person is dreaming. 3) If we could record the drems of prenatal >.........some conclusion. *)Passage related to pests -------------------------Funda is that though pests offer threat to flora and fauna two methods are there to prevent. One is natureal and the other is some engg.. pest controller. Both the methods should be regarded as potential ones. JUst two q's under this 1)Engg pest controller should be regarded as potential method 2)this q can be answered with the first two lines of the passage. *)Passage related to words -------------------------Words have unhealthy importance in totalitarian days. People have to chose the words cautiously. The words have political importance in those days. Words are devalued in democratic rule people are free to chose them and we can say that they come free of cost. q's 1)words have no importance in totalitarian days. 2)poets ---------3) *)Passage related to Tagore works --------------------------------Every form of lit.. comes under copy write act. People having tagore works are earning more,there should be a trust for that. q's 1)Tagore works comes under the copy write act.

2)Regarding the trust 3)People going for movies are paying for the devolopment of arts ....... *)Passage related to facial feelings -----------------------------------Natural expressions have symmetric facial expressions. Negetive expressions have assymetric facial expressions. Left sided expression dominates for a person with negetive feelings (Some thin is given about acters and this passage is very simple you can do it.) q's 1) 2)An actor when smiling poses symmetrical face feelings 3)An angry man poses more lop sided face feelings (Madhu you better go through this passage it's very easy). PSYCHO.. TEST Don't worry about this section. You should make sure that you are choosing the same alternative when ever you encounter the same q.. in different forms. the most repeating ones i am sending . You must answer all the 150 q's and eliminate can't say as far as possible. *)You can work for a long time with out rest. the other forms are like this *)You want to relax freq.. *)you feel difficult to introduce to new friends. *)you can easily make new friends *)you want to limit your friends circle *)you feel good at talking with new people -------the importaant thing is that you should fill all the 150 pshycometry quetions.

1]. The following variable is available in file1.c static int average_float; all the functions in the file1.c can access the variable [2]. extern int x; Check the answer [3]. Another Problem with # define TRUE 0 some code

while(TRUE) { some code } This won't go into the loop as TRUE is defined as 0 [4]. A question in structures where the memebers are dd,mm,yy. mm:dd:yy 09:07:97 [5]. Another structure question 1 Rajiv System Analyst [6]. INFILE.DAT is copied to OUTFILE.DAT

[7]. A question with argc and argv . Input will be c:\TEMP.EXE Ramco Systems India ----------------------------------------------------------------------main() { int x=10,y=15; x=x++; y=++y; printf("%d %d\n",x,y); }

---------------------------------------------------------------------int x; main() { int x=0; { int x=10; x++; change_value(x); x++; Modify_value(); printf("First output: %d\n",x); } x++; change_value(x);

printf("Second Output : %d\n",x); Modify_value(); printf("Third Output : %d\n",x); } Modify_value() { return (x+=10); } change_value() { return(x+=1); } ---------------------------------------------------------------------------main() { int x=20,y=35; x = y++ + x++; y = ++y + ++x; printf("%d %d\n",x,y); } ----------------------------------------------------------------------main() { char *p1="Name"; char *p2; p2=(char *)malloc(20); while(*p2++=*p1++); printf("%s\n",p2); } ---------------------------------------------------------------------main() { int x=5; printf("%d %d %d\n",x,x<<2,x>>2); } -------------------------------------------------------------------#define swap1(a,b) a=a+b;b=a-b;a=a-b; main() { int x=5,y=10; swap1(x,y); printf("%d %d\n",x,y); swap2(x,y); printf("%d %d\n",x,y); } int swap2(int a,int b) { int temp;

temp=a; b=a; a=temp; return; } ---------------------------------------------------------------------main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } --------------------------------------------------------------------#include<stdio.h> main() { char s1[]="Ramco"; char s2[]="Systems"; s1=s2; printf("%s",s1); } -----------------------------------------------------------------

#include<stdio.h> main() { char *p1; char *p2; p1=(char *) malloc(25); p2=(char *) malloc(25); strcpy(p1,"Ramco"); strcpy(p2,"Systems"); strcat(p1,p2); printf("%s",p1); }

- TCS> SECTION 1 INTURN CONSISTS OF THREE PARTS. > > > > > > > > > > PART 1 VERBAL--IT CONSISTS OF 40 WORDS WHICH HAS 5 MULTIPLE ANSWERS FOR THEM.THE MAIN WORDS WHICH I REMEMBER ARE AS FOLLOWS FOR WHICH YOU SHOULD LEARN THE SYNONYMS OF THESE--merry alienate solicit

> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >

heap cargo momentary volume veer dispel admonish meager latitude latent covet discretion latent emanicipate lethargy concur confiscate baffle subside misery pretentious tranquil efface obstinate hover caprice belate renounce brim divulge lament bileaf adhesive hamper to merit SECTION 1 PART B 20MIN 30 marks 15 QUANTITATIVE. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ THESE ARE SOME PROBLEMS : 1.) two pencils cost 8 cents. then 5 pencils cost? (20 cents) 2. A work is done by the people in 24 minutes. One of them can do this workalonely in 40 minutes. How much time to do the same work for the second person? (60 minutes) 3. A car is filled with four and half gallons of fuel for a round trip. Fuel is taken 1/4 more in going then coming. What is the fuel consumed in coming up? (2 gallons) 4.Low temperature at the night in a city is 1/3 more than 1/2 high as higher temperature in a day. Sum of the low tem. and highest temp. is 100 degrees. Then what is the low temp? (40 deg.) 5. A person, who decided to go to weekened trip should not exceed 8 hours driving in a day. Average speed of forward journey is 40 m/h. Due to traffic in sundays, the return journey average speed

> > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >

is 30 m/h. How far he can select a picnic spot? a) 120 miles b) between 120 and 140 miles c) 160 miles ans: 120 miles 6. A salesperson multiplied a number and get the answer 3, instead of that number devided by 3. what is the answer he actually has to get? 1 x 3 = 3 so number = 1 devided by 3, the ans. is 1/3. 7. A ship started from port and moving with I miles per hour and another ship started from L and moving with H miles per hour. At which place these two ships meet? |----|----|----|----|----|----| port G H I J K L

8. A building with height D shadow upto G. A neighbour building with what height shadows C feet. |----|----|----|----|----|----|----| A B C D E F G H 9. A person was fined for exceeding the speed limit by 10 mph. Another person was also fined for exceeding the same speed limit by twice the same. If the second person was travelling at a speed of 35 mph, find the speed limit. (15 mph) 10.A bus started from bustand at 8.00am, and after 30 minutes staying at destination, it returned back to the busstand. The destination is 27 miles from the busstand. The speed of the bus is 18mph. In return journey bus travels with 50% fast speed. At what time it returns to the busstand? (11.00am). 11.In a mixture, R is 2 parts, S is 1 part. In aoder to make S to 25% of the mixture, howmuch r is to be added? 12. with 4/5 full tank vehicle travels 12 miles, with 1/3 full tank how much distance travels ( 5 miles ) 13. two trees are there. one grows at 3/5 of the other in 4 years, total growth of trees is 8 ft. what growth will smaller tree will have in 2 years ( < 2 ft. ) SECTION-1 PART-3 marks-50 questions-50 30 min

CRITICAL REASONING

1. My father has no brothers. he has three sisters who has two childs each. My grandfather has sons. a) my grandfather has two sons

> b) three of my aunts have two sons > c) my father is only child to his father > d) i have six cousins from jmy mother side > e) i have one uncle > > 2. Ether injected into gallablader to dissolve galstones. this type oneday > treatment is enough for gallastones not for calcium stones. this method is > alternative to surgery for millions of people who are suffering from this > disease. > > a) calcium stones can be cured in oneday > b) hundreds of people contains calcium stones > c) surgery is the only treatment to calcium stones > > 3. Hacking is illegal entry into other computer. this is done mostly because > of lack of knowledge of computer networking with networks one machine can > access to another machine. hacking go about without knowing that each network > is accredited to use network facility. > > a) Hacking people never break the code of the company which they work for > b) Hacking is the only vulnerability of the computers for the usage > of the data. > c) Hacking is done mostly due to the lack of computer knowledge. > (there will be some more questions in this one) > > > 4. In the past helicopters are forced to ground or crash because of the > formation of the ice on the rotors and engines. a new electronic device > has been developed which can detect the watercontent in the atmosphere and > warns the pilot if the temp. is below freezing temp. about the formation > of the ice on the rotors and wings. > > a) the electronic device can avoid formation of the ice on the wings > b) there will be the malfunction of rotor & engine because of formation > of ice > c) the helicopters are to be crashed or down > d) there is only one device that warn about the formation of ice. > > > > 6. In confucius days the technology development was less and it took weeks > to communicate a message. wherein we can send it through satellite with in > no time........ even with this fast developments it has become difficult to > understand each other. > > a) people were not intelligent during confucius days > b) transport facilities are very much improved in now-a-days > c) even with the fast developments of the technology we cannot live > happily. > d) we can understand the people very much with the development of > communication. > > 7. Senior manager in a big company said that new japanies company invades > in India for transfering the cars from industrial and warned that jobs were > under threat from japanies company. They stated that increasing competence > would be coupled with an inevitable down term in car market and recent rise > in interest rate which has already hit demand.

> > a) manager issue their warning after a rise in interest rate > b) manager told workers that japanies workers are taking jobs away from > indian workers > c) manager said that more people want to buy new cars in future > d) increasing rate of interest mean that japanies firm will create into > operate in the country > > 8. Human existence is suspecious of arbitrary divide between concise and > unconcise. The concise world invades shape activity of the unconcise, while > many of great activity of humanity waking as whole or partially improved > by dreams. Even it could be ignored that dreams precede exceptional such a > dichotomy could not be drawn as the influence of dream on waking state would > reamin unclear. But as yet no company rebuilt exists to record the substitute > of prendtl dreaming. > > a) sleepy can be creative state > b) it is difficult to tell whether a sleeper is dream or not > c) if we know what babies would dream about before they are born we could > show that the concise and unconcise mind influence on one another > d) it is untrue claim that concise and unconcise world never impinge > one another > > 9. Any one who has has systematic exam phases will have perceived a > profound although not a prolif of asymmetry whether or not the exception > is volitions and self control of spontoneous appeal to predict facial as > symmetry as does the type of emotion potrayed. position can not displace > symmetric at left side regret of a negative emotion is more common posed > expression negation emotions are likely to be symmetric representation > and where as symmetric occurs relative left sided expression is more common. > > a) any angry person is more likely to have left sided expression than > some one who has smiling > b) an actor is likely to smile symmetric when acting > c) delecious facial expression will always be as symmetrical > > > 10. There should be copyright for all arts. the rule has come that all the > arts has come under one copy right society, they were use the money that > come from the arts for the developments. There may be a lot of money will > come from the Tagore works. we have to ask the benifiters from Tagore work > to help for the development of his works. > > a) Tagore works are come under this copy right rule > b) people gives to theater and collect the money for development > c) people are free to go to the because of the copy right rule > d) we have ask the Tagore residents to help for the developments of art. >

Sponsor Documents

Or use your account on DocShare.tips

Hide

Forgot your password?

Or register your new account on DocShare.tips

Hide

Lost your password? Please enter your email address. You will receive a link to create a new password.

Back to log-in

Close