Subscribe

RSS Feed (xml)

Powered By

Skin Design:
Free Blogger Skins

Powered by Blogger


Monday 21 July 2008

Technical - C & C++ Paper - 9

Sample Test Paper

C test

if(fp == fopen(\"dfas\",\"r\") = = NULL), what is the value of fp
a. NULL
b. 0
c. 1
d. 0 or 1

#define sqr(x) x*x, what is value of j if j == 2 * sqr(3 + 4)


#define FILENAME(extension) test_##extension, how will it print FILENAME(back)
a. test_back
b. test_#back
c. test_##back
d. ??


char *p == \"hello world\"
p[0] == \,H\,, what will be printf(\"%s\", p);
a. Hello world
b. hello world
c. H
d. compile error


int fun(), how do u define pointer to this function ??


what is ment by int (* xyz)[13]


what is true from
a. base call ferernece is compatible with child class
b. child class reference is compatible with base class
c. no reference to class
d. ??


class b
{
}
class a
{
friend class b
}
then what is ture
a. a can access all protected and public members in b
b. b can access all protected and public members in a
c. a can access all members of a
d. b can access all members of b

What is the output
#include
main()
{
int n=0;
int i;
i=2;
switch(1)
{
case 0:do{
case 1:n++;
case 2:n++;
}
while(--i>0);
}
printf(\"n==%d\",n);
}

a. compile error
b. 4
c. 1
d. 0

Mathematics


Two liquids A : B in ratio 7:5 and now 24 gallons drain out and b is added the ratio becomes 5:7 what is containr capacity ? 30, 48 , 84, none

man has rope of length 660 mtr to fence a area , what is the max area he can fence ?


Son is about to celebrate 10th birthday. after 11 years his age will be half the average of his parents. his mother is 17 years older to him. what is the age of the father.

DI question where hotels project are given and no of rooms in each hotels , investment , project yr . and company name
were asked to find min cost per room is for which hotel , which avg cost per room etc.

Avg of 6 no is 8 what 7 th no shud be added to make avg 10;


difference of cube of a no and its square is a perfect square , what is the no. -> 5


diff of three consecutive nos square and the nos is 214; find the nos :

Interview Technical


Write a minimal C++ program .


(a) Talk about yourself
(b) What are your strengths.
(c) Where do you think you have to improve.
(d) Where do you see yourself after 5 years


main()
{
int i==2;
int a==4;
if((i+==3)>a)
{
printf( \" TRUE \");
}
else
{
printf(\"FALSE \");
}
}

What is the output of the program ..
Ans ) TRUE , coz i+==3 becomes incremented and i becomes 5 . So i is greater than a


What is an OS ?


What is a Data Structure ?


It is a an abstract data type where some operations can be defined and performed on the data. It makes the task of a programmer easy coz it has all the set of data and operations at a particular place

What is OOP.

What is Object Oriented Analysis and design.

How do u communicate between object and class.

What is the role Software in the real life in current scenario.

What is object and how it is similar to real life entity

What is extranet, intranet, internet

HR interview..

Ok, what do your friends call u???

how many friends do u have???

Do u talk with girls???

How many girl friends do u have???

whatz the difference of a girlfriend from a girl who is a friend???

what do u do on sundays???

Do u like hyderabad???

whatz so special about it???

what places have u got to visit in hyd...???

how many of them have u gone to???

Zensar Paper Technical - C & C++ Paper - 10

Sample Test Paper

C test

if(fp == fopen(\"dfas\",\"r\") = = NULL), what is the value of fp
a. NULL
b. 0
c. 1
d. 0 or 1

#define sqr(x) x*x, what is value of j if j == 2 * sqr(3 + 4)


#define FILENAME(extension) test_##extension, how will it print FILENAME(back)
a. test_back
b. test_#back
c. test_##back
d. ??


char *p == \"hello world\"
p[0] == \,H\,, what will be printf(\"%s\", p);
a. Hello world
b. hello world
c. H
d. compile error


int fun(), how do u define pointer to this function ??


what is ment by int (* xyz)[13]


what is true from
a. base call ferernece is compatible with child class
b. child class reference is compatible with base class
c. no reference to class
d. ??


class b
{
}
class a
{
friend class b
}
then what is ture
a. a can access all protected and public members in b
b. b can access all protected and public members in a
c. a can access all members of a
d. b can access all members of b

What is the output
#include
main()
{
int n=0;
int i;
i=2;
switch(1)
{
case 0:do{
case 1:n++;
case 2:n++;
}
while(--i>0);
}
printf(\"n==%d\",n);
}

a. compile error
b. 4
c. 1
d. 0

Mathematics


Two liquids A : B in ratio 7:5 and now 24 gallons drain out and b is added the ratio becomes 5:7 what is containr capacity ? 30, 48 , 84, none

man has rope of length 660 mtr to fence a area , what is the max area he can fence ?


Son is about to celebrate 10th birthday. after 11 years his age will be half the average of his parents. his mother is 17 years older to him. what is the age of the father.

DI question where hotels project are given and no of rooms in each hotels , investment , project yr . and company name
were asked to find min cost per room is for which hotel , which avg cost per room etc.

Avg of 6 no is 8 what 7 th no shud be added to make avg 10;


difference of cube of a no and its square is a perfect square , what is the no. -> 5


diff of three consecutive nos square and the nos is 214; find the nos :

Interview Technical


Write a minimal C++ program .


(a) Talk about yourself
(b) What are your strengths.
(c) Where do you think you have to improve.
(d) Where do you see yourself after 5 years


main()
{
int i==2;
int a==4;
if((i+==3)>a)
{
printf( \" TRUE \");
}
else
{
printf(\"FALSE \");
}
}

What is the output of the program ..
Ans ) TRUE , coz i+==3 becomes incremented and i becomes 5 . So i is greater than a


What is an OS ?


What is a Data Structure ?


It is a an abstract data type where some operations can be defined and performed on the data. It makes the task of a programmer easy coz it has all the set of data and operations at a particular place

What is OOP.

What is Object Oriented Analysis and design.

How do u communicate between object and class.

What is the role Software in the real life in current scenario.

What is object and how it is similar to real life entity

What is extranet, intranet, internet

HR interview..

Ok, what do your friends call u???

how many friends do u have???

Do u talk with girls???

How many girl friends do u have???

whatz the difference of a girlfriend from a girl who is a friend???

what do u do on sundays???

Do u like hyderabad???

whatz so special about it???

what places have u got to visit in hyd...???

how many of them have u gone to???

General - other JIMS,ROHINI,DELHI - 23 March 2007 Paper - 6

ENSAR PAPER ON 23rd MARCH AT DELHI

Hi dear friends,

Zensar is Pune based conpany with its one branch in Hyderabad also. Its training centre is in Pune itself. Zensar is among top 100 Indian IT Companies. It belongs to RPG Group which holds 60% of its shares.

SELECTION PROCEDURE:-
1.An Aptitute test .(HAD 4 SECTIONS-ENGLISH,MATHS,APTI(logical reasoning,etc) and technical(C,DBMS,etc))
2.Tech interview (ques like tell me about urself n Based on project,C,C++,DBMS,DS,S/W Engg,etc--basics)
3.HR interview (ques like tell me about urself,about family background,tell me 3 things u r looking for in a company,r u comfortable to move to Pune,etc)
4.Essay writing (on any topic based on hobbies,current affaires,etc my topic was "INDIA IN 2020")

i waited for approx 9 Hrs for my interviews as they took both tech and HR irrespective of the performance of the candidate
Be confident and keep smiling,rest all is LUCK.....

COLLEGES APPEARRED: 7
CANDIDATES APPEARRED: 300(approx)
selected after WRITTEN TEST: 66
FINALLY SELECTED CANDIDATES:29 (AND I WAS ONE OF THEM)

I also faced rejection in 4 companies before but got through this 5th one.... So,never loose hope and have confidence in urself....

Whole Testpaper Poornima college of Engg.,Jaipur - 17 March 2007 Paper - 7

ZENSAR TECHNOLOGIES PAPER ON 17th MARCH AT JAIPUR

Hi !
Friends i am mukesh rathi student of JIET, jodhpur. i attended a centralized campus of Zensar Technologies on 17th march. campus was held at poornima engg. college jaipur. selection procedure started from 12 p.m.. here format of selection procedure.

1. APTITUDE TEST
2. INTERVIEW ( HR & TECH.)

First of all they conducted aptitude test.atitude test contains these sectoins.
1. ENGLISH ABILITY .
2. QUANTITIVE APTI.
3. LOGICAL REASONING.
4. TECHNICAL SKILLS.

These sections in paper contains 80 questions and duration was 80 mins.we have to do each section in 20 minus. we coudnt move to next section before 20 mins. and once a section completed we coudn,t go back.there was sectional cutoff. some of the sample questions.

A) English ability. --
Q1. which is suitable combination simmilar to - pesticide : crop :: antiseptic: ?
a) wound b) clothing c) bandage d) bleeding.

Q2. It is a long time.............i saw my friend who lives...............his parents...........he neighbouring town.
a) when ; at ; of b) since ; with ; in. c) when ; for ; in d) since ; for ; of.
and other questions of selecting suitable words and also 3 questions based on one small passage. it was very easy one.

B) Quantitive aptitude--
Q1. if ratio of milk and water in one container is 3:5 and in another is 1:2 they mixed togeher then what is ratio of milk and water ?

