Wednesday, March 19, 2008
HCL
Section A
1. Which of the following involves context switch,
(a) system call
(b) priviliged instruction
(c) floating poitnt exception
(d) all the above
(e) none of the above
Ans: (a)
2. In OST, terminal emulation is done in
(a) sessions layer
(b) application layer
(c) presentation layer
(d) transport layer
Ans: (b)
3. For a 25MHz processor , what is the time taken by the instruction which needs 3 clock cycles,
(a)120 nano secs
(b)120 micro secs
(c)75 nano secs
(d)75 micro secs
4. For 1 MB memory, the number of address lines required,
(a)11
(b)16
(c)22
(d) 24
Ans. (b)
5. Semaphore is used for
(a) synchronization
(b) dead-lock avoidence
(c) box
(d) none
Ans. (a)
6. Which holds true for the following statement
class c: public A, public B
a) 2 member in class A, B should not have same name
b) 2 member in class A, C should not have same name
c) both
d) none
Ans. (a)
7. Question related to java
8. OLE is used in
a) inter connection in unix
b) interconnection in WINDOWS
c) interconnection in WINDOWS NT
9. Convert a given HEX number to OCTAL
10. Macros and function are related in what aspect?
(a)recursion
(b)varying no of arguments
(c)hypochecking
(d)type declaration
11.Preproconia.. does not do which one of the following
(a) macro
(b) conditional compliclation
(c) in type checking
(d) including load file
Ans. (c)
12. Piggy backing is a technique for
a) Flow control
b) Sequence
c) Acknowledgement
d) retransmition
Ans. (c)
13. In signed magnitude notation what is the minimum value that can be represented with 8 bits
(a) -128
(b) -255
(c) -127
(d) 0
14. There is an employer table with key fields as employer number data
in every n'th row are needed for a simple following queries will get required results.
(a) select A employee number from employee A , where exists from employee B where A employee no. >= B
employee having (count(*) mod n)=0
(b) select employee number from employe A, employe B where A employe number>=B employ number
group by employee number having(count(*) mod n=0 )
(c) both (a) & (b)
(d) none of the above
15. Type duplicates of a row in a table customer with non uniform key field customer number you can see
a) delete from costomer where customer number exists( select distinct customer number from customer having count )
b) delete customer a where customer number in b rowid
c) delete customer a where custermor number in( select customer number from customer a, customer b )
d) none of the above
Section B
1. Given the following statement
enum day = { jan = 1 ,feb=4, april, may}
What is the value of may?
(a) 4
(b) 5
(c) 6
(d) 11
(e) None of the above
2. Find the output for the following C program
main
{int x,j,k;
j=k=6;x=2;
x=j*k;
printf("%d", x);
3. Find the output for the following C program
fn f(x)
{ if(x<=0)
return;
else f(x-1)+x;
}
4. Find the output for the following C program
i=20,k=0;
for(j=1;j{k+=j<10?4:3;
}
printf("%d", k);
Ans. k=4
5. Find the output for the following C program
int i =10
main()
{int i =20,n;
for(n=0;n<=i;)
{int i=10;
i++;
}
printf("%d", i);
Ans. i=20
6. Find the output for the following C program
int x=5;
y= x&y
7.Find the output for the following C program
Y=10;
if( Y++>9 && Y++!=10 && Y++>10)
{printf("%d", Y);
else
printf("%d", Y);
}
Ans. 13
8. Find the output for the following C program
f=(x>y)?x:y
a) f points to max of x and y
b) f points to min of x and y
c)error
Ans. (a)
9. What is the sizeof(long int)
(a) 4 bytes
(b) 2 bytes
(c) compiler dependent
(d) 8 bytes
10. Which of the function operator cannot be over loaded
(a) <=
(b) ?:
(c) ==
(d) *
11. Find the output for the following C program
main()
{int x=2,y=6,z=6;
x=y==z;
printf(%d",x)
}
Section C (Programming Skills)
Answer the questions based on the following program
STRUCT DOUBLELIST
{ DOUBLE CLINKED
INT DET; LIST VOID
STRUCT PREVIOUS; (BE GIVEN AND A PROCEDURE TO DELETE)
STRUCT NEW; (AN ELEMENT WILL BE GIVEN)
}
DELETE(STRUCT NODE)
{NODE-PREV-NEXT NODE-NEXT;
NODE-NEXT-PREV NODE-PREV;
IF(NODE==HEAD)
NODE
}
Q. In what case the prev was
(a) All cases
(b) It does not work for the last element
(c) It does not for the first element
(d) None of these
Answer the questions based on the following program
VOID FUNCTION(INT KK)
{KK+=20;
}
VOID FUNCTION (INT K)
INT MM,N=&M
KN = K
KN+-=10;
}
Q. What is the output of the following program
main()
{ int var=25,varp;
varp=&var;
varp p = 10;
fnc(varp)
printf("%d%d,var,varp);
}
(a) 20,55
(b) 35,35
(c) 25,25
(d)55,55
Section D
1. a=2, b=3, c=6
Find the value of c/(a+b)-(a+b)/c
2. What does the hexanumber E78 in radix 7.
(a) 12455
(b) 14153
(c) 14256
(d) 13541
(e) 131112
Ans. (d)
3. 10 : 4 seconds :: ? : 6 minutes
Ans. 900
4. Q is not equal to zero and k = (Q x n - s)/2.What is 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
5. From the following statements determing the order of ranking
• M has double the amount as D
• Y has 3 rupess more than half the amount of D
Ans. Data insuffiecient
Questions 6 - 10 are to be answered on the following 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
6. If A occurs which of the following must occurs
I. F and 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
Ans. (e)
7. If B occurs which must occur
(a) D
(b) D and G
(c) G and H
(d) F and G
(e) J
Ans. (a)
8. 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)
9. Which may occurs as a result of cause not mentioned
I. D
II. A
III. F
(a) I only
(b) II only
(c) I & II
(d) II & III
(e) I,II & III
Ans. (c)
10. E occurs which one cannot occurs
(a) A
(b) F
(c) D
(d) C
(e) J
Ans. (b)
Kanbay
The Exam was held on Sunday Feb 8, 2004 at Vishveshwariayya Bhavan, Kharitabad , Hyderabad.
The selection took place in three rounds each of which was an elimination round.
- Written Test
- Group Discussion
- Personal Interviews
The Written test was administered using 3 different codes of question papers. The papers had 2 sections
- Mathematical
- Logical
Each section contained 30 questions.
The cut-off was 12 marks in each section which was clearly announced before the exam started.
- Mark was awarded for each correct answer.
- /4 Mark was deducted for each wrong answer.
The questions given below were all that could be reproduced from all the 3 sets together.
Q1)Average of 5 innings is 20. If four innings are 32, 10, 40 and 12 find the 5th inning score.
Q2)Area of path around a square is 256 sq.m. Find the width of path if the side of square is 30m.
Q3)A company increases the bonus 3 times of its 50 employees. What is the % increase in bonus?
Q4)A man swims in a river 5 min upstream and 5 min downstream. Starting at A and ending at B. What is the speed of the man?
Q5)NESTIN is a jumbled word. What are the first and last letters of the correct word.
Q6)There is enough material to fence 30m linear. Also there is old fence on oneside of the plot. Find the length and breadth of the plot.
Q7)In a game of Snooker A gives B 18 points for 90, A gives C 10 points for 60. How many can C give B in a game of 70?
Q8)C is the daughter of B. h is the brother of C. F is the father of C. G is the son of F. D is the brother of F. What is the relationship between C and D?
Q9)A moves 25km North and then finds that she is movin the wrong way. She then takes a right turn and moves 2km. Then again she takes a right turn and moves 25km. How much distance does she have to travel to now reach the starting point?
Q10)Some cats are good. Some cats are black.
Conclusions to be chosen from the given multiple choices.
Q11)Gold is 19 times heavier than water. Copper is 9 times heavier than water. In what ratio should they be mixed so that the alloy is 15 times heavier than water?
Q12)A sphere of radius r is placed inside a cylinder of height 2r which just fits. What is the Volume of the empty space?
Q13)A is 3 times as old as B. B is 4 years older than C. If C is Z years old express A in terms of Z.
Q14)A is punctual. All punctual are on time.
Conclusion to be chosen from the given multiple choises.
Q15)a_ _ _baccba_ _ _aa
Q16)Srikanth has borrowed Rs 3000 at 10% C.I.. He has to repay that after 3 years in 3 equal installments. How much does he have to pay as an installment?
Q17)Given a date and day, the question was to calculate the day of the date June 12, 1979.
Q18)The weight of a Bucket full of water is 17 kg, the weight of the same bucket with half full water is 13.5 kg. What is the weight of the Bucket?
Q19)In a party attended by boys and girls where the girls outnumbered the boys Rs 280 was distributed. Each boy was given Rs 10 and each girl Rs 20. How many boys are there?
Q20)10% of an army died. 10% of the were ill. 12% of the rest met with an accident. What is the total number of the original army if 7 lakhs were finally left?
Q21)A started a business with Rs 1700 amount. B joined A after 3 months , C joined after 6 months. If the profit is Rs 1700 and they shared it in the Ratio of 2:3:5 how much did B and C invest?
Q22)A beats B by 24m. A beats C by 20m. C beats B by 1 sec. In how many seconds does A complete the race of distance 120m.
Q23)VIJAY is coded as YLMDB. STOP is coded as VWRS.
A few questions were given based on this code.
Q24) 9 3 6 2 ? 1 4 7 8
Q25) 20 15 10 15 10 5 10 ? 10
Q26)Which is larger Rs 35 : Rs 1.40 or Rs 48 : Rs 1.44
Q27)A travels between two places while going with 4 km/hr and while returning at 16 km/hr. What is his average speed.
Q28)In a group of people 600 are Non-veg and 400 are Veg. Of these 150 are both Non-Veg and Veg. In the Non-Veg 300 eat Mutton and 400 eat Chicken.(i) Find the number of people who eat only Non-Veg Mutton.(ii) Who eat only Veg.
Q29)In a wall clock the smaller needle is between 8 and 9 and the larger makes a right angle with it. Find the exact time.
Q30)If the temperature increases uniformly from 9 am to 2 pm and it increases from 21 C to 36 C. What is the temperature at noon?
Q31)Place a word in the brackets such that it makes a meaningful suffix to the first part and a meaningful prefix to the second part. TEM (_ _ _ _) ERS
correct choice PEST from the given multiple choices.
Q32)A monkey climbs 3m of a greased pole in 1 minute and then slips 1m in the next. When will he reach the top of the pole of 12 m?
Q33)The Alphabet that is 3 from the right to the letter between K and S.
Q34)Length and Breadth of a Rectangle are 100 m and 6 m. Find the area of a road around the rectangle with a width of 5m.
Q35)Find the figure with the highest Area
i)Circle with r=2.
ii)Equilateral Triangle with Side = 4.
iii)Square of diagonal =2.
iv)Triangle with a=8, b=5 and c=4.
Q36)A boat moves 10 km upstream and returns to the same point in 45minutes. The speed of the stream is 3km/hr. The speed of the boat is ?
Q37)Given an Equilateral triangle of side 10m. A cow is tied to one end. The length of the rope is 7 m. The area covered by the cow is ?
Q38)A is 7th from the left, B is 9th from the right, if they exchange A is 11th from the left. The total number of persons is?
Q39)A person moves 5 km East, turns right moves 4 km and then turns right again and moves 5 km. What is the position of the person from the starting point?
Q40)If PLEASE is coded as RMIGKI, then SLEEP is coded as
Q41)If TRUCK = 25 and DERIVE = 36 , What is CAPTAIN ?
Q42)A rectangular field of length 30 m and breadth 18 m. A carpet of 20 cm width is to be used to cover the field. The carpet costs 0.50ps per metre. What is the total cost of carpeting?
Q43)A person travels 20km towards North, he takes left and travels for 15km, then he takes left and travels for 20km. In what direction is the travelling now?
Q44)A train goes from A to B at 50 km/hr and comes back at 40 km/hr and hence takes an hour more time to return. What is the distance between A and B?
Q45)D/23, 17/F, I/12, 8/M, R/5, ?/?
IBM paper
IBM
Written Test- If (a+b): (b+c) : (c+a)= 5:7:9 and a+b+c=7 then what is the value of c______
- top command is used in linux for what__________
-
area of incircle <> - A man said in 1965 that his age is sum of digit of the year he borne. What is he sum of digits of age.
- 1021 > 1121 and 2021 > 21 20 which of the above is true
- Transaction lock aside buffer is used in which processing.
- Cross compiler is__________
- Hyper Text Transfer Protocol is used in which OSI layer_________
- Repeaters are used in which OSI Layer
- Auto Pointer in C++
- Printf(“%c”,”abcdefg”(4)); _____________
- Modification of database i.e inserting of data is done through__________
- RAID 2 and 3 levels are used in _________
- Pervasive computing is used in ____________
- Parity bit is used for__________
- Hamming code is used for __________
- Singular Matrix________--
- Sum of 2 composite number is ______________
- A problem related to A works X days alone and B works Y days alone and C works Z days alone such type of problem ( Work & Time related)
- A problem on profit & losses Rs. 1 – 2 Eggs Rs. 2 – 3 Eggs find % loss & gain
- Problems on Trains speed and crossing the Bridge/ Crossing other train
- Sum of two composite numbers______________
- Access specifier in JAVA____________
- Repeaters are used in ______________ Layer
- Main( ) { int i; printf(“%d” str(strlen[s])); } some type of question like this
- Pointer to function & function to pointer related question.
- Data Sufficiency & Interpretation around 10 problems in this domain
- There are 10 balls in a bag out of which 4 are broken. What is the probability that 3 chosen are broken?
Questions in the Interview
IBM
- Tell about yourself
- Family background
- About project which we did.
- Stack and Queue Data structures ( If possible trees, Linked list and Sorting these are important for a CS/IT students)
- MOV statement in 8086
- Print “Hello” using Java Script
- Your Strengths and weakness
- About your hobbies
- Why you have selected ECE/IT/CS branch?
- What is your plans after 3 years
- Which language & subject like ( based on this answer next questions will be from those subjects)
- When you were given an opportunity to work in J&K/ South Africa/Andaman will you accept?
- What about your father (will you take your father and mother along with you)
- Any achievements
- If at all we offer you the job at IBM, what will you do?
- Will you work for late hours
- Will you want to go for technical side or other side?
- PHP, HTML, JavaScript, MVC architecture ( you are supposed anything ask by the interviewer)
- If we hire you, What you become after 5 years could you achieve CEO post within 5 years?
- Different types of schedulers in OS
- What is synchronization?
- Polymorphism, inheritances, Classes in C++ ( Object oriented language Properties)
- Generic pointers in C++
- There are different questions faced by students from C-Language
- Malloc / Calloc functions and their purpose
- Normalization and normal forms you have followed for your project/ you will prefer for any database.
- Software Engineering basics (questions on your Project / Principles you are followed to develop that project)
Important thing here is “ In your resume some of the students are mentioning about JAVA Network Programming/ Java Servlets VB/ VC++ … But in the interview your not answering even basics in the concepts there in your resume…
Friday, March 14, 2008
INFOSYS PATTERN - 22 FEB 2008 - KOLKATA
INFOSYS PATTERN - 22 FEB 2008 - KOLKATA
- By Chetana S
- Published 29/02/2008
- 2008 PAPERS
- Rating:




