ProdEx Technologies (Feb 6 2004)
1) Group Interview - (Almost like HR interview) - 15 persons in a group. (total 180 students)
* Tell me about urself
* Tell abt the company
* How u define success
* Aim in ur life
* Project
* similar type of questions
2) All questions based on C++ - 20 questions in 30 mins (not very difficult) (total 72 students)
3) HR Interview (total 15 students)
4) Psychometry Test (personality test) (total 7 students)
Some Questions
1) two questions based on aliasing concept in c++ ( swap)
2) few questions based on Inheritance
3) base constructors, derived constructors,
4) some tricky questions using while, for and if loops
5) some oops concepts - polymorphism( overloading)
6) Find output
Interview.
selection procedure in s.r.m :
1.written test(in s.r.m they asked 20 C++ questions..it was very easy
it seems...and 15 was the cut off..in c++ questions were from the oops
concepts-multiple choice type...)
2.g.d & g.i(the second round was the group discussion and they also
had the group interview and in this the frequently asked h.r questions were
asked)
3.interview(this is the final interview....it will consist of
technical questions)
selection procedure in venkateshwara :
guys in venkateshwara the number of students taking up the test was
less..they had conducted a online test and it consisted of only aptitude
questions and it was ver easy...my friend said that if we have seen thro
R.S.Agarwal book once it is more than enough.....
vitians...this was the notice that was displayed in venkateshwara
engineering college for the students who were taking up the written test of
Prodex tech...but finally only aptitude test was conducted....
M/s. Prodex Technologies Ltd., Chennai 16.02.2004 CSE, IT, ECE, EEE & MCA
with 75% and above aggregate and All Cleared in FIRST ATTEMPT Written Test
in C++, VC++, MFC and Short listed will have Technical Interviews. Good
Communication skills added advantage
Prodex Paper
1.some function ....wat is the output?
1.error message(other function shud return some
values)
the 20th ques based on the above..but returns, given
the value is
3,4......chk the value.
2.x=3
function(++x)...value 4 is passed to the function
3.x=3
function(x++)...value 3 is passed to the function
4.some ques on file opening...
if(name)..(exixts)
{
...
}
the file can be opened
5.if(!name)...(not exixts)
{
...
}
the file cant b opened
6.a for loop ques
does not print array...condition not satisfied
a[10]={10,14,18,20}
7.another for loop ques
prints correctly...condition satisfied
8.main()
{
function(x,y);
}
vid function(int *x,int *y)
{
.....
}
the function does not work.
9.A d();
a j;
it works well