Q2. dimension of a room is 5*8 meters. room floor is covered by carpet by leaving space 4cm from walls. if carpet is 18rs. per meter then total cost?

it also contains questions related to tabulaion,distance and time, work percentage , profit and loss. R. S. AGGARWAL is more then sufficient.it is time consuming part be fast otherwise will not be able to attend all the questions.

C) Logical reasoning --
simply based on venn diagram and selection of suitable statement. refer R.S.AGGARWAL (verbal).

D) Technical skills --
this section was complete technical so be prepare. it contains C ,C++, DBMS ,RBMS and general computer architecture.

This is all about written test. 66 students were selected out of 600. unfortunatally i was not selected. After shortlisting these 66 students ppt held. they talk about company profile. Next day they called for Interview. they asked HR questions and also tested logical and technical skills.

General - Interview Poornima College of Engineering, Jaipur - 17 March 2007 Paper - 8

ZENSAR TECHNOLOGIES PAPER ON 17th MARCH AT JAIPUR

Hi !
Friends my name is VINAY CHAUHAN i m doing my B.E.(com sci) from GLOBAL INST. OF TECHNOLOGY, JAIPUR. I attended d centralized campus organized by ZENSAR TECHNOLOGIES, PUNE. campus was held at poornima college of engineering.
here i m describing the selection prcedure--
candidates having 60% in 10th n 12th and b.e. aggregate 70% with branches cs,it,ec were only allowed to appear in d campus drive


1. APTITUDE TEST(4 sections, separate cut off)
2. INTERVIEW-
a) technical interview
b) hr interview (1 essay of 5 minutes was also dere)

First of all they conducted aptitude test.aptitude test contains these sectoins.
1. ENGLISH ABILITY .
2. QUANTITIVE APTI.
3. LOGICAL REASONING.
4. TECHNICAL SKILLS.

These sections in paper contains 80 questions and duration was 80 mins.we have to do each section in 20 minutes. We coudnt move to next section before 20 mins. and once a section is completed we coudn,t go back.there was sectional cutoff. some of the sample questions which i remember are --

A) English ability. --
Q1. which is suitable combination similar to - pesticide : crop :: antiseptic: ?
a) wound b) clothing c) bandage d) bleeding.

Q2. It is a long time.............i saw my friend who lives...............his parents...........he neighbouring town.
a) when ; at ; of b) since ; with ; in. c) when ; for ; in d) since ; for ; of.
and other questions of selecting suitable words and also 3 questions based on one small passage. it was very easy one and in fact d easiest section was english section only.

B) Quantitive aptitude--
Q1. if ratio of milk and water in one container is 3:5 and in another is 1:2 they mixed togeher then what is ratio of milk and water ?

Q2. dimension of a room is 5*8 meters. room floor is covered by carpet by leaving space 4cm from walls. if carpet is 18rs. per meter then total cost?

Q3. find out d odd one in d series
a)9 b)121 c)361 d)881
answer is d)881 since it is not a perfect square.

it also contains questions related to tabulaion,distance and time, work percentage , profit and loss. R. S. AGGARWAL is more than sufficient.it is time consuming part be fast otherwise u will not be able to attempt all the questions.

C) Logical reasoning --
for me dis section was tough coz it really consumed time n it was not possible to attempt all d questions in mere 20 minutes
although i tried my level best n i was sure i will cross d cut off of this section so guys b fast 4 dis section. simple q based on venn diagram and selection of suitable statement were also there refer R.S.AGGARWAL (verbal).

D) Technical skills --
this section was complete technical so be prepare. it contains C ,C++, DBMS ,RBMS and general computer architecture.
This is all about written test. 66 students were selected out of 600. i cleared dis round and then dey gave ppt to the selected candidates only. from my college only three cleared the written test.in ppt dey talked about company profile. my interview was on d same day.

TECHNICAL INTERVIEW-
here he asked me to show him my resume. then he asked me about ORACLE. i strictly said no sir i m not good at oracle because i havnt studied it yet.
then he said ok which languages u have studied so far
strctly mention all d languages which u have mentioned in ur resume
i said c,c++,JAVA

Q1) what is the difference between c and c++?
Q2) what is object oriented programming?
Q3) what is the difference between the class n objects?
Q4) what was the need of classes?
truly speaking i loved dis question then i described from the beginning mentioning the name of the person who invented C++ and all the things which were
required to move to classes n object oriented concept.
Q5) what is encapsulation?
always try to give precise n exact definitions with examples
Q6) what is abstraction?
Q7) what is the need for abstraction? give some practical example?
Q8) what is inheritence?
Q9) give a real life example of inheritance?
Q10) what is polymorphism?
Q11) write a program for SWAPPING?

main()

{
int a=5;
int b=10;
a=a+b; //a=15
b=a-b; //b=15-10=5
printf("value of b is %d",b);
a=a-b; //a=15-5=10
printf("value of a is %d",a);
}

actually i did this program witout using temporary variable then he asked me is there any other method then i very smartly said yes sir v can also use a temporary variable.

Q12) what is jvm?
Q13) what do u know about data base management system?
Q14) what is rdbms?
Q15) write a query to create a table?
Q16) if v dont pass the fields name then vil d table b created?
Q17) what is preprocessor?
Q18) what is the difference between compiler and interpretter?
Q19) what is the command to make a file in dos?
i said i was not able to recollect it now.
Q20) what are header files?
Q21) what r the needs for header files?
Q21) what is d difference between preprocessor directives n header files?
Q22) what is the use of main in any program?
Q23) when v make graphics in c++ then which header file v include?

questions were very simple n was all basics a student from cs branch must know. i was asked to wait outside after a few minutes i was called 4 the H.R. round-

may i come in mam?
hi vinay please come in
may i have a seat mam?
ya sure please sit.

ok vinay take dis paper n now i vil give u 5 mins write something abot urself ur college ur branch n y u opted 4 dat branch
n how do u see urself after 5 years 4rm now?

i quickly finished the work in less than 2 mins.
mam started readin it
ok vinay wat do ur father do?
mam my father is a govt. servant
how long has he been serving 4 his organization?
27 years
oh dat is a very long time would u serve 4 an organisation 4 such a long time
i said mam it depends totlly on d work environment n also if there is a kind of emotional bond b/w me n employees of the company
so u r avery emotional kind of person
yes mam i m a very emotional kind of person.

ok imagine u r a ceo of a company n one of ur friend who is emotionally attached to u asks u to leak the secrets of the company wud u do dat?
no mam the first priority is 4 the firm 4 which i m serving n no compromise on dat part.
ok so u r emotional but not ethnically emotional.
wat kind of person r u? domestic or international?
i said domestic n justified wid my views

next she asked traditional or modern? i said traditional
n gave the example of lalu prasad yadav (rail minister of india) being a traditional kind of person in speaking n living he is popular all over the world
she asked me really
then i said mam he recently gave management classes to students 4rm HORWARD UNIV.
mam u must hav read in the news paper? she said yes i did.
ok what kind of animal do u like? n y?
i said ANT coz hard working, always moving towards its goal, n team work.
i think u watch national geography channel a lot.
i said no mam i dont.
then wat do u watch in ur tv set.
i said i dont get time to see tv
then she asked me how do i manage my time?

mam after my college i use to give tuitions to school going children.
u like teaching dem?
i said no mam i dont like teaching them infact i love teaching them.
ok yes its gr8 fun then she mentiond dat she also used to give tuitions at her time

u live in hostel or some whre else
i said my hometown is in udaipur bt i live here with my relatives
ok vinay thank u very much
thank u mam it was pleasure talking to u
same here
she asked me 4 two photographs of mine

zensar is a company which takes both technical n hr interviews of all d candidates irrespective of the performance
Result came after 8 days to my college they selected only 13 out of 66 who cleared the apti n i was one of them. only thing i wud say to u is hard work is the only key to success because what i believe is dat luck is a loser,s excuse 4 winner,s position.

this was my fifth interview within a span of 2 months. n thank god this time i made it
earlier companies were
1) US TECHNOLOGY
2) TECH MAHINDRA
3) MASTEK
4) PERSISTENT

Whole Testpaper Techno India College, Kolkata - 28 March 2007 Paper - 5

ZENSAR PAPER ON 28th MARCH AT KOLKATA



Hi! I am Soham Goswami(Dept.-IT, BIT, Kolkata) & I got in ZENSAR TECNOLOGIES through campus placement process.

The interview process was divided into three parts::-

(1) Aptitude test (88 questions 80 minutes)

(2) Technical Interview

(3) HR Interview.


Some of our friends had technical and HR together, some had separately. I had my technical & Hr together. Total 91 students had cleared there apti & finally 36 out of them were selected.