Unrated
Chetana S
This is Chetana, owner of the World's Biggest Job Group "CHETANA-JOBS".
View all articles by Chetana SThis is Priyanka Mitra 4m Meghnad Saha Institute Of Technology Kolkata. I m an Infoscion today. On 22nd feb this year, infosys, the dream company, came 2 our campus.... the mornin started wth t PPT... GOD!!! T PPT WAS so great...it was truly out of t world...
then the aptitude tests wr conducted... it consisted of 2 parts
REASONING
VERBAL ABILITY
I suggest study few chapters 4m R.S AGGARWAL VERBAL NON VERBAL...like:
cubes and dice http://www.ChetanaS.org
pictorial puzzles (questions like.... which picture is the odd one out...)
data sufficiency questions.. we got qstns based on area n angle calculations 4m given figures (very easy)
data interpretation chapters 4m quantitative.. given to solve a questn 4m tabulatn.. easy again
PUZZLE test...
syllogism....
this was the paper 4 reasoning...
i cud nt solve the cube qstn...leavin that i solved all other questns correctly....
ENGLISH PART i.e the verbal part..... i think it ws pretty easy and u dont need to study anything 4 that part... if u want to study something..then u may go thru theme detection, sentence completion, tenses, comprehensions, (two very big paragraphs were given) read them patiently... n dont be in a hurry...
After the apti tests results were declared aftr 4 hours and luckily i got selected. I was so happy tat instantly i started cryin cos i cud not contain my happiness within my self...
(Paper Submitted By :naag)
CTS PATTERN & INTERVIEW - 15 DEC 2007 - CHENNAI
CTS PATTERN & INTERVIEW - 15 DEC 2007 - CHENNAI
- By Chetana S
- Published 7/01/2008
- 2007 PAPERS
- Rating:




Unrated
Chetana S
This is Chetana, owner of the World's Biggest Job Group "CHETANA-JOBS".
View all articles by Chetana SI am Senthil Kumar. I finished my BE in ECE.. I am a 2007 fresher.. I attend CTS company in 15-16/12/2007. I want to say something about written test...
The CTS company conducts
Written test
Technical Interview
Mark verification regarding written test all guys well known about pattern
My suggestion is, in my written i had venn diagram, cube, binary logic code like 1 is represented as & like this 0 is* like this, data sufficency
I done only binary logic, cube, datasufficency, they all are correct,, rest of them I made a flook only... out of twenty five questions you have to correct atleast fifteen. thats the key i think..
Regarding Verbal, I felt some difficulties here, but never think like that because passage reading is very easy dont avoid.. this is my humble request but try at last., jumble sentence is quitely easy go by the given answer..
Then Analytical section every one can do it without any preparation...
just I prepared for two days..
the written test result announced througe mail...
By God grace I cleared written test.. On sunday I had interview in same college. I had very good time with interviewer.. I am basically from ECE., in my point of view you have to clear the written test., thats enough to get place. little bit knowledge in your technical skills and basics of C, C++;
My interview is
int: hello senthilkumar how are you
me: fine sir
int: wher are u from
me: svks
int : its famous for crackers
me :yes sir
int : tell me abt yr self
me: i prepared little bit
int : favouriate sub
me microprocessor
int: wat is interrupt
me: ans
int : diff. b/w. microprocessor and microcontroller
me. ans
int: in C what is the diff. b/w. structure and union
me : i made clear
int : abt yr project
me: i explained with confidence
int : why CTS
me: ans.
int : any history of arrear
me: yes one in engineering mechanics
int : why in one subj
me: answered
int : what s yr strength and weekness
me: strength is young and energetic, self confidence and weekness is poor hand writting
int : wat step u took to avoid yr weekness
me: i explained little bit about diary writing (through this i improve my written skills)
int: why u choose ECE in plus 2
me : explained ..
int: ok senthil i wil select you from this round
me : thank u thanks lot sir
I reached the cloud at that time.. i cant speak a word itself.. after that the company had certificate verification.. i show all my certificates to the merittrac people they said to me ... they will intimate with in two days... i am waiting for my final confirmation... dont loose your confidence at any time.. this is my 25th company.. if i am selected means c u all in CTS .. I read regularly placement papers regarding with company from this site..
This site helps lot too...
(Paper Submitted By : Priya)
TCS PATTERN - 21 FEB 2008
TCS PATTERN - 21 FEB 2008
- By Chetana S
- Published 5/03/2008
- 2008 PAPERS
- Rating:




Unrated
Chetana S
This is Chetana, owner of the World's Biggest Job Group "CHETANA-JOBS".
View all articles by Chetana SThe test was online. There were 3 sections:
i)English
ii)Aptitude & D.I.
iii)Critical Reasoning
ENGLISH PART
First there were 10 synonyms and then 10 antonyms. The words were relatively easier than previous year's papers coz i could do about 14 of the 20 questions without any practice. A vocab of 500-700 words from GRE Barrons and the sample papers from TCS are enough to take you through. There were words like omniscience, disassuage and a few more which had seldom previoulsy come.
http://www.ChetanaS.org
Then there was the paragraph completion section. There is no need to read the whole paragraph. Just look at the questions and then read the neighbouring two lines of the line which has been asked to fill up. There were 2 paragraphs with 5 questions from each one of them.
There was 1 min. alloted for each of the 30 questions. The time limit is more than enough in the english section.
APTITUDE & D.I.
Practice of previous years papers are enough. More than 75% questions were common. Data may or may not be changed. There were a few new questions. A graph was given and one had to find out the equation of it. In my case it was y=cos(x). There were 32 questions in aptitude section with 1min. for each question.
In the D.I. section there were 3 questions from a Venn Diagram and 3 more from a pie chart. There was 1 min. for each of the 6 questions.
It is child's play for anyone in this section given u have practiced previous years papers. The only thing to keep in mind is the time management issue.
CRITICAL REASONING
There were 3 paragraphs with 4 questions from each one of them. Total time was 20 mins.
If one can practice the 25 analytical reasoning paragraphs from GRE Barrons then he/she is bound to find common questions with even the order not being changed. If that is hard for someone, then practice the previous years TCS papers only and then also u will find some common passages. As the test was online and everyone didn't get the same passages I am giving a list of a few passages that came:
1.Passage on Democrats
2.Passage on Hospital workers
3.Passage on spelunkar and caves
4.Passage on Ashland and Liverpool
5.Passage on Shortest route between bridge, tunnel and toll free road
6.Passage on Hotel Miramar-East Wing and West Wing
7.Passage on Rectangular Table with george,helga,frank,carol,etc. Basically positional problem
If u practice the above 7 passages u r bound to get atleast 2 passages common in the test out of the 3 passages.
There were a total of 80 qestions in the test with a time limit of about 98 mins.
There is no sectional cut -off netiher any upper cut-off, so answer as many as u can.
Author: NAAG
TCS paper on feb 27-2008
TCS PAPER & INTERVIEW - 27 FEB 2008
- By Chetana S
- Published 5/03/2008
- 2008 PAPERS
- Rating: Unrated
Chetana S
This is Chetana, owner of the World's Biggest Job Group "CHETANA-JOBS".
View all articles by Chetana SThis is Suvabrata Chatterjee from Gurunanak Institute Of Technology in Applied Electronics and Instrumentation. We had TCS on 27th feb 2008 in our campus
The entire selection was mainly done in two section
1> APTITUDE
2> HR/TECHNICAL
APTITUDE:
Aptitude mainly consist of 3 section
a) VERBAL (english)
some general SYNONYMS+ANTONYMS see the last year papers well I remember few
ATTENUATE
PLAINTATIVE
ONUS
MUDANE
then it had some paragraph which u need to read and "fill in the blank"
b) QUANTITIVE
this is the section which u need to concentrate more becoz its easy to get hold of
1 series sums
2 longitude latitude sums My flight takes of at 2am from a place at 18N 10E and landed 10 Hrs later at a place with coordinates 36N70W. What is the local time when my plane landed?
6:00 am b) 6:40am c) 7:40 d) 7:00 e) 8:00
3)The size of the bucket is N kb. The bucket fills at the rate of 0.1 kb per millisecond. A programmer sends a program to receiver. There it waits for 10 milliseconds. And response will be back to programmer in 20 milliseconds. How much time the program takes to get a response back to the programmer, after it is sent?
4)Three companies are working independently and receiving the savings 20%, 30%, 40%. If the companies work combinely, what will be their net savings?
5)If G(0) = -1 G(1)= 1 and G(N)=G(N-1) - G(N-2) then what is the value of G(6)?
6)One circular array is given(means memory allocation tales place in circular fashion) diamension(9X7) and sarting add. is 3000,What is the address od (2,3)........
7)What is the highest prime number that can be stored in a 9-bit microprocessor?
8)The size of a program is N. And the memory occupied by the program is given by M = square root of 100N. If the size of the program is increased by 1% then how much memory now occupied ?
9)In madras, temperature at noon varies according to -t^2/2 + 8t+3, where t is elapsed time.Find how much temperature more or less in 4pm to 9pm
10)Find the fourth row, having the bit pattern as an integer in an 8-bit computer, and express the answer in its decimal value.
A 0 0 0 0 1 1 1 1
B 0 0 1 1 0 0 1 1
C 0 1 0 1 0 1 0 1
(AU(B-C)) ?
this is what I remember ...go through last year papers u will get "common"
HR/TECHNICAL
my hr and technical interview was bit long 45 min ts us take interviewer 1 as
MR. A and second as MR.B
me=may I come in sir?
MR. A =Yes come in
me=good evening sir
MR. A =have a seat
me=thank u sir
MR. A =so u r Mr Suvabrata Chatterjee right?
me=Yes sir
MR. A =so tell me about ur good qualities
me=explained...then I used the "dynamic" as one of them
MR. A =DYNAMIC ...what is dynamic
me: explained it
MR. A =so what r ur bad qualities?
me=Sir I happened to believe lot of people which might end up in problems so I am looking forward to fix it
MR. A= ya I see, so u r an instrumentation student? Right?
me=yes sir.
MR. A=So why are u coming to IT sectors?
me=well sir I am an instrumentation engg so I have a graet knowledge in MICROPROCESSOR so with this knowledge I can serve IT sector better...most software run on a desired hard ware so with the good knowledge I can make things better
MR. A=ok....then tell me why should TCS hire u??
me=well as I said before I have a great knowledge in MICROPROCESSOR and good knowledge in PROGRAMMING moreover I am interested in REVERSE ENGINEERING(always put some unique thing)
MR. A=REVERSE ENGINEERING?? what is that?
me=well this is a method by which we can reverse the code ie the EXE file can be broken down to make the CODE visible
MR. A=how can it advantageous?
me=well I a group of programmer get detached from company or doesnt work anymore...with this method I can reverse to create the entire code he has generated in his mind it might be a useful for this cases...
MR. A=is there any other way to get help?
me==might be but it seems to be more efficient...rather less resource consuming..
MR. A=good but..it...
me=well this can be considered as a HACKING but in an ETHICAL way
MR. A=so what r the basics u need to make a software rather how u r going to serve us.
me= firstly we need a good concept in programming...we need to make the "TIME COMPLEXITY" less and also the "SPACE COMPLEXITY" moreover we need to make the benchmarking for each test then add up the module to make the complete stuff...rather we also need to make ANTI-TAMPERING protection
MR. A=well well... http://www.ChetanaS.org
MR. B=well good...now what programming u know
me= sir I am confident in C language
MR. B= any other like C++ etc
me=no sir we dont have it in Sylbs but I am looking forward to it
MR. B=what the need of these other language
me=well its mostly PLATFORM INDEPENDENT eg JAVA...it might run in all system like LINUX SOLARIS WINDOWS etc
MR. B= can u draw a ANALOG and a DIGITAL signal
me= I did one is SINE wave another is PULSE
MR. B=which one is better?
me=DIGITAL signal
MR. B=why?
me=sir its lossless transmission
MR. B=what is lossless transmission
me=when we transmit any data it might be voice signal also...we transmit via analog or digital signal
MR. B=so what do u mean by AMPLITUDE MODULATION and FREQUENCY modulation
me=well when we transmitt any data it might be voice signal also we need a CARRIER rather putting it in laymans language what we get from from the microphones output is much less rather we cannot transmitt using induction coil generating electromagnetic waves
so we need a high source called carrier which is punched with the message signal... now if the AMPLITUDE of the carrier gets changed with the message signal it called AMPLITUDE MODULATION and if the frequency gets changed its called FREQUECY MODULATION
MR. B=which one do u think is better?
me=it depends on where we are transmitting.....if we need to transmitt a long dist we need amplitude modulation but for crystality and clarity we need FREQUENCY modulation...
MR. B=well do u use MOBILE?
me=yes sir I do...
MR. B=so what the principle out there in MOBILE transmission?
me=MOBILE uses a MICROWAVE transmitting device and receiving device..
MR. B=well explain a bit...u had MOBILE COMMUNICATION right?
Me= no sir not yet I guess its in 7 th semester...well mobile uses a set of protocols like a GENRAL web page has... so...( he stopped me) MR.B=what is a microproceesor
me=explained
MR. B=what is interrupt?
me=explained
MR. B=what is flipflop?
me=one bit memory device in electronics concept multivibrator
MR. B=good..what is RS/KJ MASTER slave flip flop
me=explained all
MR. B=okay which part of C ur mostly dealing with?(//this is the tric part always say the strong area//)
me=ARRAY
MR. B=well what is an ARRAY
me=explined
MR. B=what is the limitation of array
me=explained
MR. B=so how do we overcome it
me=LINK LIST
me=explain the advantages of link list too
MR. B=can u reverse link list
me=explained
MR. B=OKAY...Write a program in c which will delete itself on execution..
me==(thinking a bit...although it was the weirdest question I have ever been asked) well there is a SYSTEM function I know over there rather it can ACTIVATE the dos command behind C. more clearly it link the C with DOS COMMAND PROMPT... so what if we write the DOS parameter over there I might delete the file we are executing....
MR. B=...to MR.A anthing else...
MR. A= okay mr Suvabrata nice talking to u ..
me=THANK U SIR....
So this was all bout my experience... remember one thing always be unique in urself like I used REVERSE ENGINEERING etc find other topics
Author: Naag