Virtusa
I Round :- Written Test ( conducted by METRIC Track)415 are attended. It is having 5 phases of paper's .
(1) Verbal Ability --- synonyms,antonyms, articles, wrong sentense's, paragraph's.
(2) Apptitude Ability --- appitude questions from r.s.agarwal (regular)
(3) Mental Ability --- (very very very easy dont get confused)
(4) Technical Ability --- questions from C and datastructures (.SOLVE simple questions first which may be present at the last.. be careful)
(5) Reading Ability --- they give a 3 pages document to read and understand and they take back the paers and give us a question paper of abt 10 questions (read only once and very carefully.. remember the key words and main theme of the document )
II Round :- Group Discussion (conducted by the HR Team)short listed 62
The topics given are very very casual. they just want to test whether every one is having their own idea and are we able to talk when we are given a chance . After the announcement of the short listed candidates from written test all of us are divided into groups each containing 10 members.
The GD topics are like:
cell phone band
wat
Politics,...etc
III Round :- Technical interview (short listed 47)
This is a bit tough round . the session lasted for about 45minut to 1 hour. be confident on the subjects you are interested. about my all projects first...
I was asked to write the following programs and explain the logic:
Check whether the given number or a string is palindrome or not.
To print the number given in an integer form to the same in words like one for 1, two for 2 and so on
Program to print the angle between the pointers in the wall clock when time is taken as input.
Can trees be implemented using arrays?
Some programs were given and I am asked for output.
when is the queue empty and when is it full.
I was asked two puzzles
About the inheritance in C++
Some questions on electronics like what is meant by diode, transistor, resistor, capacitor.
Why are you interested in s/w?
IV Round :- HR interview.
This is the Easiest Round we have to face. But be careful. Here the Key's to Success are CONFIDENT and COMMUNICATION SKILLS. Be confident of wat u say. the questions are regular like.....
The first question is tell me about yourself
Why do you need a job?
What is your place in the class?
Did you selected or attended in any company?
why sould we appoint u
y virtusa
happiest moment in ur life.
interests... hobbies...
dont be over confident. Be casual all the time. I am sorry that I have not remembered the questions in written test.
The results were announced around 6.00pm and I felt tensed but at last I selected .totally 18 students r selected

In how many different ways,
In how many different ways, a rectangle can be cut into 4 identical parts.
Using the numbers 1, 2, 25, 50, 75, 100 Exactly one time, give an expression which will give the answer as 383.
Volume of sphere is (PI)*(Theta) Cubic-meters and Surface area is (PI)*(Epslon) Square-meters And both are digit integer numbers. What is the value of radius?
In the figure given below, Replace '?' mark by any operator (+, -, *, /, =) and if we leave as it is, numbers are considered together and forms either 2 or 3 digit numer. Generate an expression using some symbols.
------------------------
| ? | 2 | ? | 3 |
------------------------
| 2 | | ? |
------- ------
| ? | | 1 |
------------------------
| 6 | ? | 1 | ? |
------------------------
Analise the Programe
main()
{
int x=1,y=1;
while( (x > 0) && (y > 0) )
{
printf("%16d%16d",x,y);
x += y;
y += x;
}
}
Start from a random number, generate a sequence such that if number is odd multiply it 3 and add 1. If number is even, divide the number by 2. This Sequence will always cyclic with 4, 2, 1. In this sequesce, find the maximum power of 2 generaged in the sequence and print only the power, not the sequence.
Start with a random 2 digit number, The series is generated by multiplying the number by 2 and placing the last 2 digits as the next number. Series continues until one of the element repeats.
write a function maxsubstring(str,alpha,theta) str is the source string and have to return maximum sub string which starts with alpha and ends with theta.
INTERVIEW
what will this line will do? if it is legal? B -= (B < 0) * 2 * B;
what does this function do??
int f(int p)
{
int i = 0, t = 1, s = 1;
while( s <= p)
{
i++;
t += 2;
s += s;
}
return i;
}
Explain What is divide and conuer method? Travelling salse man problem What is greedy method
How Neural Networks and A.I are related.
Tell me something about your self
Where will you see your self after 5 years
You want to shift your career to management side or be in technical side?
What you do in free time
Interests other than studies
How do you rate your self in 'C' Programming
Post new comment