(1) APTITUDE TEST

There were four sections::-(a) General English & verbal test,

(b) Quantitative aptitude (c) Logical reasoning (d) Technical(mainly on C,dbms).[concentrate on R.S.Agarwal for quanti & the logical part.]



(2) TECHNICAL QUESTIONS

1. What are the types of OS, with examples?

2. Difference between Linux & Windows.

3. During multitasking, whether the jobs are executed parallely? Whether the WINDOWS OS is pre-emptive?

4. Is multitasking & multithreading are same or not?

5. Various versions of WINDOWS.

6. Latest Version of WINDOWS(Windows vista).

7. What do you know about Vista ?

8. What is SDLC & its steps.

9. How will you decide which language (whether c,java,etc…) is suitable for the development of a particular software?

10. Why java is platform independent?

11. Are the JVM for C & JVM for JAVA are different?

12. What are byte code & object code?

13. Difference between C & Java.

14. What is polymorphism & its types?

15. How overriding is done?

16. What is inheritance?
17. How error handling is done in Java?

18. Types of classes in Java.

19. Storage classes in C.

20. Types of function calls?

21. Call by reference & call by value.Which is better?

22. What are the types linklist?

23. Write a program to search a certain node in a linear linklist?

24. Write a program to find the length of a string in C?



(3)HR QUESTIONS

25. Why Zensar? Your plans for the next 4 years with Zensar.

26. What are your achievements?

27. Which part of the powerpoint presentation did you like the most?

28. How many presentations have you seen before?

29. Why have you failed in the interviews which you had earlier?

30. How will you rate yourself out of 5 in the technical interview?

31. What do you think, your weakest part in technical interview?

32. Will you have any problem,if you are relocated out of kokata?

33. Do you have any questions for us?

Whole Testpaper MIT Meerut - 1 June 2007 Paper - 2

ZENSAR PAPER ON 1st JUNE AT MEERUT

Hi, frens im vry happy that i finally got placemnt after some rejections. so all of u who r feelin dishearted cheer up coz its all matter of luck ,evry one wud get chance.

There are 3 rounds
Written
Technical intrv
HR round

1) Written
it consist of 4 sections, each section has around 20 to 25 questns n u wud gt 20 to 22 min to solve.
first section is english :- there were fiil in the blanks, find correct heading for givn passage,reading passage, synonyms,opposites,grammar. this section is little tough bt if ur english is good then u can clear easily.

2) Aptitude
very esy questions on profit&loss,percentages,areas, volumes,time n work,height and distances,series,algebra u shud hav gud speed questions are vry simple. coz my apti is nt vry strong still it was easy fr me.

3) Logic
puzzles from verbal rs aggarwal, coding, series of alphabets,jumbled sentences, to find correct sequences from given sentences,all in all vey easy section jst need gud speed.

4) Technical
i foun it little tough n lengthy bt pepl with gud programmin skills will find it easy there were c,dbms,networkin. mostly questions from c output questions around 10.

At last i wud like to suggest u that wn u gt ur paper start from first section then speed up as they will give seperate time fr each section. so wn u r warnd to turn to nxt section before 5 min thn dnt solve lft out questns instd check the probability of choices that are repeatin n mark those choices in remanin time in each section.

no negative markin so good luck for written exams. Next comes technical inrtv
my intervr was vry good. he creatd good envirnmnt. i gave my intervw at 9 in evenin. he askd abt my skils intrst.n ask acordingly. i told him abt networkin watevr he askd as this is my area of intrest.
he askd me abt google os, cisco os,as i hav done ccna from cisco. most imp thin they will surely ask abt data structures, linklist codes, daa so be through with that. my tecnical was avg.

Last was HR
this lady was vry frenly. my communication skills r vry good so i was confidnt in this round, they chekd our patience by takin intrvw at 12 in night, chekd +ve attitude, ability to delivr uncr pressure. well she was really impressd by my participation in diffrnt activities n saw a team attitude. so she told me sleep nicely witht ny tension.

so dear frens this site has helpd me a lot coz i was also deprresd n thot i wud nevr gt palcd bt see i gt placmnt in prefinal year so dnt loose hope God will give success to evryone. jst have good speed n confidence in u thn world is waitin fr u to give good opportunities.

Whole Testpaper H.C.E.T , Jabalpur - 7 April 2007 Paper - 3

ZENSAR TECHNOLOGIES PAPER ON 7th APRIL AT JABALPUR

The test consist 4 section.
1.Reasoning.
2.Aptitute.
3.Verbal.
4.Technical.

out of 500-600 students onty 75 cleared the written test and i m one of them but unfortunately i have not selected. the technical section is quite easy but aptitute part is quite tough,but if u r good in time management so u can do it well.i m not remember all ques..bt some que..i remember so i give u the idea..

1.REASONING:- In this section the ques is based on seriese of alphabets lile find the how many letters are not in theire currect place like abcfedghilkjmnorqpstuvwxyz. and some ques on sitting arrangement.

2.VERBAL:-in this section the ques based on fill in the blanks ans find the error and comprehension and some ques on jumbeled sentence and analogy and synonyms and antonyms ques..

3.TECHNICAL:-1.some c que ques like what is the out put of the program like

void main()

{
int i=0;
for( ; ; )
{
if(i<10)
{
print("%d",i);
break;
}
}

2.which converts the assembly lang into objectcode.
(1) compiler.
(2) linker.
ans:-compiler

3.whict protocol is used when file through internet is send from one server to another server.
(1)x.25
(2)SMTP
(3)TELNET.

4.which protocol is used for file transfer
(1)ftp
(2)tftp

5.what is the output of program
void main()
{
int i;
{ int i=3;
printf("%d",i);
}
}

6.recursen is used to
ans:-(1)reduce the execution time

7. accessing of tap in a machin is like
(1)stack
(2)queue
(3)file

8.the tuple in a table represent the
1)Domain
2)relations

so there is 25 ques in verbal section and 22 in aptitute and 21-21 ques in tech and reasoning sections.

TECHNICAL INTERVIEW:-
1.tell me abt urself?
2.how many lang u know?
3.do u know the concept of database?
4.implement the link list ?
5.make a prog of fabbonacci series?
6.make a program to find the given in string is palandrom or not?
7.types of data structure?
8.what is abstract class?
9.def.of binary tree?
10.types of access specifire?
11.diff b/w private and protected acc. spe..?
12.diff b/w multiple and multilevel inheritence?
13.draw the basic archetecture of computer?
14.diff of friend function?
15.what is virtual function ?

HR :-
1 tell me abt urself?
2.how was the written test?
3.how many brothers and sisters do u have?
4.occupation of ur father ?
5.ur native place?
6.tell me abt ur hobbies?
7.can u live alone?
8.have u been to pune? and if yes so how many times?
9.how many cities u have been visited ?
10.why should i select u?
11.tell me abt ZENSAR?
and at last the HR gave me papers and told me to write a essay on BPO.
at last out of 75 students only 22 selected.....

Whole Testpaper H.C.E.T. Jabalpur - 7 April 2007 Paper - 4

ZENSAR TECHNOLOGIES PAPER ON 7th APRIL AT JABALPUR



hi there, I attended the open campus recruitment of Zensar held in H.C.E.T. Jabalpur.I wasn,t able to clear the written but I am posting this paper so that u can utilize my xperience in cracking Zensar.


The paper had 4 sections -:

1) EU

2 questions on synonymns 1word was acrimonious & I don,t remember the other 1

2 ques. on antonymns like amorous

some ques on grammar corrections & 1 RC very easy

there were 21 ques & the time was 20 min. Friends if u have gud hold in English then u need not 2 worry about this section.



2)Quant apti

20 ques 20 min

Most of the ques were based on Profit & Loss, Pipes & cisterns, Percentages

Speed & distance, time & Work, DI. Prepare well 4 this section from R.S. aggrawal Quant



3) Logical Reasoning

20 ques 20 min

This was very easy. even without preparation u can solve atleast 8 to 10 ques.

2 ques on DI pi chart

3 ques from syllogisms

1 ques on number series

17,31,59,115,? (exact ques) ans 227

2-3 ques on coding encoding

3 ques on seating arrangements

a,b,c,d,e,f r to be arranged around a hexagon, a should be opposite of f, d should be between a & b bl ab la bla

rest I don,t remember.



4) Technical

21 ques in 20 min very easy

ques were basically from C,RDbms, data com computer architecture

only a basic knowledge of C is required to crack this section.

General - Interview Paper - 1

ZENSAR PAPER AND INTERVIEW ON 11th March 2007

Hi Friends, I am Nagarajan, a student of EEE DISCIPLINE of Bannari Amman Institute Of Technology, Sathyamangalam.Their recruitment process has the following stages:

I] Aptitude Test of 80 minutes duration. It has four sections – English, Quantitative, Verbal reasoning & Technical section which contained only C & C++.



Each section consists of 22Questions.In all there was 88 questions in my paper where as other sets had between 80 to 90. There was no negative marking .There was an sectional cut-off but there were sectional time limits of 20 minutes each. U r only allowed moving on to the next section only when the time of a section was up.



