Question Bank
Question Bank
Question Bank
3)Dhananjay N. Khare.(SATYAM)
Technical:
1>what is your area of interest in technical fields?
2>on which factors does height of antenna depend?
3>what are different frequency ranges?
4>why cant we hear electricity despite of having freq in audible range (50
Hz)?
5>how many satellites are needed to cover the whole earth area?
6>explain conceptually satellite telecommunication.
7>different types of ADCs.
8>some questions in C,Assembly.
Personal:
1>what are the extra curricular activities you are participating in?
2>do you like taking initiatives in social activities?
3>are you ready to work in applications in which you dont have interest?
4>tell us why you opted for e&tc?
5>where do you rate yourself in the technical ranking (0-10)?
6>are you confident about your grasping ability?
7>will you prefer to work as a group leader?
4)Hemangi Garad.(SATYAM)
Technical :
1>interfacing of 8259 & 8086
2>what are compilers, assemblers, loaders & linkers ?
3>how many tracks & sectors does a 1.44 floppy disk have ?
4>if the same C program was compiled (using the same compiler)on an
INTEL system & on a SUN system & the OBJ files are interchanged will
they run on the other system ?
5>which are the different types of data structures?
Personal :
1>Why werent you selected in wipro ?
2>On the scale of 1-10 how do you rate your technical knowledge ?
3> Why should we select you?
Story for GD :
Once a young man, his girlfriend, his friend , an old man & a sailor
were sailing in a ship when suddenly a storm broke out & the ship capsized.
They had only 2 life boats. In 1 boat the young man, his friend & the old
man were seated & in the other boat was occupied by the girl & the sailor.
The first boat reached the shore safely but the other boat strayed in the
ocean. The girl saw her boyfriend near the shore but he was helpless. She
asked the sailor to take her to the shore. The sailor agreed , but said that he
would oblige only if she agreed to sleep with him.
The next morning they both reached the shore safely. The girl went to
her boyfriend but he didnt give her any recognition & refused to have
anything to do with her. Then she went to the boys friend & told him the
whole story. He sympathised with her & said that such things happen in life.
Questions :
37 Who showed the maximum amount of responsibility & commitment ?
38 Who should be applauded ?
Personal.
50 Why didnt you shave today?
51 Why should Satyam hire you?
52 Why didnt you get selected for Wipro? Was there a flaw in their
Technical
1. name any one type of ADC.
2. What have you studied in communications ?
55 draw the ckt diagram of diode detector?
56 Explain the architecture of 8085 MuP.
57 What is Max Power transfer theorem?
58 Write program in assembly language to add two numbers.
59 What is the difference between
printf(%d,++a) and printf(%d,a++)
personal:
60 You are wearing gaberdines, are they formal trousers?
61 Why should satyam take you?
62 Give us your family background.
63 Tell us why you want to get it software?
Is it just because there are jobs in this field?
7) Anuradha Sreenivasan (WIPRO)
Technical:
64 Questions on data structures.
65 Circular queues : creation and its applications
66 Linked lists : singly linked list and doubly linked list : difference,
quick sort
73 Questions on C++
74 difference between C and C++
75 Explain Polymorphism, data encapsulation, data hiding
,inheritance etc.
76 What are classes in C++
77 What is OOP
Personal :
78 why did you join PICT ?
79 something about yourself .
80 if you were offered a job with a better company than ours with a better
Personal:
107
Academics- marks & awards
108
Family background
109
Are you ready to go out of Pune for some project?
110 Any special field in which you want to work?
111 Why not COEP?
112 Like to work individually or in a group?
113 Two puzzles were given?
10) Krishna Ramachandran ( Wipro )
Technical questions :
1 > How is a C program converted into a .exe file
2 > Write a program to insert a node in a doubly linked list in ascending
order.
3 > How will you decide if a number is a power of 2.
4 > What is the difference between a union and a structure
5 > Implementation details about unions.
Union tag{
Int no;
Float f;
} a;
a.f = 3.5;
int main() { printf(%d,a.no); }
explain what is printed
6 > What is a static function
7 > Tranverse a tree in preorder fashion
8 > Questions on the all T.E. / B.E. project.
9 > Write a assembly program to divide a number by 9.
10 > Explain shared variables in Linux
11 > what is a fn. Pntr. And give the uses of fn pntrs.
Personal :
1 > Tell me about yourself
2 > If you have any problems with your project head , how will u sort it out ?
3 > What are you expectations from the company
4 > Why Wipro ?
5 > What is your opinion on Testing and maintenance ?
given no.
115 What are the diff. sorting methods and give their space and time
complexities.
116 Given a particular list of data, based on what criteria will you decide the
sorting method to be used ?
117 Given a tree, write the infix, postfix and prefix traversal of the tree.
118 What is an AVL tree? How is it created?
119 Implement the diff. Flip Flops using gates.
120
Write a recursive and non-recursive procedure for finding factorial of
a no.
121
What is a chopper?
122
What is a DLL?
123
What are the diff. groups of intructions in assembly lang prog.
124
What are pointers to pointers and what are their practical
applications?
Personal :
125
How will you manage to stay in a new city away from home?
126
When are you planning to get married?
127
If you like reading, what do you read and why?
128
Will you be willing to do maintenance work and for how long?
129
If you find that your project partner is not doing any work but getting
all the credit, how will you deal with the situation?
130
Arent you interested in doing your MS?
12)Vishal Singh(Infosys)
131
132
137
138
139
140
141
142
143
144
145
146
TE COBOL project.
What was it?
What files were used? Why?
How could you improve it?
Which is better COBOL or C for your project?
How long did you work on it?
How did you go about doing it (Spec.,Implem. Etc)
What are pointers?
What is the difference in the sizes of float * and int * ?
Write Fibonacci series program?
Implement the same w/o arrays.
Write a[0] in terms of pointers
What is your favourite subject?
What is segmentation?
Major Diff. between 8085 and 8086
What is IVT?
Can you do w/o interrupts ? How?
Personal.
147
148
Wipro.
149
150
151
152
153
Personal
165
Tell us about yourself.
166
Tell us about your family.
15) AMOD SAMNERKAR (WIPRO & COGNIZANT)
WIPROTech 1:
1.Write a C function to add a node in a linked list maintaining the ascending
order of the list.
2.What is exception handling in c++?
3.Uses of different data structures.
4.O/p of following prog.
Main()
{
unsigned int I = -1;
if(I < 0)
printf(Hi);
else
printf(Bye);
}
5. Difference between macro and a function.
167
Write a macro to get square of a number.
168
Tell me something about your T.E.Project.
Tech-2.
1.What are your favorite subjects?
2.What are kinds of flip flops?
169
Which one edge triggered / level triggered flip flop is better?
170
What are different kinds of power supplies ?
171
What is OLE?
Personal:
1. Tell me something about yourself.
2. Are you planning for higher studies?
3. What is your dream job?
172
Are you ready to leave Pune?
173
If VERITAS offers you a job with more salary than we pay what will
you do?
174
Technical :180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
Write a simple C program.
202
Write a sorting routine in C.
203
Write a structure for an address.
204
Write a program to generate a linked list ( in C ) ?
205
Not a bad idea to know a little M1 , M2 .
206
Whats the configuration of Ur PC ?
207
Whats the problem with it ?
208
How do I insert nodes into and delete from a linked list?
209
What is the difference between Java and JavaScript ?
210
What is better to use VBScript or JavaScript . why?
211Which browser supports what?
33. WILL U WORK IN COBOL ? ( SAY YES !!! J )
Technical Interview :
256
What are different types of data structures ?
257
How will you define a linked list in C ?
258
What is dynamic allocation of memory ?
259
How will you define a 2-d array dynamically ?
260
What are different types of sorts ?
Personal Interview :
261
Introduce yourself.
262
Why do you want to join our company ?
263
What are your favorite subjects ?
264
Are you interested in studying abroad ?
265
Give 3 reasons why we should take you in our company ?
266
You say that our company is progressing at a very fast pace thats why
you want to join it. But tomorrow if you come to know that we are having
heavy losses still would you want to join our company ?
267
Are you ready to work outside Pune ?
268
Do you have any questions about Cognizant ?
269
270
271
272
273
274
275
276
277
What is a pointer ?
278
Which are different data structors ,tell in brief about each one .
279
280
What is a tree ?
281
282
283
What is a turing machine ? What is the use ? what are the advantages
?
284
285
286
287
288
289
Personal Questions :
290
291
292
293
294
295
Technical Qs :
(Qs on project )
297
What is CORBA ?
298
Why are you using JAVA?
299
What are OOP concepts ?
(general technical)
300
What is virtual mem ?Its Advantages? Is there a limit to virtual mem?
301
What is paging, and page fault?
302
How do you determine size of a structure?(hint : alignment, buffering)
303
What do you mean when you say 32-bit processor ?
304
What do you know about Interrupts in 8086? Any serial
communication intrs?
Personal Qs
Tell us about ur self.
Tell us about ur work in Impetus & Concepts .
Can you tell us about any difficult situation which you have
overcome?
308
What is the probability of you joining CISCO?
309
What are your plans about future studies?
310
What are your future plans?
305
306
307
BE II (204)
Company: CISCO(I)L
Technical:
311 What do you mean by real time systems ? give eg
312
Why is java a machine independent language
313
What is multitasking,multithreading
314
Draw 8085 block diagram
315
What is transistor
316
Explain the concept of paging, cache , virtual memory
317
What is scheduler in os
318
Synchronous and asynchronous data transfer
319
Time diagrams for the above (q 8)
320
Some questions on cobol
321
Which language os closer to os c or cobol ?
322
Explain your project in detail
323
Give examples of multitasking systems
324
Preemptive and postemptive scheduler
325
Number of address lines and data lines in 8086
326
What are different hashing functions
327
What is the use of hashing functions
328
Alog for binary search and complexity.
329
What is sizeof
330
Find sizeof the foll ( some complex structure was given)
Personal:
331
Please introduce yourself
332
Which is your dream job
333
If suppose xyz company offers to pay you more, which company will
you prefer. Why
334
Tell me your drawbacks and plus points
335
Are you planning to write GRE
336
What are your expectations from your job.
337
Place of work ?
338
Hobbies
339
Would you like to do testing and debugging for few months ? how
about marketing
340
is it ok with your parents if you get a job outside Pune
341
would you like to pursue higher education
Technical:
1.
342
343
344
345
346
Personal:
1.
2.
3.
4.
Introduce yourself.
Why have you chosen Wipro?
Are you ready to work outside of Pune?
Are you ready to conduct debugging of software initially?
4. Planning to give GRE?
Personal Q:
347
2.
3.
4.
5.
6.
1.Introduce urself.
Strengths and Weaknesses
Plans of higher studies
Thoughts on working in bangalore.
Would u leave this company for a dream job
Would u like to work in testing and debugging.
Questions on pointers in C
Explain static variables?
Link list (doubly), node deletion and creation.
How to interact with 8253/54 to count time for
5.
6.
7.
8.
digital clock.
Question on data structures
Question on binary trees?
Difference between 8085 and 8086
How to capture interrupt?
Personal:
1. tell about yourself
2. family background
3. your interests in computer
field
4. why you want to join wipro
5. what about higher studies
6. what u do in free time
7. Preferences for working
areas
Harshal Haridas (WIPRO AND T.C.S)
348 what is the difference between lex and yacc ?
349 given a linked list ,how will u remove the last 3 elements?
350 How will u find out whether a processor is 32 bit or 64 bit using a c
program?
351 What are the different programming languages?
352 How does a prolog differ from lisp?
353 What are intricacies involved in a COBOL program?
354 Details about the project ?
355 What is E-commerce ?
356 What is the scope of E-commerce in india?
357 Where is it implemented ?
358 What r the net securities that shall be reqired for E-commerce ?
359 Explain in detail the 386 architecture ?
Personal
What r ur hobbies?
Why do u want to join wipro and tcs?
Personal background ?
What is ur vision in life?
Personal
367
What are your ambitions in life?
368
Describe yourself.
369
Family Background.
370
Why do you want to join Wipro?
371
Would you like to work as group leader or group member?
Sagar Dharia (WIPRO)
Technical:
1. Time & space complexities of different sorting methods?
2. How will you use command line arguments?
372
What are advantages & disadvantages of Recursion?
373
Where is 8253/4 used?
374
What are activation records?
375
How are parameters passed to function(In what order)?
376
Explain structure of MS-DOS device driver?
Personal:
1. Describe yourself.
2. What is your family background?
Technical :
Which script should you use for ASP ( Javascipt or VBscript)?
What do you mean by static variable and static function?
Why extern, auto is used in C?
Which part of data segment a local variable, a global variable, a parameter, a
constant (string may be) are stored?
Sameer Kher
377
378
379
380
Personal
381
Have you given GRE? What was your score?
382
Would your parents be willing to let you stay out of Pune for extended
periods of time?
Khyati Mehta
383
What is the difference between Dos and Windows
Hemant Murthy
390
What are the different parts of an Operating System
391
What are the different parts of a Compiler
392
Explain Distributed operating systems
393
Would you like to work in Technology Solutions
394
Where did you learn C / C ++
395
What operating systems are you familiar with
Personal Questions
396
You have taken the GRE examination. Do you plan to go abroad for
further study ?
397
Have you applied for any universities in the US of A?
398
Do you prefer working in Pune or away from Pune?
399
If Infosys gave you a chance to work in Blore and we gave you
Hyderabad, Would you join Infosys or Wipro ? (I prefered to work in
Blore and that is why they (Wipro) asked me this question ?
What is your dream job (Dont name any company ).
Convince them through your answers how much importance
you place on dead
400
Himanshu Joshi.
401
402
403
404
405
406
407
408
409
410
Personal
411Would you leave your parents and stay in Bangalore (tell them its
not a big deal).
412
Tell us about yourself.
413
If INFOSYS were to give you more pay, would you go and join
them ? (No matter how holier than thou you sound , tell him you
would never do such a thing as you have a moral obligation towards
WIPRO , assuming you got selected ).
4. Questions on linked lists.
5. Problems like the towers of hanoi.
6. Questions on BE project.
7. Questions on pointers in C upto two levels.
PERSONAL
414
415
416
417
418
419
RAKESH R NAIR
WIPRO ENTERPRISE SOLUTIONS
TECHNICAL
1. What field (E&TC or Comps) should the interview questions be based
on???
420 What is ur background of Appication Software???
421 Data Structures: To what degree of complexity have u coded in this
field???
422 What is Threading in binary Search trees??? Write an algo
423 Difference between sets and unions.
424 Declare a Doubly Linked List with certain fields
425 How can u traverse a list in the reverse order (singly linked list
only)
426 algo for reversing a linked list.
427 What is Recursion??? Adv and Disadv.. Explain Towers of Hanoi
428 Time Complexity in searching, sorting etc.. (O(n) notation
explain..)
429 Solve a couple of riddles and give the output of some subroutines in
C
Hardware
What is ur project (Lan Telephony) . Explain Does it bridge a gap between E&Tc and
Comps How???