II] There was a separate technical and HR rounds.



TECHNICAL INTERVIEW:
On the next day they gave a detailed PPT before the start of the interview process. They also give u a form to fill up. U also need to bring 2 copies of ur CV and 2 photocopies of your own as they’ll take one copy of the CV(with your photo) along with the form.The duration of interviews ranged from 15 to as much as 45 minutes.



I was the last the person to attended the interview.In the Technical interview I was asked about the following questions:



* Tell about your favourite subjects?

* why did you chhose your favourite subject as DigitalLogicCircuits?

* Draw the EX-OR Gate using NAND Logic(NAND gate) and explin it with the truth table?

* what is Transistor?

* what is PNP Transistor?

* what is Triode?

* What is the difference between Stack and Queue?

* Explain about the Binary traversals?

* What is Inorder,Preorder,Postorder?

* Explin about the Software development Cycle?

* What is a register? What is the use of it?



They had asked me only the basic concepts what i had studied in my Curriculum.



HR INTERVIEW:
(In the HR Interview they were very friendly and also they expect the frank answer from the candidates whom attended the process).In the HR I was asked about the following questions:



* firstly i was asked to tell about my family?

* what do you like most in your Institution?

* what you don,t like most in your Institution?

* what would you like like to change in your Institution?

* Why did you choosen career in EEE?

* Where would you be after 10yrs.?

* Would you like to grow in the Proffesional line?

* what are all the changes that you had observed in your Institution?

* How about the interview process?

* How do you feel about written test?

* do you have any Questions to ask me?



Finally they announced the results one day after the process was over. They selected 9 candidates. I was selected as was 9 others from my batch. We were really happy for each other.



SUGGESTION:
Don,t be tensed while attending the interview.Because they were very friendly with you guys.also be confident on your self.Answer as many questions as possible in the technical session with practical examples.

The aptitude round was act as a high elimination roundfor us.The Technical section consists mostly of DBMS questions with few c and c++ questions.The analytical section consists of very simple mathematical prooblems relating with average,missing nos,etc...but they had given five sets of question papers( booklet )one for each candidate.the verbal section was also easy containing some Anagram,Fill in the blanks with appropriate words,one simple comprehension.(No need to prepare separately for verbal section).but the logical section is some what tougher than verbal section.the time management should bo very important to answer atleast 85% of the questions.It is not possible to answer correctly for all the questions,it is just enough if you answer the questions correctly of what you are doing with the help of rough sheets and using your knowledge.But there will be a sectional cutoff marks.

Prepare well & u can surely become a “ZENSARian”!

General - other Dehradun - 13 October 2006 Paper - 1

TORRY HARRIS PAPER ON 13th OCTOBER AT DEHRADUN
Hi all

i got selected at Torry Harris pool-campus held at DIT Dehradun

on 12-13oct 2006

Selection procedure

Elligibilty::
60% in MCA /B.tech (CS,IT,EC)
but at offer letter they ask 65% on completion of degree..

Exams----
1. Written
2. GD
3 interview (tech +HR)

WRITTEN exam had 20 ques time 20 min
7 apti (M.Tyra type)
7 networking protocols
others on C, C++ n Java

GD topic :: Should Sachin Tendulkar take retirement?

interview -----

OSI Model layers
a program in C -- create a backup copy of a file
i.e. if there is a file named abc.txt create a file abc_backup.txt with same contents n location

Discussion on program

Describe urself
strength weakness
how will u remove ur weakness??

250 selected out of around sm 1600 registered... for GD
150 for interview
final selections 50

Yantro Company profile Paper - 2

YANTRO is an multinational IT services that delivers affordable business and technology solutions. Founded in 2003 at Chennai, India, and pioneering the offshore software project and software product development process.YANTRO offshore development office is a 100% export oriented unit (EOU) registered with the Software Technology Park of India (STPI).

Offshore software development adds value in terms of time, cost and quality and gives considerable structure to project execution and benefits all the stock holders.We ,maximize leverage, by generating savings in cost, productivity, time-to-market and enhanced quality.

Aptitude - General Paper - 6

Section 1 - Quantitative

Sum of three nos is 98. The ratio between 1 and 2 is 2:3. The ratio between 2 and 3 is 5:8 . Find the second no?

A car travels uphill at 30 km/hr and downhill at 60 km/hr. It goes 100 km uphill and 50 km downhill. Find the average speed of the car?

A batsman,s avg in 12 innings is 24.00 . If his avg is to be double of the no of innings (15 innnings), what should he score in the remaining three innings (avg)?

A man buys 1kg of sandalwood and 1kg of teakwood. He sells one for 10% profit and other for 10% loss.What is total profit/loss percentage?

In a class of 250 students, on JAN 2 15% of the girls and 10% of the boys are absent. If on 100% attendance there are 10 boys. Find the percentage present?

Mandrake has to choose from 4 from 10 people. There are 3 girls, 5 boys , 2 children. What is total probability that he will choose 1G , 2B , 1C?

Some questions on Geometry?

Some questions on Measurements?

Some questions on permutation and combination.

Section 2 - Ananlytical

Cities A - M are connected.Distance between any two cities is 1mile.They gave which city connects which city.Q,s based on these data

One pblm on DI.Gulshan Kumar and Rakesh Roshan take a film. If they take a art film it,s 25 lacs or a multi starrer it,s 75 lacs.They spend 28% on clothing ,11% on lighting.Actor fee 22% for Multi starrer or 10 lacs for art film.Based on these data some questions were asked.

Section 3 - Verbal

General GRE type q,s.:Analogies,Reading Comprehension.

Section 4 - Visual reasoning.



Some figures were given and told to fill up the blanks.

Some figures were given and told to fill up the blanks. for the post of system trainee. They need people to work in MAINFRAMES.The paper was ok, except a few questions others were basic.They paper consisted of 4 sections. Quants,Anals,Verbal and Visual Reasoning.They wnated us to attend all the sections, because they clearly stated that any ommission, they will not value the papers and chances of getting shortlisted was little. After the test they asked us to write a essay on any of these three topics.

My Family

My Career

What two things i would change if I was the prime minister of India.

INTERVIEW:

The tech interview was a breeze

Tell me abt urself

Some questions on my project.

Q,s from subjects studied in past semesters.He actually told me to write 4 important subjects in each semester and asked q,s from them.

Xansa Paper Aptitude - General Paper - 7

Section 1 - Quantitative

Sum of three nos is 98. The ratio between 1 and 2 is 2:3. The ratio between 2 and 3 is 5:8 . Find the second no?

A car travels uphill at 30 km/hr and downhill at 60 km/hr. It goes 100 km uphill and 50 km downhill. Find the average speed of the car?

A batsman,s avg in 12 innings is 24.00 . If his avg is to be double of the no of innings (15 innnings), what should he score in the remaining three innings (avg)?

A man buys 1kg of sandalwood and 1kg of teakwood. He sells one for 10% profit and other for 10% loss.What is total profit/loss percentage?

In a class of 250 students, on JAN 2 15% of the girls and 10% of the boys are absent. If on 100% attendance there are 10 boys. Find the percentage present?

Mandrake has to choose from 4 from 10 people. There are 3 girls, 5 boys , 2 children. What is total probability that he will choose 1G , 2B , 1C?

Some questions on Geometry?

Some questions on Measurements?

Some questions on permutation and combination.

Section 2 - Ananlytical

Cities A - M are connected.Distance between any two cities is 1mile.They gave which city connects which city.Q,s based on these data

One pblm on DI.Gulshan Kumar and Rakesh Roshan take a film. If they take a art film it,s 25 lacs or a multi starrer it,s 75 lacs.They spend 28% on clothing ,11% on lighting.Actor fee 22% for Multi starrer or 10 lacs for art film.Based on these data some questions were asked.

Section 3 - Verbal

General GRE type q,s.:Analogies,Reading Comprehension.

Section 4 - Visual reasoning.

Some figures were given and told to fill up the blanks.

Some figures were given and told to fill up the blanks. for the post of system trainee. They need people to work in MAINFRAMES.The paper was ok, except a few questions others were basic.They paper consisted of 4 sections. Quants,Anals,Verbal and Visual Reasoning.They wnated us to attend all the sections, because they clearly stated that any ommission, they will not value the papers and chances of getting shortlisted was little. After the test they asked us to write a essay on any of these three topics.

My Family

My Career

What two things i would change if I was the prime minister of India.

INTERVIEW:

The tech interview was a breeze

Tell me abt urself

Some questions on my project.

Q,s from subjects studied in past semesters.He actually told me to write 4 important subjects in each semester and asked q,s from them.

Whole Testpaper Paper - 3

YAHOO PLACEMENT SAMPLE PAPER

Few Questions: (45 min)
1. In a village in each family they give birth to children till they
get a boy. IF girl child they try again. What is the ratio of boys to
girls.


2. 2n+1 numbers in a list except for 1 num all had duplicates, how to
find duplicate in O(n)

3. In 1000 wine bottles stack 10 are poisoned given 10 rats what is
the minimum number of tries to find the poisoned one. Rat dies once it
licks the poisoned wine.

4. Write 1,3,6,4 using +,-,*,/ to get 24 (no repeat of numbers)

5. Which is the DS used in dictionary mode in mobile (t9)

6. Which is DS used for chess program...to predict move each and every
time..

7. There are $1070 dollars how to split them into bags such that asked
for any denomination from $1 to $1070 , u must b able to give without
opening bag...

If any one has idea do mail me qrio.qrio at gmail.com (qrio dot qrio
at gmail dot com).. Eagerly waiting...

Another paper:
1. First fit issues...

2. Algorithm to partition set of numbers into two s.t. diff bw their
sum is min and they hav equal num of elements

3. Prog: given Numerator & Denominator.... print 0.3333333333 as .(3)
0.123123 as .(123)

Whole Testpaper Mahalingam College Pollachi - 26 June 2007 Paper - 4

XANSA PAPER ON 26th JUNE

Hai........I am Lavanya.k studying final year b.tech..............I have undergone Xansa recruitment procedure in this week. I am happy to share my experience to you all.

Company has 4 rounds....
1 round- Aptitude round- 50 questions 50 marks
The question paper was easy. It contains General Apps(fill the series,time and work,etc....) 25 questions. It also has technical apps.25 questions. Only " C" questions. If u thorough the "Let us c" by Yashwanth Kanithkar,its more than enough..

2 round- Group discussion...
My topic is " Is GD a correct tool in Recruitment process" I was asked to speak that GD is necessary tool. Before discussion, they asked for self introduction.. To get selected,we should speak confidently and clearly.. only 3 out of 10 got selected and i was one among them.

3 round Technical round..
It was also easy to me... First they asked about my achievements,strength etc and we speaked generally. then he gave a simple program( to get 100 students mark and to display how many students are greater than 150) and he asked to modify the program by displaying the corresponding students name,address etc..)

some more questions........
-> achievements
-> what do you know about IT industry
-> how do you learn the unknown things.
-> have u helped others regarding education. if so how?
-> asked about company and PPT..
-> Extra courses
It took more than 30 min for me........

4 round- HR
Immediately after tech,i was asked to come for HR......here also some general questions like (tell about yourself,strength etc..........) He asked ,if there is any question from me i asked" How was my performance till this round" He said "good, i want to discuss with my team and i will announce the result" i was really happy, when i finished my HR..........And finally i got selected..............confidence and good communication skill plays a important role..............

Whole Testpaper Sati Vidisha - 30 March 2007 Paper - 5

XANSA PAPER ON 30th MARCH

tehre are only 50 questions & u hv to solve them in 50 min.
there were 3 sections no sectional cut off.neg.marking

Section 1 - operating system & computer architecture
there were 10 question normal que.like which is not the component of ALU &control unit.

Section 2 - Quantitative
there were 20 que easy ques. 3 que from clock 2 from speed one from avg. etc

Section 3 - C language
There were 20 ques all from pointers u hv to give out put of that & find out the errors.

cutoff was 50% for written.

General - other Anna university - 23 July 2007 Paper - 2

YAHOO PAPER ON 23rd JULY AT ANNA UNIVERSITY

Selection Procedure was
* Written test.
* technical interview 1
* technical interview 2
* programming
* HR interview

Written Test::
C
C++
SQL
Regular Expression
Unix commands
Data structures(trees,graphs)

Interview:
The main things u want to be sure to get into yahoo are:
Unix commands - they ask basic commands in unix..
aftter that they give importance to C , C++
If u know perl then its an added advantage..
be sure with hashing too..

some algo questions which was fired at me where
* strcat()
* how to count the no of bits set in an no.. he asked me give a soln in O(1).
* how to delete the node in the linked list give the pointer to that node?
* given two integers a, b how to divde a/b without using /,% operator... (repeted subtraction is not the solution).

in tthe programming round
asked me to implement the dictionary datastucture with features
* autocorrect
* autocomplete
* spellcheck

General - Interview - 1 January 2006 Paper - 3

WEP INDIA TELEPHONIC INTERVIEW 2006
Hi,

I have attended a telephonic interview from Wep India Peripherals. It was pure technical. first they asked me to describe about my current job, current CTC, Expected CTS and whether willing to relocate? like that...after that they asked me whether i am ready for a technical interview now (day before yesterday HR called up me to inform abt the telephonic interview). and they asked me to rate myself from 1-10 for sql server, asp.net and vb6.
here r the questions they asked. just for ur reference

ASP.NET
1) Difference between Server.Transfer and Response.Redirect?
2) Directives in .NET? - (Page directive & Error Directive)
3) Explain about Web.Config file?
4) How many web.config file can be used with an application?
5) Page level tracing and application level tracing?
6) Explain about ViewState and what will happen if view state is false?
7) Explain about Dataview?
8) What is Ispostback?
9) Use of datagrid and its major properties?
10) How dataset differ from data reader?
11) How to implement polymorphism in .NET?
12) Explain about the use of Ctype and its Syntax?
13) What is shared functions?
14) How to create xml using Dataset?
15) Explain about Global Assembly cache?
16) Where the compiled dll file stored?
17) Explain about garbage collectors?
18) How to register shared assembly?
19) Optional parameters in .NET?

VB6
1) How to create exe for vb application?
2) Early binding and late binding?
3) What is the use of option explicit and where to specify?
4) Cursor types and Lock types used with VB6?
5) How to transfer recordset values to an array?
6) How to create xml file from recordset?
7) How to track errors in vb6?
8) What is the differents between OnErrorResume and OnErrorResumeNext
9) How to register ActiveX controls?
10) What is the differents between dll and ocx control?
11) How to call an exe from vb6? ie using shell scripting
12) How to pass parameter to exe?
13) How to make a connection with database using code?
14) How to specify optional parameters in VB6?
15) How to specify password field?

SQL Server 2000
1) What are cursors?
2) What are triggers?
3) How to specify parameters in a stored procedure?
4) Marks of the students are stored in a table called marks.
How to find the row containing the second largest mark from the table using sql query?
there might have been more ques from sql server.but this is all i remember
finally they asked me if i am selected how soon i can join with them? and they told if am selected from this round next round will be hands on, for that i have to appear in person...and they told they will inform me soon about next round through mail. it lasted around 45 min. ok Now am waiting for that.

Technical - Java - 13 August 2007 Paper - 1

Eligibility

BE/BTech/MCA/MTech

70%

Only BE students were shortlisited.

I Could remember only these few question. Some question are multiple choice questions

Written test

3 Sections Duration: 90 min

1.What is the output of the following code?



x=0;y=1;

for( j=1;j<4;j++){ x="x+j;">2.There is a 200 miles long tunnel. one train enters the tunnel at a speed of 200mph while the other trains enter the tunnel in the opposite direction at a speed of 1000 mph. A bee travels at a speed of 1500 mph enters the tunnel goes to and back until it reaches the train. What is the distance covered by the bee when the two train collides (the bee survives)

3.List the two advantages of views.

4.Which layer is encryption and decryption done

5.What are the various modes used to send data over the network

6.Write a query to display the name of the students whose total marks is divisible by 25(total marks may be 175,200,150 ….)

7.P(S1)

a++;

P(S2)

v++;

V(S2)

V(S1)

P-wait, V-signal, S1 and S2 are semaphores. Consider two threads running. Is there a deadlock .If yes in which situation does the deadlock occur.

8.How do you find the port number of the remote host?

9. (Date; who)>logfile

Date; who>logfile

What is the difference between the two statements.
10.How do you find the machine MAC address

11.Write the set operators that are used for select.

12.Write a single command to find and delete all the files that are older than 1 day(modification time)

13.A is a 3*4 matrix and B is 4*5 matrix. What is the number of additions and multiplications performed to obtain the resultant matrix

14.What is the output

#!/bin/perl

kill –0 pid

15.#!/bin/perl

echo $_

16. #!/bin/perl

kill $$

echo “hello world”

17.List different schema/database objects

18.Randomization is good for which algorithm(quick sort, heap sort, selection sort, hashed table, ….)

19.Descride the language in the following regular expression (a*a) b+b

20.In an I-node what is not there (file type, file name, size, owner)

21.If the probability of work done by three persons are 1/3, 2/5, 5/12. Then what is the probability that the work is completed.

22.Given Id, author, creation time, size, links, web page, description

Bring it in 2nd normal form

23.Consider a heap containing numbers 10, 20, 30, 40, 80, 60, 70 such that numbers are in ascending order from the leaf to the root. If 25 is to be inserted what is the position.(A[1], A[2], A[3], A[4])

24. #!/bin/perl

var=///

aaaa

echo ‘$var’

25.Krishna tosses a one-rupee coin and a rupee coin. He announces that one is head. But the result is not announced. What is the probability that the other coin is head?

26.In database sort the student id and the course id for each student. Which is the best possible solution.

-Sort the student id using a stable algorithm and then sort the course id using unstable algorithm

-Sort the student id using a unstable algorithm and then sort the course id using stable algorithm

- Sort the course id using a stable algorithm and then sort the student id using unstable algorithm

- Sort the course id using a unstable algorithm and then sort the student id using unstable algorithm

General - other Paper - 1

VIZUAL PAPER
Hai friendss,,,,

It Contains two rounds

1st Round Programming Analysis

It Contain Four Question
Each have different Timing
Program 1: 4-10 minutes
program 2: 2-20 minutes
program 3: 2-20 minutes
program 4: 1-10 minutes

Each Have a big paragraph and have 4to 5 questions

2nd Round

English
30 question 30 minutes
Suitable Sentences -10 Marks
Verbal Reasoning -10 Marks
Reading Comprehension -10 Marks

General - Interview - 1 January 2006 Paper - 2

WEP INDIA TELEPHONIC INTERVIEW 2006
Hi,

I have attended a telephonic interview from Wep India Peripherals. It was pure technical. first they asked me to describe about my current job, current CTC, Expected CTS and whether willing to relocate? like that...after that they asked me whether i am ready for a technical interview now (day before yesterday HR called up me to inform abt the telephonic interview). and they asked me to rate myself from 1-10 for sql server, asp.net and vb6.
here r the questions they asked. just for ur reference

ASP.NET
1) Difference between Server.Transfer and Response.Redirect?
2) Directives in .NET? - (Page directive & Error Directive)
3) Explain about Web.Config file?
4) How many web.config file can be used with an application?
5) Page level tracing and application level tracing?
6) Explain about ViewState and what will happen if view state is false?
7) Explain about Dataview?
8) What is Ispostback?
9) Use of datagrid and its major properties?
10) How dataset differ from data reader?
11) How to implement polymorphism in .NET?
12) Explain about the use of Ctype and its Syntax?
13) What is shared functions?
14) How to create xml using Dataset?
15) Explain about Global Assembly cache?
16) Where the compiled dll file stored?
17) Explain about garbage collectors?
18) How to register shared assembly?
19) Optional parameters in .NET?

VB6
1) How to create exe for vb application?
2) Early binding and late binding?
3) What is the use of option explicit and where to specify?
4) Cursor types and Lock types used with VB6?
5) How to transfer recordset values to an array?
6) How to create xml file from recordset?
7) How to track errors in vb6?
8) What is the differents between OnErrorResume and OnErrorResumeNext
9) How to register ActiveX controls?
10) What is the differents between dll and ocx control?
11) How to call an exe from vb6? ie using shell scripting
12) How to pass parameter to exe?
13) How to make a connection with database using code?
14) How to specify optional parameters in VB6?
15) How to specify password field?

SQL Server 2000
1) What are cursors?
2) What are triggers?
3) How to specify parameters in a stored procedure?
4) Marks of the students are stored in a table called marks.
How to find the row containing the second largest mark from the table using sql query?
there might have been more ques from sql server.but this is all i remember
finally they asked me if i am selected how soon i can join with them? and they told if am selected from this round next round will be hands on, for that i have to appear in person...and they told they will inform me soon about next round through mail. it lasted around 45 min. ok Now am waiting for that.

General - other Paper - 1

VIZUAL PAPER
Hai friendss,,,,

It Contains two rounds

1st Round Programming Analysis

It Contain Four Question
Each have different Timing
Program 1: 4-10 minutes
program 2: 2-20 minutes
program 3: 2-20 minutes
program 4: 1-10 minutes

Each Have a big paragraph and have 4to 5 questions

2nd Round

English
30 question 30 minutes
Suitable Sentences -10 Marks
Verbal Reasoning -10 Marks
Reading Comprehension -10 Marks

Vizual Paper General - other Paper - 2

It Contains two rounds

1st Round Programming Analysis

It Contain Four Question
Each have different Timing
Program 1: 4-10 minutes
program 2: 2-20 minutes
program 3: 2-20 minutes
program 4: 1-10 minutes

Each Have a big paragraph and have 4to 5 questions

2nd Round

English
30 question 30 minutes
Suitable Sentences -10 Marks
Verbal Reasoning -10 Marks
Reading Comprehension -10 Marks

Virtusa Paper Aptitude - General Paper - 18

Virtusa Technologies-Exam Conducted at Hydrabad

Virtusa Paper consists of 3 sections .
1. Analytical
2.Analytical Writing
3. C-Programming

First when v clear the cutoff of Analytical section,only then other sections are evaluated.So,Don,t waste time by spending much time on Programming.
Analytical Section:
Analytical Section consists of Vocab. ( pick the odd one out ) and also some codings like ( ALPHA z coded as BETAH , DELTA z coded as GAMMA, then how z ETA coded ? .. this one .. i have framed it :) ) . This part z a bit difficult one. So, my advice z don,t think much about these.Along with above two categories, there shall be PUZZLES in this section.In the recent paper i attended,i got the following questions.

Volume of a LARGE SPHERE z ( pi * # ) .Area of it z ( pi * & ) where ,#,&, r four digit integers.What z the value of the radius ? ( Along with answer , v have to write approach). answer: may be 22

In howmany ways can a rectangle can be cut into 4 equal parts.

Given 1,2,3,25,50,75 and 100 .. Using each number "one and only once" and using arithmetic operators, write 383 in terms of the above given numbers. answer: 383 = ( 100 + 2 ) * 3 + 75 + ( (50 * 1)/2 )

A tougher question of above. given 1,2,25,50,75,100 .. write 383 in terms of the given numbers.

Given following sequence,find the how the sequence is generated.
2 -> 1,4,9,6,5,6,9,4,1,0
3 -> 1,8,7,4,5,6,3,2,9,0
4 -> 1,6,1,6,5,6,1,6,1,0
answer : the sequences r nothing but the UNIT digits of square(x),cube(x),power4(x) where
x = [ 1 ... 10 ]

Knights always tell TRUTH.Knaves always tell LIE.U r a foreigner to that place and U have met a person and he replies "I am a knave " . What can u infer from his statement. answer : nothing can be infered from his statement.

Using 4 fours and arithmetic operations write from 1 to 10
3 = ( 4 + 4 + 4 ) / 4
4 = ( 4 - 4 ) * 4 + 4
5 = ( 4 * 4 + 4 ) / 4
6 = 4 + ( 4 + 4 )/4 // 4 + 2
7 = ( 4 + 4 ) - ( 4 / 4 )
8 = ( 4 + 4 ) * ( 4 / 4 )
9 = ( 4 + 4 ) + ( 4 / 4 )
10 = ( 44 - 4 ) / 4
I forget the two more questions.
Analytical Writing This section has two questions only.

General topic. ( Don,t forget that v have to just write one page only .. not an essay) ( So,write the points directly ) For us they gave topics Is it necessary for to HOST AFROASIAN GAMES ?? Why can,t it spend that money for the welfare of poor ? OR Can India have better results if the current for of govt. is changed to PRESEDENTIAL FORM OF GOVT.( like USA ) .

He gives a highly impossible possible and asks to give a solution.( To check ur innovative ideas :) ) For us,Suppose u have suddenly changed to an ANT.U know human,s abilities, but u have forgot their language.How can u make urself to convey ur BELOVED that u have been changed to an ANT.
Programming

This section consists of 4 questions.Out of 4, for 3 questions v have to write code.The last question shall be .. they shall give some code and v have to write whether the code is correct one r not .. if not correct , where the modifications show be done.and also v have to write what that CODE IS DOING..

Aptitude - General Paper - 16

Virtusa Technologies-Exam Conducted at Hydrabad

Virtusa Paper consists of 3 sections .
1. Analytical
2.Analytical Writing
3. C-Programming

First when v clear the cutoff of Analytical section,only then other sections are evaluated.So,Don,t waste time by spending much time on Programming.
Analytical Section:
Analytical Section consists of Vocab. ( pick the odd one out ) and also some codings like ( ALPHA z coded as BETAH , DELTA z coded as GAMMA, then how z ETA coded ? .. this one .. i have framed it :) ) . This part z a bit difficult one. So, my advice z don,t think much about these.Along with above two categories, there shall be PUZZLES in this section.In the recent paper i attended,i got the following questions.

Volume of a LARGE SPHERE z ( pi * # ) .Area of it z ( pi * & ) where ,#,&, r four digit integers.What z the value of the radius ? ( Along with answer , v have to write approach). answer: may be 22

In howmany ways can a rectangle can be cut into 4 equal parts.

Given 1,2,3,25,50,75 and 100 .. Using each number "one and only once" and using arithmetic operators, write 383 in terms of the above given numbers. answer: 383 = ( 100 + 2 ) * 3 + 75 + ( (50 * 1)/2 )

A tougher question of above. given 1,2,25,50,75,100 .. write 383 in terms of the given numbers.

Given following sequence,find the how the sequence is generated.
2 -> 1,4,9,6,5,6,9,4,1,0
3 -> 1,8,7,4,5,6,3,2,9,0
4 -> 1,6,1,6,5,6,1,6,1,0
answer : the sequences r nothing but the UNIT digits of square(x),cube(x),power4(x) where
x = [ 1 ... 10 ]

Knights always tell TRUTH.Knaves always tell LIE.U r a foreigner to that place and U have met a person and he replies "I am a knave " . What can u infer from his statement. answer : nothing can be infered from his statement.

Using 4 fours and arithmetic operations write from 1 to 10
3 = ( 4 + 4 + 4 ) / 4
4 = ( 4 - 4 ) * 4 + 4
5 = ( 4 * 4 + 4 ) / 4
6 = 4 + ( 4 + 4 )/4 // 4 + 2
7 = ( 4 + 4 ) - ( 4 / 4 )
8 = ( 4 + 4 ) * ( 4 / 4 )
9 = ( 4 + 4 ) + ( 4 / 4 )
10 = ( 44 - 4 ) / 4
I forget the two more questions.
Analytical Writing This section has two questions only.

General topic. ( Don,t forget that v have to just write one page only .. not an essay) ( So,write the points directly ) For us they gave topics Is it necessary for to HOST AFROASIAN GAMES ?? Why can,t it spend that money for the welfare of poor ? OR Can India have better results if the current for of govt. is changed to PRESEDENTIAL FORM OF GOVT.( like USA ) .

He gives a highly impossible possible and asks to give a solution.( To check ur innovative ideas :) ) For us,Suppose u have suddenly changed to an ANT.U know human,s abilities, but u have forgot their language.How can u make urself to convey ur BELOVED that u have been changed to an ANT.
Programming

This section consists of 4 questions.Out of 4, for 3 questions v have to write code.The last question shall be .. they shall give some code and v have to write whether the code is correct one r not .. if not correct , where the modifications show be done.and also v have to write what that CODE IS DOING..

Virtusa Paper General - other Paper - 17

Virtusa Technologies-Exam Conducted at Crescent,Vandalur

Analytical Reasoning (2 qns.)(we have to write reasons for the answer.)

x1 peach + y1 plum = z1 apple, x2 peach + y2 plum = z2 apple ,(x1,y1 .... z2 are integer values) How many peaches make one apple?

100,100,102,106,112,120,____


Which is greater ?Product of all Bradman,s first class scores or Sum of all test scores of Sachin.


U r provided with 500ml and 300ml jar(it has no markings).
a) u have to measure exactly 100ml.
b) u have to measure exactly 200ml.

Using four 4,s u have to make 1 ... 10. ( for eg. 1 = (4/4)*(4/4) 2 = ? 10 = ? )


Student,canopy,thirst,... are the words given.u have to group the words using the following words
1) Master
2) Teacher
3) Deft
etc.

U have to cut a Pizza using 7 st. lines(wit out rearranging) and u have to obtain maximum number of pieces.( Give generalised solution..)


U have to cut a Cylindrical cake of diameter 32 cm and height 20 cm in to 12 equal pieces.


In a village there r 2 groups.
1 Knight -> always tell true
2 Knave -> always tell false
Mr.X met a man of that village(u don,t which grp he belongs) and questioned "Tell me whether u r knight or knave ?"
Reply: "i cannot tell u and left that place" Find which grp that man belongs to?


Obtain 277 from 3,25,50,65,100.use 4 arithmetic operations only.


1#2=x ,2#3=y, 4#4=z, find (2#4)@5= ?


CODE is encoded as DGBF, READ is encoded as JHNV ,Fins "KOVAI"


Essay(General). (Topic given: India should spend money on Atom bomb and Rocket OR for the welfare of poor.)


Programming.(4 Qns) : ( we can use any Programming Language for coding)

They had given one function ,we have to find it what it does and also problem in the fn. and how to overcome it.
double what( double z, int y)
{
double answer;
while( y > 0 )
{
if( y%2 == 1)
answer = answer * z;
y=y/2;
z=z*z;
}
return answer;
}

They had given one Pseudocode.We have to find bug in the pseudocode.I don,t remeber the pseudocode fully.But the function of pseudocode is "To make a Robot to fetch a tumbler of water"


Write a program to print all Armstrong numbers, (abc=a^3+b^3+c^3) (for eg. 153=1^3+5^3+3^3)


Write a function witj the following conditions,
1) It should have one integer parameter.
2) If the value passed is -ve, return -1.
3) If the value passed is a perfect square, return root of that number.
4) If the value passed is a not a perfect square, return that number itself.

Aptitude - General - 24 October 2003 Paper - 14

This paper is from IIIT, Hyderabad (October, 2003)



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

General - other Paper - 15

Virtusa Technologies-Exam Conducted at Crescent,Vandalur

Analytical Reasoning (2 qns.)(we have to write reasons for the answer.)

x1 peach + y1 plum = z1 apple, x2 peach + y2 plum = z2 apple ,(x1,y1 .... z2 are integer values) How many peaches make one apple?

100,100,102,106,112,120,____


Which is greater ?Product of all Bradman,s first class scores or Sum of all test scores of Sachin.


U r provided with 500ml and 300ml jar(it has no markings).
a) u have to measure exactly 100ml.
b) u have to measure exactly 200ml.

Using four 4,s u have to make 1 ... 10. ( for eg. 1 = (4/4)*(4/4) 2 = ? 10 = ? )


Student,canopy,thirst,... are the words given.u have to group the words using the following words
1) Master
2) Teacher
3) Deft
etc.

U have to cut a Pizza using 7 st. lines(wit out rearranging) and u have to obtain maximum number of pieces.( Give generalised solution..)


U have to cut a Cylindrical cake of diameter 32 cm and height 20 cm in to 12 equal pieces.


In a village there r 2 groups.
1 Knight -> always tell true
2 Knave -> always tell false
Mr.X met a man of that village(u don,t which grp he belongs) and questioned "Tell me whether u r knight or knave ?"
Reply: "i cannot tell u and left that place" Find which grp that man belongs to?


Obtain 277 from 3,25,50,65,100.use 4 arithmetic operations only.


1#2=x ,2#3=y, 4#4=z, 4@14=a, 5@15=b, d@e=f, find (2#4)@5= ?


CODE is encoded as DGBF, READ is encoded as JHNV ,Fins "KOVAI"


Essay(General). (Topic given: India should spend money on Atom bomb and Rocket OR for the welfare of poor.)


Programming.(4 Qns) : ( we can use any Programming Language for coding)

They had given one function ,we have to find it what it does and also problem in the fn. and how to overcome it.
double what( double z, int y)
{
double answer;
while( y > 0 )
{
if( y%2 == 1)
answer = answer * z;
y=y/2;
z=z*z;
}
return answer;
}

They had given one Pseudocode.We have to find bug in the pseudocode.I don,t remeber the pseudocode fully.But the function of pseudocode is "To make a Robot to fetch a tumbler of water"


Write a program to print all Armstrong numbers, (abc=a^3+b^3+c^3) (for eg. 153=1^3+5^3+3^3)


Write a function witj the following conditions,
1) It should have one integer parameter.
2) If the value passed is -ve, return -1.
3) If the value passed is a perfect square, return root of that number.
4) If the value passed is a not a perfect square, return that number itself.

Aptitude - General Paper - 13

Virtusa Technologies-Exam Conducted at Hyderabad

There were 3 sections:(In which they tested 4 skills)
Analytical&Logical skills
Programming skills
writing skills

All the 4 skill tests are fully brain teasers. The duration of the test was 2hours,and the L&A Reasoning has a minimum cutoff u should clear that to evaluate ur other sections.The questions are as follows (These are not in serial order and the information may not be accurate, when specified)

SECTION 1 (Analytical and Logical)



1 2 3 2 5 6 7 8 3 find the next term in the series

How can u place 4 coins in 2 lines so that each line should contain 3 coins Ans:I wrote, i it maynot be possible

Find the odd word
ALPHA
DELTA
SIGMA
BETA
Ans:I think it is Delta, Reason: as it has specific meaning(addition)and others don,t have such meaning,just used for representation purpose.(i think so)

There was an addition given as follows SATURN + URANUS = PLANETS the solution is not encoding the entire problem but to find coding for 3 alphabets Ans:Key Steps:

There was a set of words given as follows SUN,MER,VEN,---,...........,SAT,---,NEP,PL (I don,t remember exactly but, all are the names of planets in solar system with notation of each planet using 3 letters) The question was to find out the appropriate words in the given blanks

How can u get 81 using the digits 2,3,25,50,75,100 only once using any of the arithmatic operator Key Steps: 50+(100/75*3)+25+2

(This is a real sitter, takes a long time) A man have some three types boxes viz Huge,Large,Small He took 11 of huge boxes and put on a table.And at random he has taken some of them and placed 8 large boxes in each of the boxes.And after that he has placed 8 small boxes in some large boxes at random.By the end if he found 102 boxes empty, how many boxes are there on the table?

If u have a large number of Knights and a chess board.The problem is to find the way of arranging the Knights on the board so that no Knight attacks the other. (He has given mathematical relations that represents how a knight can move on the chess board as we know it as ,L,, i,m not giving such stuff)

You are given a bunch of threads each having differing length.No two thereads have same thickness and no thread has same thickness all its length. But it is certified that any thread when lit burns itself in exactly 12 mins. The question is you are asked to find an elapsed time of 9 minuites.How can u find it out and how manythreads do u want for this?

SECTION 2 (Writing)

The topic to Write was on "Connecting the rivers in India".

SECTION
You can write the programs in this section using any programing language


There was a pyramid given as follows
1
2 3
4 5 6
7 8 9 10
11 12 13 ...
The three dots are given as a part of the specification. The above pyramid is to be printed when input number 13 is given. Write a program to print the above pyramid.


Write a function which returns a substring in the string ,Sigma, (character given)which starts wit ,Alpha, and ends with ,Thita,


You have a job in which you have to take time stamps and store them. So Write a datastructure that can minimize the storage requirements of Year,Month,Date,Hour,Minuite.


Write a program to find the four digited numbers, which are perfect squares, and all the digits in that number are even. (i think there is another program given which i don,t remember)

Whole Testpaper Pydaah Engg. College, Visakhapatnam. - 13 July 2006 Paper - 11

VIRTUSA PATTERN & INTERVIEW ON 13 JULY 2006 AT VISAKHAPATNAM


On July 13th there is an off campus in pydah college which I have attended. There is a huge crowd. Around 1100 members attended to this interview. Out of that only 200 qualified in written exam and after that in GD 140 were short listed and after technical 90 were selected and atlast after HR round 70 were taken into the company.

Selection procedure:
1. Written exam
2. Group discussion
3. Technical interview
4. HR interview.

WRITTEN TEST:

There were 5 sections in written exam
1. Verbal ability-----25 questions------20 min
Its easy which consisted of sentence completion based on prepositions.
Some synonyms like SHELVED
2 Reading Comprehensions.

2. Aptitude--------25 ques.--------20 min
Its somewhat easy but time management is important.
3 questions on sets and relations venn diagrams problems on ages
5 questins on if a cube is painted with black color and divided into 729 cubes how
many cubes have single, double, triple, none faces colored.
Given two conditions and we have to select howmany conditions we need to answer the given question.

3. Attention detail-------20questions------20 min
Its very easy by seeing the options we can answer.
Some questions like if *->+, /->-, +->/, - -> * evaluate an expression.

4. C&DS---------40 questions--------30 min
Its somewhat difficult and many of them have been failed to qualify in this section.
Many data structutes programs were given and asked for the function to be inserted
given in options like sorting of linked lists, insertion of node in a linked list, assigning
a Node and so on.
C programs were easy.
Which of the following uses less memory Ans union.
Which function allocates memory by initializing memory cells with zero.
Ans. Calloc()

main()
{
char a[]="hello";
int i;
for(i=0;a[i]!=,\0,;i++)
printf(“%c", a[i]-32);
}
Ans HELLO
Which of the following may implement queues:
Ans: single dimensional arrays.

5. Learning ability------10questions------15 min
In this section a paragraph a notes based on blue tooth was given and after reading it for few min they take the paper back and then the question paper will bw givwn containing ten questions. We should write based on what we have studied and remembered. Its not that much difficult.

GROUP DISCUSSION:
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:
Reservation system
Public toilets
Sports like cricket
Politics
I got the reservations topic and I spoke to it from the basic idea of its amendment by Dr.Ambethkar and the present situation is not like that and a better system should be imposed not based on caste so that every one who is poor can afford for education.

TECHNICAL INTERVIEW:
On the next day ie on 14th technical and HR rounds are to be held.
The technical round is little bit tough due to the heavy competition from MCA students. Of course the questions are from our interested areas in programming language. I said that I am interested in C

I was asked to write the following programs and explain the logic:
Check whether the given number or a string is palindrome or not.
-Print the Pascal triangle
-To print the number given in an integer form to the same in words like one for 1, two for 2 and so on
This I have done using arrays.
-Fibonacci series program 1 1 2 3 5 8 13 21.......
-Program to print the angle between the pointers in the wall clock when time is taken as input.
-Program to investigate the free cells in the string and reduce the wastage.
-Can trees be implemented using arrays?
-Swapping program using XOR operation.
-Some programs were given and I am asked for output.
-when is the queue empty and when is it full.
-Some questions on electronics like what is meant by diode, transistor, resistor, capacitor.
-Why are you interested in s/w?

HR Interview:
The first question is tell me about yourself
Being an electronics student why don,t you opt for VLSI and embedded systems which are in fame
Why do you need a job?
Questions on my hobbies.
What is your place in the class?
I was asked two puzzles
About the inheritance in C++
Did you selected or attended in any company

That,s it friends. I am sorry that I have not remembered the questions in written test.

The results were announced around 1:30 am and I felt tensed but at last I selected & it,s a wonderful experience to me. I think these might help you and give you an idea to prepare well.

Aptitude - General Paper - 12

section I duration 20 min total marks 30

A problem from sum of Alphabets are given numbers from 1 - 9 we hav to assign numbers to alphabets and A+B+C= something like that we have to know value of E ( Ans : 4)


x^y=2x+y and given that 2^a=a^3 find value of a?(Ans : a=1)


In an exam consists of 150 questions, 50 questions are of mathematics and remaining are others. In which twice the time is to be given to mathematics bit when compared to others.total time is 3 hrs then how much time is to be given to each bit of mathematics? (Ans : 72 sec or 1 min 12 sec)


In an multiple choice question paper, each correct answer carries 4 marks and each wrong answer deducts 2 marks. a person scores 480 marks in a 150 questions paper how many questions he did correctly? (Ans :130)


A problem on mixtures


A problem on ven diagrams. It was a little bit lengthy to read and to remember ...sorry


A simple problem on probability...............its direct question. A bag contain 5 red and 7 green balls and another bag contain some no. of red and green balls.He asked to find probability of finding a red ball.


A problem on work and time. A can do a work in 6 days B can do same work in 8 days, C can complete the same in 12 days.A under took 3 works like that and did for 8 days and left. Then B started work and did for some days and left then in how many days C completes this work?


y=inv(cos[cosx+4sinx]/sqrt17) then dy/dx=? (Ans :1)


total M persons want to buy a gift of D Rs. Out fo which 3 members are dropped out so how much each person have to pay extra ? (Ans:3D/m(m-3) )(check)


A problem is on series 1 + 1(1+1/n)+3(1+1/n)2(square)+5(1+1/n)3(cube)+.................find sum of n terms
( I not did this problem)


A monkey trying to ascend a greesy pole.He ascends 20 mtrs in one minute and goes down 4 mtrs in next minute.how much time it will take to ascend pole of 96 mtrs? (Ans:10 min 48 sec)


On a good if 25% discount is given, he will earn profit of 25% what will be profit if he gives 10% discount?
(Ans:50%)


I don,t remember what this qustion is ...........sorry


A container has 64 lit of alcohol. 8 lit of which is removed and added with same amt of water. the same process is repeated 3times. what is the percentage of alcohol after the end of the
operations.
ans- formula – intial vol – p lit(64).
vol of removed sol – q lit(8).
no of oprs – n(3).
concentration of first liquid afetr oprts is – ((p-q)/p)*((64-8)/64)**3.

x+y+z=0, find the value of (x**3+y**3+z**3)/xyz.


3 men n 2boys can do piece of work in 12 days. same work is done by 6men n 1 boy in 6 days. find how many days can a man alone can complete the work?

In an exam the maximum marks is 500. a got 20% more than b, b got 25% less than c, c got 20% more than d. if b marks are 360 then how much did d score? (no. r different prob type is the same.).


A tank holds 25 gallons of fuel. before going for a drive which is at a distance of 600 miles. the car goes at a speed of 60 miles per/ hr. however the tank has a hole and fuel leaks out . after travelling a distance of 300 miles, the tank gets emptied. find rate at which fuel gets lost.



Section II Duration :20 mins Marks :20

This paper is on C language

Write a program to know whether string is palindrome or not?


A C program is given and asked what will be output.............


A Recursive function is given asked what will be output how and why?

write a prg / function to remove the duplicate from a sorted array. (8 m)

write a prg to genrate fibonacci series upto 100 recursively. (7 m)

predict the output of the following:
char c[]={ " enter" , "first" , "print" , "new" }.;
char **cp[]={c+3, c+2, c+1, c};
char ***cpp[]=cp;
printf("%s", ++*cp);
printf("%s",--*++cp);


A program given and asked what are variables value1 and value2 stores?(ie, in that program they store GCD and LCM)


Write a program to sort linked list.

Section III Duration :20 mins Marks:40

1) & 2) are like critical reasoning in barrens

3) & 4) are antonyms (he didn,t ask antonyms directly but asked the word in capitals if replaced by any of following, that would be inapproriate in context )

5) & 6) analogies

7) & 8) correct the sentense with appropriate answer from the options given below
9) & 10) are pick oddman out...........easy one



Essay writing:

1)Time and tide wait for none.

2)My vision 2020 of India.