0% found this document useful (0 votes)
416 views

Amdocs Technical Questions Paper

The document describes an aptitude test for a technical position at Amdocs. It provides details of the test structure, including sections on general aptitude, SQL, and UNIX skills. The general aptitude section includes quantitative reasoning, comprehension, and easy questions. The SQL and UNIX sections contain technical questions to assess proficiency. The document also outlines the full recruitment process, which involves an aptitude test, technical interview, and HR interview. It provides sample questions asked and emphasizes the importance of preparation for different sections like SQL.

Uploaded by

Shrishti Kumari
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
416 views

Amdocs Technical Questions Paper

The document describes an aptitude test for a technical position at Amdocs. It provides details of the test structure, including sections on general aptitude, SQL, and UNIX skills. The general aptitude section includes quantitative reasoning, comprehension, and easy questions. The SQL and UNIX sections contain technical questions to assess proficiency. The document also outlines the full recruitment process, which involves an aptitude test, technical interview, and HR interview. It provides sample questions asked and emphasizes the importance of preparation for different sections like SQL.

Uploaded by

Shrishti Kumari
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 85

Amdocs technical questions paper

1. All birds are animals. All animals are four legged. Implications

a. All animals which are four legged are birds.

b. All birds are four legged

c. Some birds are four legged

d. Some birds are animals but not four legged.

1. a and b 2. b and c 3. only b 4. only d

2. All fat people are not dancers, food loving people are all fat .Find the
contradictory statement?

3. The day before yesterday was WEDNESDAY then the day after tomorrow is?

4. Mary's father's brother is Andrews Andrews daughter's son is Sunil Brothers


name is Sam Who is Sam to Sunil?

5. If A>B,A<C,B>D,B<DFind the Shortest?

6. There are A,B techers and C,D doctors.Find the possible no of combinations that
should not be repeated more than once?

7. There are 3 males and 2 females,find the possible no of orders that can be made
by making the arrangement as in between two males one women is allowed to sit?
8. The syntax of command statement in UNIX 10. If the permission for a file is
000,then the file can be accessed by whom?

9. Where we can run two same programs on a UNIX console at the same time?

10. Which is the Shell of UNIX?

11. What is the number of the masked code ee@?

12. If we are terminated at the middle of the program execution in UNIX,what will
happen to the program,it will (i) continue running

(ii) terminate

(iii)the o/p will be send to ur mail?

13. what is the command to connecto to remote terminals

14. what is the command to fetch first 10 records in a file

15. unix has the following features

a. multithreading

b. multitasking

16. We are UPDATING a field in SQL and ALTER the row also.After giving the
COMMIT command the system is crashed.What will happen to the commands
given,whether it will UPDATE and ALTER the table or not?

17. How will add additional conditions in SQL?


18. How will u print TATA alone from TATA POWER using string copy and concate
commands in C?

19. If switch(n)

case 1:printf("CASE !");

case(2):printf("default");

break;

What will be printed?

20. How will u divide two numbers in a MACRO?

Amdocs SQL Placcement papers with answers

1. float a=.7

if(a=.7)

printf("this");

else

printf("that");

2. switch(n)

case 1: printf("case 1");

case (2) : printf("default");

break;

what will be output??

ans: it will be error since case(2) is not allowed


3. u have to store data on the system which command is used .....

(a)fread (b)fwrite (c)read (d)write

4. what is data dictionary

5. what is view.......

6. what is output of cal j 2005

7. In which message passing is fast .....options are

(a)pipe (b) message passing (c) message queue (d) memory sharing

ans : d

8. question on nice command that is how to change the priority

ans: change the priority of the process

9. context switching takes place....

a) kernel to user mode

b)user to user mode

c)kernel to kernel mode

d)one process to another process


10. what is the difference between dbms and rdbms options were given

11. u have a xwindow and u have to display clock on it then which command will be
used??

12. what is fork..... and: to create a new process

13. cp xxx.txt edu

what will it do

ans: copy file xxx to directory edu.

14. if 4 represent as $** and 3 represent as *$$

based on it there were 4 questions....like

i) what is the value of $$$** + $**$*

in similar way rest of 3 questions

15. who provide the certificate

16. along with which hardware this is added...

17. where is security key retain

18. which algorithm is used to generate a key.....


19. to choose which two are similar in the given pattern....this type of four
questions

I) i) 123456.876543 ii)123456.876943 iii) 123456.876543

(a)i & ii (b) i & iii (c) ii & iii (d)all are similar

20. main ()

int x=5;

x=x----1;

printf ("%d", x);

Output?

Amdocs latest sample placement papers aptitude,reasoning,technical questions


1. All birds are animals. All animals are four legged. Implications

a. All animals which are four legged are birds.


b. All birds are four legged
c. Some birds are four legged
d. Some birds are animals but not four legged.

1. a and b 2. b and c 3. only b 4. only d

2. All fat people are not dancers, food loving people are all fat .Find the contradictory statement?

3. The day before yesterday was WEDNESDAY then the day after 2morrow is?

A goes to the party if B goes


B goes to the party if C goes
C goes to the party if D goes
Totally how many will go to the party?

4. Mary's father's brother is Andrews Andrews daughter's son is Sunil Brothers name is Sam Who is
Sam to Sunil?

5. If A>B,A<C,B>D,B<DFind the Shortest?

6. There are A,B techers and C,D doctors.Find the possible no of combinations that should not be
repeated more than once?

7. There are 3 males and 2 females,find the possible no of orders that can be made by making the
arrangement as in between two males one women is allowed to sit?

8. The syntax of command statement in UNIX 10. If the permission for a file is 000,then the file can
be accessed by whom?

9. Where we can run two same programs on a UNIX console at the same time?

10. Which is the Shell of UNIX?

11. What is the number of the masked code ee@?

12. If we are terminated at the middle of the program execution in UNIX,what will happen to the
program,it will (i) continue running
(ii) terminate
(iii)the o/p will be send to ur mail?

13. what is the command to connecto to remote terminals

14. what is the command to fetch first 10 records in a file

15. unix has the following features

a. multithreading
b. multitasking

16. We are UPDATING a field in SQL and ALTER the row also.After giving the COMMIT command the
system is crashed.What will happen to the commands given,whether it will UPDATE and ALTER the
table or not?

17. How will add additional conditions in SQL?

18. How will u print TATA alone from TATA POWER using string copy and concate commands in C?

19. If switch(n)
case 1:printf("CASE !");
case(2):printf("default");
break;

What will be printed?

20. How will u divide two numbers in a MACRO?


Whole Test paper

110 students sat for the aptitude test out of which 20 where sortlisted and finally 10 were selected.i
was one of them after getting rejected in Infosys and Accenture.

The recruitment process consists of the following rounds:

1) Aptitude test (General + Technical)


2) Technical Interview
3) HR Interview

APTITUDE TEST

The duration of the test is approximately 110 min. It was an online test . There were a total of 95
questions to attempt.

There is 60% sectional cut-off for both sections.that is what I heard but I dont think that they follow it
strictly as I wont hv got 60%.it depends on the performance of your batch.

every right ans has +1mark and wrong ans has -0.25 marks.so be careful if u dont know leave the
question.

Test paper has many sets.

The aptitude test comprises mainly of two sections:


1) General Aptitude Test-contains 3 subsection
2) Technical Test-contains 3 subsection

General Aptitude test


The general aptitude test consisted of the following sub-sections:
1) quantitative ability 20 ques(25 min)-toughest part of the test as time is very less.questions were
not so easy.i was able to do only 11 ques.trick(when u press submit time stops and ask for
confirmation if u press cancel u will be brought back to question page)try this at ur own risk as they
might rectify this fault.
3 ques on set theory(venn diagram) not so easy prepare set theory thourougly from R.S Agarwal.
2 ques on clock-damn easy took 1 min to get the ans.
next 5 ques was very easy.-no prep required
5 ques were like $ represents 1 and 0 represents * then 4 is represented as $**.some common
airthmetic were given u hv to calculate result and just have to convert the no in binary.time
consuming.
i forgot other ques but they where not so easy u hv to prepare R.S Aggarwal thouroughly.

2)comprehension(15 min)-damn easy.my passage was on connecting computer.i even dont hv to read
the passage as i know 8 ans out of 10.it took me 7 min in total to find remaining 2 ans and crosscheck
my ans with the passage.
3)15 easy questions(15 min) on substitution ques like + is *,* is -etc,pattern matching,reasoning.it
will take no more than 12 min.

Technical Test
The technical test includes three sub-sections:
- SQL (15 min)
- UNIX (15 min)
- Language (15 min) (Here you can choose between C, C++ or Java)
I chose C for the language test.

1)C ques were very easy if u know even a little bit of c u will be able to do 15-16 ques. 20ques(25
min)-ample time.
a)int a=10;
b=a++ + ++a;
print(b);
ans-22
b)what is the function used to read n write a specified no of line from file?

2)SQL sec(15 ques,15 min)-very tough only one who is very comfortable with SQL can answer.
ex-what is truncate?some tables were given output is given u have to select a query that generates
that o/p.
two three ques i even didnt understand
u hv to go through IVAN BAYROSS to clear this sec

3)unix sec(15 min)


he UNIX section comprised of 15 questions mostly on unix commands.
Some of the questions were as follows:

1) Which command would you use to change the priority of a running process?
a) nice b) ps c) top d) ls
Ans: a) nice

2) Which command is used to display the output of a command as well as store it in a file ?
a) cat b) grep c) tee d) top
Ans: c) tee

3)which command is used to go to end of line in vi editor?


a)a b)A c)e d)E
ans-b
4)what is the extension of main memory in hard disk is called?
ans-swap space
like this easy ques where there on unix.if u r bit familiar with unix u can clear it but u hv to remember
commands with their options.
i use to work on linux so i cleared this section with ease.

2)Tchnical Interview
My technical interview is of about 60 minutes .it seems to be long but when u r inside u never feel it
and u just hv to ans patiently as ques are very easy n bit tricky. A good knowledge of SQL and C is a
must. U must know at least the basics command of unix otherwise u will be rejected.they will just ask
u to write 10 commands of unix and they will ask ques on those 10 commands only.

Well my first question was are u very tired?


Then hobbies
Ur fav subject-i told OS n C.
Then they asked me abt semaphore,write code for it ,explain give a practical ex where u will
implement semaphore?done with this easily
Then they asked deadlock-i answered
Relation between semaphore n deadlock. i was not able to ans properly.they were not satisfied with
my ans this time.
ask me abt projects if i hv done any.i said i hv made a small site on asp.then they asked its
functionality,ADO databse connection etc of which i answered half of questions properly.

an int datatype of 1 byte.


int x=0;
for(x=0;x<256;x++)
print(x)
what is o/p.
I answered wrong.o/p will be an infinite loop,he helped me to ans this.its given in kanetkar find out
how.

Then they got into sql(my weak part and they recognise it).asked ordering of groupby,having,orderby
in a query ?how they are executed in memory and then i was not able to ans any ques on this.
Then they asked views,how they are updated n bla bla.i was lucky as i know views properly i
answered max question this time.

then they come to unix.they asked me ever hv u used a platform similar to unix.as i work on fedora 8
it was my strong part.
asked me to write 10 commands.easily done.
Asked some questions on groff,troff,ifconfig,ps,jobs,kill,killall commands.i answered all of them
easily,they were little impressed for the first time.satisfied with my unix knowledge again move to c.
this time very simple ques.what is pointer,hw u allocate memory to them etc.
then they asked me are u doing any project for be?.
i said yes told them abt my project as i hv already decided the project,it is related to networking.
They asked me abt router,bridge,http packet,how packet got transfers frm one pc to another?
I answered all this very efficiently as i hv some idea abt networking.
Finally they said do u have any ques to ask? i asked what should i do to improve myself technically?
They said go through as many courses as u can n improve ur database knowledge specially
queries,rest is fine.

3) HR interview
Dont take it as time pass as it is equally important.be prepared with general hr questions.then only u
can get through it.
ques were very general like why amdocs,tell me abt urself,weakness,strength,family
background,relocation etc.
it was for around 20 min

It seems to be very long and drilling process but if u are confident and keep urself fresh its easy to
clear all round.
Best of luck to all of u.....
Whole-Testpaper
Guys most of the Amdocs tests are conducted by Mertitrack and would most probably be
online. So keeping this in mind this page contains a link which contains an online sample
paper of Amdocs and resembles very much with the actual test. But do study the text given
here as pattern is not correctly given in sample paper.
Remember there would be 6 subjects sections comprising of

1. Quantitative aptitude: 20 questions, 25 mins


(Venn diagrams, DS, Some questions on average, 2 Logical Reasoning Caselets each
comprising of 4-5 questions)

2. Attention TO detail (Easiest Section of paper): 15 questions 15 mins


(Pattern matching, arithmetic operators substitution (if + is *),2 Decision making questions
each comprising of 4-5 questtions.) This section in sample paper comprise mostly of pattern
matching questions which is not the case in actual paper and would follow the above
pattern.

3. Technical passage: 10 questions, 15 mins


(This sub-section comprise of a technical passage (USB, Cookies, Computer N/w, File
Organization, O.S etc) and is followed by 10 questions. Don't commit the mistake of reading
the whole passage as all the questions are direct, so just browse through the passage.)

4. Programming ability test (C / C++ / Java): 20 questions, 25 mins

I would recommend you to choose between C and C++ as Java was quite difficult and
remember that based on your language selection in this test you would be asked question in
technical interview.

Books to look for exploring C, test your skills in C, Pointers in C

Online Stuff: http://www.c4swimmers.esmartguy.com solve its Pointer I, Pointer II etc


tests.

5. SQL (Toughest section of paper): 15 questions, 15 mins


This is indeed the toughest section of the paper. There can be things which you must have
not heard of earlier. Remember questions given in sample paper are quite different from
what actually appears in paper

Questions asked are mainly based on:

1. Index (Clustered, Non Clustered)


2. Views (Updateble and read only views, How they are internally stored)
3. Where condtion involving columns that contain NUll values (so in this case you must
remember how AND and OR operators work on NULL values)
4. INSERT statements to a table.
5. Some built in functions (Decode(),Substr(),Instr() )
6. Nested queries
7. Join operations (involves ANSI AND THETA notations)
8. Result of a Query (A table schema would be given and you would be required to
determine what would be its output whether it contains any error)
9. Error Correction in a Query i.e what should be modified to make a query run succesfully.
This mainly comprise of errors in group by, having clause, joins (for e.g. Joining two tables
without any condition although is correct but would not yield the result)

Books: Ivan Bayross SQL, PL/SQL the Programming Language of Oracle.

6. UNIX: 15 questions, 15 mins

Basic commands
Tee, chmod (would always be asked),tail, head, cut, paste, sed, vi editor internal
commands(i, I, a, A),grep, etc.
System calls
May or may not be asked.
Do remember meaning of special symbols such as $$,$!,$#,$*,$1 etc.
Books: Unix Concepts and Application by Sumitabha Das, Test Your Unix Skills by Yashwant
Kanetkar.
Overall

1. 95 questions: 120 mins

2. 25% negative marking would be definitely present.

3. Need to score 60% Overall marks in Aptitude portion comprising of Quantitave Ability,
Attention to detail and Learning ability (Technical Passage).
4. Need to score 60% Overall marks in SQL, UNIX, (C/ C++ / Java).
AMDOCS PAPER ON 20th AUGUST 2006 AT DELHI

Hi folks the paper was a mix of toughness, time constraint and easy questions.
To summarize it, it contained of two main sections:
1.The Aptitude section
2.The Technical section
People told me that there is sectional cut off of 60% in each of the two sections:
Now talking about the sub sections of the paper:
The Aptitude part consisted of 4 subsections.
The Technical part also consisted of 4 subsections.
Now ellaborating the paper, first it is a long brain and computer adaptation exercise, of nearly four hours.
Aptitude Section:
Ist Section: 18Qs in Logical Reasoning and Data Interpretation questions in 30 mins.
This is a easy section u can easily do it, there is enough amount of time.
IInd Section: 16Qs in Quantitative Ability in 25 minutes, again a simple section
IIIrd Section: 25 Qs. in 20 minutes it is about pattern matching.
IVth Section: 60 Qs. in 6 minutes, there is negative marking, here u get a question which has some text
and u have to select the same text among the 4 options.
speed is tested here in this fourth section, but a person can attempt about 30 to 40 questions depending on
his/her speed.
NOTE: All the above sections are explained with good examples before u start the test so be cool and
patient and read these options with ease and u can crack this section.
Techincal Section:
This section also has four subsections as follows:
Ist Section: This section is the Amdocs pseudo language section, be cool the name is the only scary part
in this section nothing else, remaining is easy with a lot of time, u get 60 minutes in this section for 25
questions, but before u start off this section it is advisable to read the booklet that is given along with this
section before starting this section, i had forgotten to do this but i believe still managed to get all
questions right, it is basically a section of algorithm.
IInd Section:This section tests u on SQL queries, some are very simple some are tough, u get 20 minutes
in this section, ample time to solve all questions.
IIIrd Section:This is a section on UNIX language, basically on different types of commands and some
theoretical concepts, it also has 20 minutes.
IVth Section: This section is a choice betwee any one of the languages which is your favourite among
the four given languages C/C++/Java/Cobol. This is also a section of 20 minutes.
NOTE: All the technical subsections have a lot of time for them to be solved easily within the time limit,
provided u know them.
And in case there is only sectional cut offs then it is advisable to try to score the fullest or maximum in
the first section(Amdocs pseudo language)

Important:
Mind u, u can take time off between sub sections of the main sections also so relax in between as
well to keep ur efficiency...
In all the test is very long, it will take near to 4 hours to complete the full test, only advice is not to rush
through the sections quicly as only once u click on the button next will the section start, so take some time
off between sections get refreshed and then concentrate with full vigour in the sections.
All the best.....Amit Ganguli
AMDOCS PAPER 3rd AUGUST AT ALLAHABAD

Written test: online test of arround 2:30 hrs

there were two sections first one is apptitude section and second one is technical

there will be sectional cutoff in both of the section...each sections have 3-3 sub sections but they havn't
individual cut off..

in technical section the three sub section was

i)c (it's on u'r choice u can choose java too)

ii)sql & dbms

iii)unix(in it some part of os too).

in apptitude section the three subsection was

i) arithematic

ii)simple apptitude n small puzzles

iii)comprehension

TECHNICAL SECTION

I) C section 25 min 20 ques

1)float a=.7

if(a=.7)

printf("this");

else

printf("that");

2)switch(n)

case 1: printf("case 1");

case (2) : printf("default");

break;
what will be output??

ans:it will be error since case(2) is not allowed

3) u have to store data on the system which command is used .....(a)fread (b)fwrite (c)read (d)write

In c questions were mainly related with pointers(arround 5-6 questions),2 questions from command line
argument, 1 questions related to size of structure, 2 on string pointer, 1 on preprocessor, 1 on bitwise
operator,1 on just declare, the node of link list, 1 on tree whose inorder and preorder is given., 1 on
continue..

II) Sql section 15 min 10 ques

i) what is data dictionary ..........4 options were given

ii) what is view.......

iii) 2 questions were on transactions redo undo table was given

iv) given a table u have to find all those customer name and id which not belong to city california or
messchustte or his name is jackson

v) one query related to delete operation for the given table

vi)one query related to having clause in which find the sum of money

III) Unix section 12 ques 15 min

i) what is output of cal j 2005

ii) 1 question on tee comand

iii)in which message passing is fast .....options are (a)pipe (b) message passing (c) message queue (d)
memory sharing ans : d

iv)question on nice command that is how to change the priority

ans: change the priority of the process

v)context switching takes place....

a) kernel to user mode

b)user to user mode

c)kernel to kernel mode

d)one process to another process

vi)what is the difference between dbms and rdbms options were given

vii)u have a xwindow and u have to display clock on it then which command will be used??

viii) what is fork..... and: to create a new process


ix)2 shell script questions like one is for xxx "i am" "master of" unix echo xxx

what will be the output?? like this....

x)cp xxx.txt edu

what will it do

ans: copy file xxx to directory edu.

xi)question on chmod command ......... file attribute permission change

x)one question was which command does not create a new file ...............

a)cat ---------

b)touch -----------

c)cat>------

ans: c

xi)if the file permission is 100 who can acsess that file....ans: only super user if it is there in the option

APPTITUDE SECTION:

I)Arithematic section 30 min 20 ques

1) some digits were given like 0 2 2 3 3 4 4 then how many no will be there which is greater than 1 lac ,all
numbers are distinct there were 2 questions of this type.....

2) 4 qustions on venn diagram.... in a survey of 100 people 20 view only war movie,15 view only
romantic movie ,10 view horror........bla bla bla..

3) there r 10 containers all closed and there r 10 people 1 st person open all containers 2 nd person
changes the status of 2nd 4 th 6 th ...10 th containers that is close here.then 3 rd person again changes the
status of 3rd 6 th 9th container similarly 10 th person changes only 10t h container then tell that status of
7th container will be changed how many times

IN arithematic section 3-4 problems related to permutation &combinations, 1 from probability,3 from
percentage,2 from profit loss, 1 from pipe & cisterns,1 from compound interest...

II)Reasoning section: 20 min 15 ques

this section is very easy.....

1)to chooose which two are similar in the given pattern....this type of four questions

I) i) 123456.876543 ii)123456.876943 iii) 123456.876543

(a)i & ii (b) i & iii (c) ii & iii (d)all are similar

2)if * is changed to +, +is changed to - ,- is changed to / , /changed to* what is the value of .....

1) 3*4+5/2-7....
4 questions of this type

3) if 4 represent as $** and 3 represent as *$$

based on it there were 4 questions....like

i) what is the value of $$$** + $**$*

in similar way rest of 3 questions

4)one question was

a goes to party if b goes

b goes to party if c goes

c goes to party if d goes

total how many goes to party??

III)Comprehension section: 15 min 10 ques

in this section there were a long passage based on cryptographic tecnique.....on the behalf of that there
were 10 questions like..

1) who provide the certificate

2)along with which hardware this is added...

3) where is security key retain

4) which algorith is used to generate a key.....something like that

After the written....there were two round of interview

I) TECH INTERVIEW

this round was also long arround 45-50 min

they asked to me

1) about educational background

2)i have mentioned a project in my resume so arround 15 min questions regarding to my project(if u have
done any project and if u know all about u'r project then it will be advantageous for u).they asked.....

i)draw all front end window of project,

ii)what is the best features of your project,

iii)what was your role in project,

iv)how did u compromize at any critical situation in u'r project when all of you had different ideas,

v)have u insert any innovative idea in your project,


vi)how fetch data from data base....write query for that

vii)yor project is in which normal form??

3)then they came on c

i)how we provide dynamic memory allocation in c.....write, how declare melloc

ii)is there any difference between melloc and calloc

iii)write code for a function which work similar as strcat do...using pointer

iv) what is the use of '\o' in string,why we don't use in array,if we don't provide it instring declaration that
what will hapen.

v)some times you run a c program in turbo c compiler ,the system crashes...why it happen??

4)after that they asked unix

i)simple questions on file permission,

ii)nice command,

ii)if given chmod 777 what does it mean ,

iii)what are system call?

iv)how we do pattern searching ??

5) then they moved towards dbms and sql

i) what did u study in u'r college dbms or rdbms is there any difference between them?

ii) one query regarding projection

iii)one query regarding having clause....group by

iv)one query regarding delete operation

v)what is functional dependency??

vi)what is atomicity?

vii) theoritically how can we detect deadlock??

then they asked to me general questions.....

6) heve u ever heard about amdocs

7) how was amdocs question paper.....what is your comment about that

8) before amdocs,how many written u have given?

9) do u feel something difference in selection procedure of amdocs to other companies.....

10)does pointer(CPI) or percentage reflects real knowledge or not??


11) what is the best quality in you...your strength??

12) what is your plan for next sem(V sem)....i said that "i will incease my pointers" then they said....just
brush up u'r concept of c,unix and dbms..because we work on these......

II) HR INTERVIEW

this was of hardly 15 to 20 min

1)what is the name of other two,those took u'r interview??

2) have u heard the ppt then tell me what type of company is amdocs

3) describe your self?

4)tell me about family background.

5) why would u like to join amdocs?

6)have u any plan for further study like mba...?

7) would u like to do work offtime.

total 70 students gave written....only 19 student qualify the exams...then tech and hr interview round. then
finally result declared arround 11:00pm....total 15 student selected finally and i was one of them.....

All the best to all of you for u'r bright future.....

Abhinav Chandel
Amdocs technical questions papers

Amdocs Placement Papers 2011:-

1. float a=.7

if(a=.7)

printf("this");

else

printf("that");

2. switch(n)

case 1: printf("case 1");

case (2) : printf("default");

break;

what will be output??

ans: it will be error since case(2) is not allowed

3. You have to store data on the system which command is used .....

4. what is data dictionary

5. what is view.......

6. what is output of cal j 2005

7. In which message passing is fast .....options are

8. Question on nice command that is how to change the priority

ans: change the priority of the process


9. context switching takes place....

a) kernel to user mode

b)user to user mode

c)kernel to kernel mode

d)one process to another process

10. what is the difference between dbms and rdbms options were given

11. You have a xwindow and u have to display clock on it then which command will be used??

12. What is fork..... and: to create a new process

13. which algorithm is used to generate a key.....

14. To choose which two are similar in the given pattern....this type of four questions

I) i) 123456.876543 ii)123456.876943 iii) 123456.876543

(a)i & ii (b) i & iii (c) ii & iii (d)all are similar

15 main ()

int x=5;

x=x----1;

printf ("%d", x);

Output?

// D. 5,-2,2

Ans: D

16 Find (7x + 4y ) / (x-2y) if x/2y = 3/2 ?


(a) 6 }

(b) 8

(c) 7

(d) data insufficient

(Ans . C)

17 Number of times multiplication is required:

int computeXn(int x int n)

if(n%2=0)

return x*x;

else if(n%2=0)

int y computeXn(x n/2);

return y*y;

else if(n%2=1)

int y computeXn(x n/2);

return y*y*x;

Calculating power of a tree for 5^12.


AMDOCS PAPER ON 29th SEPTEMBER 2008

1. All birds are animals. All animals which are four legged are birds.

b. All birds are four legged

c. Some birds are four legged

d. Some birds are animals but not four legged.

1. a and b 2. b and c 3. only b 4. only d

1. All fat people are not dancers, food loving people are all fat .Find the contradictory statement?

2. The day before yesterday was WEDNESDAY then the day after 2morrow is?

3. A goes to the party if B goes

B goes to the party if C goes

C goes to the party if D goes

Totally how many will go to the party?

4. Mary's father's brother is Andrews Andrews daughter's son is Sunil Brothers name is Sam Who is Sam
to Sunil?

5. If A>B,A D,B

6. There are A,B techers and C,D doctors.Find the possible no of combinations that should not be
repeated more than once?

7. There are 3 males and 2 females,find the possible no of orders that can be made by making the
arrangement as in between two males one women is allowed to sit? 8.

Computer checking: eee DD

1.eeggg 2.eeeDD3.eerrt,4.DDeee The write answer is 2)eeeDD

2. q#Df684%d options would be: 1. q#Df634%d 2. q#Df684%d 3. q#df684%D 4. q#Df685%d

3. Find the matching one below same as "Quiescent"

a. Quiesent b. Quiescant c. Quiescent d. Quicesant.


UNIX Test:

1. The syntax of command statement in UNIX 10. If the permission for a file is 000,then the file can be
accessed by whom?

2. . Where we can run two same programs on a UNIX console at the same time?

3. Which is the Shell of UNIX?

4. What is the number of the masked code ee@?

5. If we are terminated at the middle of the program execution in UNIX,what will happen to the program,
it will

(i) continue running

(ii) terminate

(iii)the o/p will be send to urmail?

6. what is the command to connecto to remote terminals

7. what is the command to fetch first 10 records in a file

8. unix has the following features

a. multithreading

b. multitasking

SQL:

1. We are UPDATING a field in SQL and ALTER the row also.After giving the COMMIT command the
system is crashed.What will happen to the commands given,whether it will UPDATE and ALTER the
table or not?

2. How will add additional conditions in SQL?

C Test:

1. How will u print TATA alone from TATA POWER using string copy and concate commands in C?

2. If switch(n)

case 1: printf("CASE !");


case(2):printf("default");

break;

What will be printed?

9. How will u divide two numbers in a MACRO?

int a,b;

1.main()

2.{

3.scanf("............",&a,&b);

4.if...........{

5.printf("Print A");

6.else

7.Printf("...........");

8.endif}

A. What will come in the 9 dash?

B. What will happen if we replace Print A as Print X?

C. What will come in the 3 dash?

D. What will happen if we interchange 4 and 7?

E. What will come in the 4 dash?


Amdocs Placement paper - Amdocs Question and answers

Hi,

i have attended amdocs xam through amcat .Directly technical written test.

my module was java so there were two programes and 40mins duration was given.

following are the questions

1.write the program for the following output

3*2

4*5*6

10*9*8*7

this is the program output range was n;

2. write the program for the following output

arr={444,55555,7777,666,22,11}

output: arr={5555,7777,444,666,11,22};

both to be done within 40mins.

then 30 multiple choice questions ,It include

pl-sql,

sql-queries,

unix basic commands like cat,wc,grep,sort,ls

output of java expectation questions. etc.


Amdocs test has 2 sections

1. Aptitude consist of 4 sections n consisted of diagrammatic reasoning n non


verbal stuff

2. Technical test consisted of 4 sections each of pseudocode,c,unix n sql all tests r


computer based

The tests were :

1. Analytical reasoning: maths

2. diagrammatic reasoning: In this, we were given 8 diagrams and had to select the
9th corresponding dg frm the givn choices. You have to be very fast in this test.

3. problems to be solved using Venn diagrams.

4. This test was to check our adaptation to the computer screen.We had to solve
abt 30 qs in 15 min.

5. In this test we were given a booklet of abt 7-8 pgs in which there was the syntax
of some hypothetical lang, ( its syntax was somewhat like Visual Basic).
This was very easy since the whole syntax was given & u can refer to it. We were
given almost 90-120mins for this test. If you want you can rd the booklet before
the start of the test.The questions consisted of programs for which you have to find
the o/p or where there is wrong syntax etc.

6. C test: Study pointers very well .Visit www.c4swimmers.esmartguy.com that


helps you to test the C/C++ programming strengths. It also consists of qs on args
of main function, i.e. argc and argv

7. SQL test: It consisted of sql queries mainly inner join, outer join ,group by
statements etc.

8. Unix test: kernel, 1-2 qs on TCP/IP, basic commands ( more on commands).

Some Sample Questions


All birds are animals. All animals are four legged. Implications
a. All animals which are four legged are birds.
b. All birds are four legged
c. Some birds are four legged
d. Some birds are animals but not four legged.
1. a and b 2. b and c 3. only b 4. only d
All fat people are not dancers, food loving people are all fat .Find the contradictory
statement?

The day before yesterday was WEDNESDAY then the day after 2morrow is?

.A goes to the party if B goes

B goes to the party if C goes


C goes to the party if D goes
Totally how many will go to the party?

Mary's father's brother is Andrews Andrews daughter's son is Sunil Brothers name
is Sam Who is Sam to Sunil?

If A>B,A<C,B>D,B<DFind the Shortest?

There are A,B techers and C,D doctors.Find the possible no of combinations that
should not be repeated more than once?

There are 3 males and 2 females,find the possible no of orders that can be made by
making the arrangement as in between two males one women is allowed to sit?
.
Computer checking:

Unix Test
The syntax of command statement in UNIX 10. If the permission for a file is
000,then the file can be accessed by whom?

Where we can run two same programs on a UNIX console at the same time?

Which is the Shell of UNIX?

What is the number of the masked code ee@?

If we are terminated at the middle of the program execution in UNIX,what will


happen to the program,it will
(i) continue running
(ii) terminate
(iii)the o/p will be send to ur mail?
what is the command to connecto to remote terminals
what is the command to fetch first 10 records in a file
unix has the following features

SQL
We are UPDATING a field in SQL and ALTER the row also.After giving the COMMIT
command the system is crashed.What will happen to the commands given,whether
it will UPDATE and ALTER the table or not?
How will add additional conditions in SQL?

C Test
How will u print TATA alone from TATA POWER using string copy and concate
commands in C?
If switch(n)
case 1:printf("CASE !");
case(2):printf("default");
break;
What will be printed?
How will u divide two numbers in a MACRO?
ALL IN A MIX:(VERBAL,QUANTITATIVE,DIAGRAMMATIC,C,SQL,UNIX,COMPUTER
CHECKING ETC..)
1. All fat people are not dancers, food loving people are all fat .Find the contradictory statement?
2. The day before yesterday was WEDNESDAY then the day after 2morrow is?
3. A goes to the party if B goes
B goes to the party if C goes
C goes to the party if D goes
Totally how many will go to the party?
4. Mary's father's brother is Andrews Andrews daughter's son is Sunil Brothers name is Sam
Who is Sam to Sunil?
5. If A>B,A<C,B>D,B<DFind the Shortest?
6. There are A,B techers and C,D doctors.Find the possible no of combinations that should not
be repeated more than once?
7. There are 3 males and 2 females,find the possible no of orders that can be made by making
the arrangement as in between two males one women is allowed to sit?
8. Computer checking:eeeDD
1.eeggg 2.eeeDD3.eerrt,4.DDeee The write answer is 2)eeeDD
9. The syntax of command statement in UNIX
10. If the permission for a file is 000,then the file can be accessed by whom?
11. Where we can run two same programs on a UNIX console at the same time?
12. Which is the Shell of UNIX?
13. Wat is the number of the masked code ee@?
14. We are UPDATING a field in SQL and ALTER the row also.After giving the COMMIT command
the systemis crashed.Wat will happen to the commands given,whether it will UPDATE and
ALTER the table r not?
15. If we r terminated at the middle of the program execution in UNIX,wat will happen to the
program,it will
continue running r terminate r the o/p will be send to ur mail?
16. How will add additional conditions in SQL?
17. How will u print TATA alone from TATA POWER using string copy and concate commands in C?
18. If switch(n)
case 1:printf("CASE !");
case(2):printf("default")
break;
Wat will be printed?
19. How will u divide two numbers in a MACRO?
20. int a,b;
1. main()
2. {
3. scanf("............",&a,&b);
4. if...........{
5. printf("Print A");
6. else
7. Printf("...........");
8. endif}
9..........
A.Wat will come in the 9 dash?
B.Wat will happen if we replace Print A as Print X?
C.Wat will come in the 3 dash?
D.Wat will happen if we interchange 4 and 7?
E.Wat will come in the 4 dash?
AMDOCS PAPER ON 6TH JULY 2007
Hi friends, Amdocs came to our campus for placements on july 6th,2007. This year they have changed
the pattern. It was only 2 hours exam. They have removed the pseudo code section. Total 7 sections
were there – 4 for aptitude and 3 for technical(C/C++/JAVA, sql, unix). They have selected all the
candidates who opted for JAVA in the technical section. There were 95 questions in total. There was
sectional cut off of 60% for aptitude section. For technical section, there was no sectional cut off. But
in total as usual 60% cut off was there. The total paper was objective. 0.25 negative marking was
there.

Section –I
1.Analytical Ability – 20q
2.Pattern Matching – 15q
3.Comprehension -- 10q

Section-II
1.C/C++/Java – We can choose one of them -- 20q
2.SQL -- 15q
3.Unix. – 15q
Analytical Ability

I remember only very few questions. First two questions related to sets. In a forest in total 42 animals
are there of which 21 have 4 legs n 30 have horns n 5 have both. Then

1. How many animals are there with only 4 legs

2. How many animals are there with only horns

3. There is a die. We can see only three sides of the die at a time. When 3 was on the top 2,4 were on
the adjacent sides like that 2 more cases were given and we have to find out the number which is on
the opposite side of 2

4. sdfsdf

5. questions 5-10 are alike. Two statements n one question will be there. All of them will be having the
same options of

a. The question can be answered with help of only Statement I.

b. With help of only Statement II.

c. We need both the statements to answer the questions

d. We can’t answer the question at all.

And I remember some questions among them

What is the value of sin ½ ? n the statements are


a. sin½cos½=0
b. sin½-cos½=0
What is the value of n?
a. k3-n3=0
b. k=0
Is A=1?
a.3A2/5A2=3/5
b.AB=1
…..like that
Questions 12-16 will be having some number conversions. In general they will give the binary to
decimal conversion indirectly. Like for us they have given the following instructions.

In a number system, $ represents 1 and * represents 0. $ when shifted to left , will be multiplied by
2. So 4 is represented as $** .
And they have given the questions like evaluate the expression like that. And in another paper I saw
that they have given the same pattern except that @ represents 1 and # represents 0.
Pattern Matching

In pattern Matching the following options were there for questions 1-3.

A. The expression is same as A&C

B. The expression is same as B&C

C. The expression is same as A&B

D. All are same.

E. None of them are same.

Sample question:

1. [email protected]

A. [email protected] B.nnMMM@734 C. [email protected]

Be careful in this section

2. In some system + represents *, - represents +, * represents / and / represents- then evaluate the
following expression 6/8-3*6+4

3. Similar kind of question with different system

For Questions 6-10 they have given selection criteria of a company and we have to find out whether
the given candidate is eligible or not like

The candidate need the following:

1. He should have 60% till 12th in all the examinations

2. He should have minimum of 65% in graduation and 70% in post graduation

And he should satisfy atleast one of the following conditions:

1. He should have recommendation letter.

2. He should be an athlet in atleast state level

1. Rahul have 62% in 12th , 75% in graduation n 80% in PG. He was tennis champion in university
Level. (Ans: not eligible)

Questions 11-15 also have the same type of questions but the selection criteria is different.

Comprehension
We were given a comprehension related to sequential, direct memory addressing, indexing n hashing
and based on that 10q were there.

1. What is the output?

Struct ee

int i;}

Main()

Printf(“main()”);

}(Note: Semicolon is missing after struct)

2.What is the output?

Main()

Int I=5;

For(i=5;i>=0;i--)

Printf(“%d”,i); Main();

}(Note:I is not a static variable)

3. What is the output?

Main()

Char *p;

p=fun();

Printf(“%s”,*p);

Char* fun()

Char b[]=”hello”;

Return b;

}
Some more questions on strings, One question was there on enumerations …. Like that…..

SQL

Most of the questions u can answer only if u know PL/SQL n with some knowledge of ORACLE.

UNIX

My seniors told me that in previous papers shell scripting was not there but this year we have some
questions on shell scripting too. So be prepared for that.

1. What is the output? – shell scripting for loop and command line arguments

2. One question on $$ -- used for shell variables

3. What happens when we give cal j 1997—j is for jan, june,july

4. One question on pipes using tee


Amdocs HR interview Questions
25323

How to Answer Common interview Questions?

"An interview is a great opportunity to reflect on your past accomplishments and future goals, Take
the time to review what you have done, where you want to go, be honest and to the point. If you
engage in conversation in a compelling, relevant and positive way with your prospective employer,
you'll give yourself the best chance to land the job you want."

1.Tell me about yourself?

This question may be challenging because you need to find a good balance between providing enough
information about yourself, without rambling. The key is to keep your answers focused on information
relevant

to the position.

2.What are your weaknesses?

This is one of the questions job seekers fear the most. The best way to answer is by choosing a
professional trait and explain how it can be an advantage if well managed. When you identify a
weakness, remind the employer you are actively taking actions to correct it. For example, "I used to
have trouble with procrastination, now I have learned to write down a list of things that I need to do,
and keep a calendar to keep track of deadlines."

3.What are your long-range career goals?

The employer wants to know if you can see yourself working for the company on a long-term basis.
Emphasize that you want to secure a position that offers opportunities to grow, develop skills and take
on challenges and responsibilities. Do not indicate that you hope to start your own business, change
careers or are thinking of going back to school full-time.

4.What’s your definition of success?

This is a challenging one for many a job hunter because success can be subjective. You might think
that success means landing this job and working your way up in the company, but your employer
wants to know why you would be successful with the company. What would you be doing on a day to
day basis that would lead to success? You might talk about how you maintain a strong work ethic,
work with feedback from your boss and peers, and maintain a high level of integrity at all times.

5.What motivates you to do a good job?


The answer to this one is not money, even if it is. You should be motivated by life's noble pursuits. You
want recognition for a job well done. You want to become better at your job. You want to help others
or be a leader in your field.

6.What's your greatest strength?

This is your chance to shine. You're being asked to explain why you are a great employee, so don't
hold back and stay do stay positive. You could be someone who thrives under pressure, a great
motivator, an amazing problem solver or someone with extraordinary attention to detail. If your
greatest strength, however, is to drink anyone under the table or get a top score on Mario Kart, keep it
to yourself. The interviewer is looking for work-related strengths.

7.Tell me what you know about this company?

Do your homework before you go to any interview. Whether it's being the VP of marketing or the
mailroom clerk, you should know about the company or business you're going to work for. Has this
company been in the news lately? Who are the people in the company you should know about? Do the
background work, it will make you stand out as someone who comes prepared, and is genuinely
interested in the company and the job.

8.Why do you want to work at X Company?

This should be directly related to the last question. Any research you've done on the company should
have led you to the conclusion that you'd want to work there. After all, you're at the interview, right?
Put some thought into this answer before you have your interview, mention your career goals and
highlight forward-thinking goals and career plans.

9.Why did you leave your previous job, and why are you leaving your current position?

Be as honest and specific as possible. Remain positive and focused on the future. Always be respectful
of your previous employer. If you currently have a job, focus on what kind of skills you want to
develop and how this position fits in with your career plan.

10.Where else have you applied?

This is a good way to hint that you're in demand, without sounding like you're whoring yourself all
over town. So, be honest and mention a few other companies but don't go into detail. The fact that
you're seriously looking and keeping your options open is what the interviewer is driving at.

11.What are your salary expectations?

Try to avoid giving out a precise number at this point. Focus on how important it is for you to learn
more about the job. If pressed to answer - give a range of what you understand you are worth in the
marketplace.
12.Do you have any questions?

This is a great opportunity to show your interest in the company. Ask questions about the company's
culture, advancement opportunities and what you can expect from your future colleagues.

Why is this position open?

Can you describe a typical day or week in the position?


Amdocs previous years placement procedure 2012,2013 Amdocs visited our campus last
year for their 2014-2015 batch. Amdocs selection procedure was simple Amdocs First
section was Aptitude and technical on line test and Technical and Hr interview. For detailed
informations and selection procedure details refer below candidates experiences

Hi All,
Amdocs visited our campus on 14th May . First of all there was an online test conducted by MeritTrac
company on 12th May and then results were declared on 14th.
The details of Online test -
Sections -
1) Analytical - Quantitative - 20 questions
Learning Ability Logical) - 15 questions
Technical Passage - 10 questions

2) Technical - C/C++/Java - 20 questions


SQL - 15 questions
Unix - 15 questions

4) No negative marking

5) 60% Cutoff in both sections.

Guys analytical section was very easy and requires a day preparation only. Go through RS Agrawal for
Quantitative and Logical. Technical Passage was very easy where a passage related 2 computer
terminology was given. Most of the questions can be solved directly For rest go through the passage
fast. Dont waste time in this.

But technical section was tough.

Choose any language from C/C++/Java and this section will really test your programming skills and
concepts. If you are choosing C then go through pointers very well. OOPS concepts must b very clear
if you are choosing Java or C++. Then comes the SQL section. Some of the questions were so difficult
that even I havn't heard some of them. Practice your queries like subqueries, joins, concepts like
views, indexes, database terminologies must be clear.Keep some extra time for this section as there
were some questions where some queries were given and you have to find error or select best query.
At last there was Unix. Go through some of the basic commands like cat, tee, chmod, grep etc along
with their attributes. This section was easy if you are comfortable with allthe basic commands. Go
through VI editor and its commands, 3-4 questions from it must b there.
Books -
For sql - Ivan Bayross
For unix - Sumitabha Das

After 2 days i.e on 14th results were declared and out of around 150 students only 12 cleared the
apti. So a lot of focus is given 2 apti, so practice hard. Then TI and HR interview was there.

Check the company profile and they can also ask questions based on that.
Guys if you clear the apti then be cool because 70% of the battle has been won. The TI of mine was
very cool. It went for around 1 hr and he basically asked some of the basics of sql like foreign key,
basic query, normalization etc and basic commands of unix. Whatever language you have selected in
apti, he will ask questions based on that. So choose carefully. Guys be prepared with ur project what
you have done bcoz they focus a lot on ur project. After that my HR interview was a basic one like Tell
me about yourself, hobbies, career objective, relocation, working in night shifts, achievements etc.

Don't take HR lightly. Finally only 4 were selected and I was one of them. Guys 1 thing i want to tell
u that AMDOCS is really a very good company with a lot of opportunities. They offered us a package of
3.5 pa there is a yearly performance bonus of around 1 lakh. So guys prepare yourself very well and
see u in AMDOCS. Feel free 2 get back 2 me for any queries.

All the Best


- Sachendra Pal
AMDOCS PAPER AT NOIDA ON JULY 2006 AT DELHI

Hi,
I attended Amdocs technical test before three months. The test comprises of 5-6 sections and the there is
sufficient separate time
for each sections. The test is through there software " pilate". I have seen that many of you need the
Amdocs papper. I don't remember
any question but i will explain the pattern in detail.

Be cool, the cut off for this is 60% absolute in this test that is easy to achieve,

Different sections:

->> PROGRAMMING SECTION:time : 1 hour ( sufficient)


------------------------------ ----------------------------

For this you will be given a booklet of 5-10 pages that contains the basics of Amdocs derived language
...very similar to C... Please read
it carefully before start attempting this section ( there is some problem in the software , so the time get
started as u click on this section). So please first read it then start the test , even examples.

There are 5-6 main questions.. they are like algorithm.. you have to understand what to be done in the
programme and there are 4-5 sub
questions for each main question. The subquestion are of fill in the blanks type, some are for pedicting the
output ect.

->>LANGUAGE TEST : 20 que, 30 minutes


------------------------------ ---------------
In the begening you have to select any programming language like C,C++,Java. I appeared for C and the
questions are easy. Time : more
than sufficient.

->> SQL /DATABASE TEST : 20 que: 30 min


------------------------------ --------------------------
Easy one SQL commands, 1 que on views, 1-2 questions are on basic database.

->> UNIX : 20 que, 30 minutes


------------------------------ -------------------
Easy, basic UNIX COMMAND... read yeswant kanitkar book.. starting 5 chepters..

4-5 questins on general things like on protocols,TELNET ect.


->>PATTERN MATCHING SECTION : 60 questions , 6 minutes.
------------------------------ ---------------------------

This is unique,easy and scoring part. But the time is very very less.. u have to be very fast. Generally one
can attempt 20-30 que only.....
But this is very important to score good in this section..

example:

for ( ;x + 5*y >800 ; ++i+++)


is similar to
1.for ( ;x - 5*y >800 ; ++i+++)
2.for ( ;x + 5*y >800 ; ++i++)
3.for ( ;x + 5*y >800 ; ++i+++) CORRECT
4.for ( ;x + 5*y >80; ++i+++)

See here all the options are looking similar. You don't need to apply any logic, any calculation... just find
the same "pattern" ... its quite hard to attempt in fraction of seconds. Your main consern in this section
should be ACCURACY and TIME.

Perhaps there is NO NEGETIVE marking, so before 1 minutes just mark all ( note that there is separate
time for each section, so in 6
minutes, this section will go out)

->>APPTITUDE TEST 20 que, 30 minutes

------------------------------ ------------------------------ -----------------


The questions are quite good and need some practice. Time is main concern time and work
age
strems
percentage and ration
profit and loss

->>NON VERBAL REASONING TEST 20 que, 30 minutes

------------------------------ ------------------------------ -----------------


Good questions, little tough, time is concern.
Practice some RS Agrawal book.

questions are like...


- complete the sequence.. and 4 pictures are given in and the 5th one is to be chosen through the given
options.
->>VERBAL REASONING TEST 20 que, 30 minutes

------------------------------ ------------------------------ -----------------


There are basically the questions of data sufficiency and questions based on venn digramms... like

All A are B.
Some B are D.

then which is true


....
.....
------------------------------ ------------------------------ --------------
Best of luck.
AMDOCS PAPER ON 2ND NOVEMBER AT PATIALA
Hello friends……I am Anish Batra…I hv done MCA from Thapar University,Patiala..I wanna share my
experience about Amdocs selection procedure….there were 150 students in the test and the only 14
cleared the test and out of them 10 were selected…n thanks to god my name was there in the
list…..Friends there was an online test of Amdocs for 2 hours conducted by merittrac….consists of
various sections…

There were mainly two sections...

1.Aptitude

2.Technical.

There were various subsections..

In Aptitude..

1.Quant…

2.attention to detail (like pattern matching)…

3.comprehension (based on computers).

Now in Technical…

1.c/c++/java (you have to choose one)..

2.sql

3.unix.

Friends this test was a mixture of all kind of questions.. tough n medium n easy.. you have to
concentrate very much to clear the test…because test is main hurdle… there was no subsection cutoff
and no negative marking…but overall sectional cutoff was there so u need to concentrate on both
sections equally…to clear the unix just go through the book of samitbha das…it’s a very good book for
unix….n for sql that ivan bayross is sufficient…n fro c just ptactice the outputs n basic concepts of c….n
for aptitude r.s aggarwal…..

Now Interviews…
1.Iechnical..

The panel was very cool….actually one thing I want to tell u that just leave interviews in the hands of
god….bcoz its not known that wt they will ask in interview…u just read your comfortable subjects and
rest leave on god…

2.HR
Mine was only for 10 minutes.. they just ask simple questions.. nothing worry about that.. but you
should know about Amdocs very well….just visit the site of Amdocs n note down every point n also in
ppt….But be sure that if u have a dream to be placed in Amdocs then prepare for it very
consistently…because to clear it u need good preparation
Amdocs General aptitude

1. General Aptitude

2. Paying Attention

3. Learning ability

4. Java/ C++/ C

5. SQL

6. UNIX

First three sections were extremely easy. Try to score max. Of these three sections.

Questions on Java were easy but covered vast concepts like OOPS.

1-2 questions were asked each from threading. exceptions, inner classes and collections.

SQL was bit difficult. You must know about views thoroughly. Just an overview might not be enough.

I didnt know anything about UNIX. But other candidates were saying that it was easy only.

If you score more than 65 % overall you will get through. In all there were 95 questions which have to
be done in 120 minutes.. If you know techica; well (or do not know what to do in a particular section
:)) time well be enough..

From about 600 students that gave the exam 49 were selected for the interviews. Luckily I was one of
them. We recieved the call for interviews on 13 October and interviews were held on 16 October in
their Office at Gurgaon...

Technical Interview panel was very cool.. They try to make you fully comfortable..

Q. Tell me about yourself

Q. What have you done in past months.

Q. Then in Java they asked about OOPS concepts.

Q. In different ways overloading can be implemented.


Q. Can main function be used more than once in java

Q. How many catch blocks can be put after try block

Q. What should be the order of preference for that

Q. Memory management in java

Q. Use of finalize function

Q. What project did you made in curriculum

Q. Why did you choose that?

Q. Innovative ideas that you putin that?

Q. Then a littlle code about project.

Q. What are the DDL, DCL, DQL, DML querries

Q. Difference between delete and drop?

Q, Joining a table?

Q. Different type of joins

Q. List 10 UNIX commands brethlessly..

Q. What are your likes and dislikes?


Q. What type of music deo you like?

Q. Sing a song for us?

Q. Solve this puzzle in 1 minute( Was not able to solve it)

The interview went for about 45 minutes. If you give 70% questions right you will be through.

Results were announced about 4 hours later.. 15 students were selected for the HR round..

HR round

Q. Tell me about yourself

Q. Strengths nd weaknesses. Why?

Q. Achievements in life

Q. Why amdocs?

HR was like formality only. Around 12 students were finally selected.. With God's grace I was one of
them We were given offer letters on the same evening.

My suggestion will be to try to help each other out during process. Process of Amdocs is such that
your competition is with you only. Not others.. Best of luck..
Amdocs came in piet on 3rd of oct, 2012 for Off Campus..

Amdocs had 6 sections:-

1. General Aptitude

2. Paying Attention

3. Learning ability

4. Java/ C++/ C

5. SQL

6. UNIX

First three sections were extremely easy. Try to score max. of these three sections.

Questions on Java were easy but covered vast concepts like OOPS. 1-2 questions were asked each
from threading. exceptions, inner classes and collections.

SQL was bit difficult. You must know about views thoroughly. Just an overview might not be enough.

I didnt know anything about

UNIX. But other candidates were saying that it was easy only.

If you score more than 65 % overall you will get through.

In all there were 95 questions which have to be done in 120 minutes..

If you know techica; well (or do not know what to do in a particular section :)) time well be enough..

From about 600 students that gave the exam 49 were selected for the interviews. Luckily I was one of
them. We recieved the call for interviews on 13 October and interviews were held on 16 October in
their Office at Gurgaon...

Technical Interview panel was very cool.. They try to make you fully comfortable..

Q. Tell me about yourself

Q. What have you done in past months.

Q. Then in Java they asked about OOPS concepts.

Q. In different ways overloading can be implemented.

Q. Can main function be used more than once in java


Q. How many catch blocks can be put after try block

Q. What should be the order of preference for that

Q. Memory management in java

Q. Use of finalize function

Q. What project did you made in curriculum

Q. Why did you choose that?

Q. Innovative ideas that you putin that?

Q. Then a littlle code about project.

Q. What are the DDL, DCL, DQL, DML querries

Q. Difference between delete and drop?

Q, Joining a table?

Q. Different type of joins

Q. List 10 UNIX commands brethlessly..

Q. What are your likes and dislikes?

Q. What type of music deo you like?


Q. Sing a song for us?

Q. Solve this puzzle in 1 minute( Was not able to solve it)

The interview went for about 45 minutes. If you give 70% questions right you will be through. Results
were announced about 4 hours later.. 15 students were selected for the HR round..

HR round

Q. Tell me about yourself

Q. Strengths nd weaknesses. Why?

Q. Achievements in life

Q. Why amdocs?

HR was like formality only. Around 12 students were finally selected.. With God's grace I was one of
them We were given offer letters on the same evening.

My suggestion will be to try to help each other out during process. Process of Amdocs is such that
your competition is with you only. Not others..

Best of luck..
Amdocs new and latest placement paper questions of aptitude and anlytical

Amdocs placement papers -Aptitude Questions. Amdocs selection procedure consists


1)Written Test 2)Technical test-coding section 3)Group Discussion 4) Interview-Technical,
Personal HR rounds In Amdocs written test have 3 sections Aptitude reasoning english
Amdocs Technical test languages C,C++ Java .SQL/PL SQL Unix Amdocs sample and model
on line test questions with answers Amdocs previously asked questions for learn and
practice Amdocs these questions prepare yourself for upcoming Amdocs off and on campus
recruitment process for the batch 2014-2015

Amdocs new and latest placement paper questions of aptitude and analytical
reasoning

1.One of the following is my secret word: AIM DUE MOD OAT TIE. With the list in front of , if
I were to tell you any one of my secret word, then you would be able to tell me the number
of vowels in my secret word. Which is my secret word?

Ans. TIE

2.In the following figure: A B C

EFG

Each of the digits 1, 2, 3, 4, 5, 6, 7, 8, and 9 is:

a) Represented by a different letter in the figure above.

b) Positioned in the figure above so that each of A + B + C,C + D +E,E + F + G, and G + H


+ I is equal to 13. Which digit does E represent?

Ans.E is 4

3.One of Mr. Horton, his wife, their son, and Mr. Horton's mother is a doctor and another is a
lawyer.
a)If the doctor is younger than the lawyer, then the doctor and the lawyer are not blood
relatives.

b)If the doctor is a woman, then the doctor and the lawyer are blood relatives.

c)If the lawyer is a man, then the doctor is a man.

Whose occupation you know?

Ans.Mr. Horton:he is the doctor.

4.Here is a picture of two cubes:

a) The two cubes are exactly alike.

b) The hidden faces indicated by the dots have the same alphabet on them.

Which alphabet-q, r, w, or k is on the faces indicated by the dots?

Ans.q

5. In the following figure:

A D

B G E

C F

Each of the seven digits from 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9 is:

a) Represented by a different letter in the figure above.

b) Positioned in the figure above so that A*B*C,B*G*E, and D*E*F are equal.

Which digit does G represent?

Ans. G represents the digit 2.


6.Mr. and Mrs. Aye and Mr. and Mrs. Bee competed in a chess tournament.Of the three
games played:

a)In only the first game werethe two players married to each other.

b)The men won two games and the women won one game.

c)The Ayes won more games than the Bees.

d)Anyone who lost game did not play the subsequent game.

Who did not lose a game?

Ans.Mrs.Bee did not lose a game.

7.Three piles of chips--pile I consists one chip, pile II consists of chips, and pile III consists
of three chips--are to be used in game played by Anita and Brinda.The game requires:

a)That each player in turn take only one chip or all chips from just one pile.

b)That the player who has to take the last chip loses.

c)That Anita now have her turn.

From which pile should Anita draw in order to win?

Ans.Pile II

8.Of Abdul, Binoy, and Chandini:

a)Each member belongs to the Tee family whose members always tell the truth or to the El
family whose members always lie.

b)Abdul says ''Either I belong or Binoy belongs to a different family from the other two."

Whose family do you name of?

Ans.Binoy's family--El.

9.In a class composed of x girls and y boys what part of the class is composed of girls

A.y/(x + y)

B.x/xy

C.x/(x + y)

D.y/xy

Ans.C
10.What is the maximum number of half-pint bottles of cream that can be filled with a
4-gallon can of cream(2 pt.=1 qt. and 4 qt.=1 gal)

A.16

B.24

C.30

D.64

Ans.D

11.If the operation,^ is defined by the equation x ^ y = 2x + y,what is the value of a in 2 ^


a=a^3

A.0

B.1

C.-1

D.4

Ans.B

12.A coffee shop blends 2 kinds of coffee, putting in 2 parts of a 33p. a gm. grade to 1 part
of a 24p. a gm.If the mixture is changed to 1 part of the 33p. a gm. to 2 parts of the less
expensive grade, how much will the shop save in blending 100 gms.

A.Rs.90

B.Rs.1.00

C.Rs.3.00

D.Rs.8.00

Ans.C

13.There are 200 questions on a 3 hr examination. Among these questions are 50


mathematics problems. It is suggested that twice as much time be spent on each maths
problem as for each other question. How many minutes should be spent on mathematics
problems
A.36

B.72

C.60

D.100

Ans.B

14.In a group of 15,7 have studied Latin, 8 have studied Greek, and 3 have not studied
either.How many of these studied both Latin and Greek

A.0

B.3

C.4

D.5

Ans.B

15.If 13 = 13w/(1-w) ,then (2w)2 =

A.1/4

B.1/2

C.1

D.2

Ans.C

16. If a and b are positive integers and (a-b)/3.5 = 4/7, then

(A) b < a

(B) b > a

(C) b = a

(D) b >= a

Ans. A
17. In june a baseball team that played 60 games had won 30% of its game played. After a
phenomenal winning streak this team raised its average to 50% .How many games must
the team have won in a row to attain this average?

A. 12

B. 20

C. 24

D. 30

Ans. C

18. M men agree to purchase a gift for Rs. D. If three men drop out how much more will
each have to contribute towards the purchase of the gift/

A. D/(M-3)

B. MD/3

C. M/(D-3)

D. 3D/(M2-3M)

Ans. D

19. A company contracts to paint 3 houses. Mr.Brown can paint a house in 6 days while
Mr.Black would take 8 days and Mr.Blue 12 days. After 8 days Mr.Brown goes on vacation
and Mr. Black begins to work for a period of 6 days. How many days will it take Mr.Blue to
complete the contract?

A. 7

B. 8

C. 11

D. 12

Ans.C

20. 2 hours after a freight train leaves Delhi a passenger train leaves the same station
traveling in the same direction at an average speed of 16 km/hr. After traveling 4 hrs the
passenger train overtakes the freight train. The average speed of the freight train was?

A. 30
B. 40

C.58

D. 60

Ans. B
Amdocs Placement paper
01/3/2012
Posted on :13-02-2016
Q1. A 140 cm long tape is to be cut into two pieces such that one
piece will be 2/5th as long as the other. Calculate the length of the
shorter piece.

a) 30 cm
b) 20 cm
c) 40 cm
d) 35 cm

Q2. A boat running upstream takes 4 hours and 48 min to cover


certain distance, while it takes 3 hours to cover the same distance
running downstream, what is the ratio between speed of boat and
speed of the water current respectively?

a) 2:1
b) 32:9
c) 39:9
d) none

Q3. Which of these numbers is divisible by 26?

a) 190554
b) 190544
c) 190552
d) 190548

Q4. (1/3) of a number is 3 more than the (1/6) of the same


number?
a) 6
b)16
c)18
d)21

Q5. There are two water tanks A and B, A is much smaller than B.
While water fills at the rate of 1 liter every hour in A, it gets filled up
like, 10, 20, 40,80, 160…..in tank B. 1/8 th of the tank B is filled in
22 hours. What is the time to fill the tank fully?

a) 26
b) 25
c) 5
d) 27

Q6. In a market 4 men are standing .The average age of the four
before 2 years is 55, after some days one man is added and his age
is 45. What is the average age of all?

a) 55
b) 54.5
c) 54.6
d) 54.7

Q7. In the reading room of a library, there are 10 tables, 4 chairs per
table. In each table there are different numbers of people seated.
How many tables will be left out without at least 1 person?

a) 8
b) 6
c) 2
d) 7

Q8. A person is rock climbing at an altitude of 800 m. He go up by 7


mph. and come down by 9 mph. what was his average speed?
a) 7.875 mph
b) 7.125 mph
c) 7mph
d) 7.5 mph

Q9. A lady builds 9cm length, 10cm width,3cm height box using 1
cubic cm cubes. What is the minimum number of cubes required to
build the box?

a) 730
b) 270
c) 720
d) 310

Q10. x/2y = 2a,then 2x/x-2ay=?

a) 4
b) 8
c)16
d) 2

Q11. Out of 7 children, the youngest is boy. Find out the probability
that all the remaining children are boys?

a)1/64
b)1/32
c)1/128
d)1/256

Q12. Sangakara and Pointing want to use a dice to select who will
bat first but the dice is biased. To resolve the issue, Pointing takes
out a coin. What is the probability that coin gives the right answer?

a)1/2
b)1/6
c)1/12
d)6/10
C++ Interview Questions - Amdocs. (01-3-2012)

Q13. Write a program to show string copy and concatenate in C++?

Q14. What will be the output of the program?

If switch(n)
case 1:cout<<"CASE !";
case(2):cout<<"default";
break;

a) CASE!
b) default
c) Error
d) None of the above

Q15. How to use Macros in C++?

Q16. Maintaining the state of an object is called____.

a) Serialization
b) Persistence
c) Marshalling
d) None of these options

Q17. What is the name of the java file of the given program?

import myLibrary.*;

public class ShowSomeClass


{
// your class code
}

a) myLibrary.java
b) ShowSomeClass.java
c) ShowSomeClass
d) ShowSomeClass.class

Q18. Out of below mentioned options, which of the following is


TRUE?

a) In java, an instance field declared public generates a


compilation error.
b) int is the name of a class available in the package java.lang
c) Instance variable names may only contain letters and digits.
d) A class has always a constructor
e) The more comments in a program, the faster the program runs.

Q19. What is the output of the program given below?

String river = new String(“Columbia”);


System. out. println(river.length());

a) 6
b) 7
c) 8
d) Columbia
e) river

Q20. What is a constructor?

a) Same name as the class it is declared within.


b) is used to create objects.
c) may be declared private
d) A and B only
e) A, B and C

Q21. What is the output of the following program?

main ()
{ int x=5;
x=x--1;
cout<< x; }
a) 5
b) 4
c) 3
d) None of these

Q22. What is the output of the following program?

float a=.7
if(a=.7)
cout<<"this";
else
cout<<"that";

a) this
b) that
c) Error
d) None of the above

Q23. What is the output of the following program?

switch(n)
case 1: cout<<"hello";
case (2) : cout<<"default";
break;

a) hello
b) default
c) Garbage value
d) hello and default
e) None of the above
Q1. What is 456 times 121?

(a) 56463
(b) 54167
(c) 55176
(d) 54155
(e) None of theses

Q2. The product of two consecutive even number is 12768. What is


the greater number?

(a) 110
(b) 108
(c) 114
(d) 112
(e) None of theses

Q3. 56.6 x 16.6 x 6.6 = ? (a) 6102.196

(b) 6021.196
(c) 6210.196
(d) 6012.196
(e) None of these

Q4. ? .46 -16 = 368

(a) 1124
(b) 1236
(c) 1058
(d) 966
(e) None of these

Q5. There are 1225 employees in an organization, out of which 40%


got transferred to different places. How many such employees got
transferred?

(a) 540
(b) 490
(c) 630
(d) 710
(e) None of these

Q6. If the numerator of fraction is increased by 50% and the


denominator is increased by 300% , the resultant fraction is 2 .
What was the original fraction?

Q7. Anil invested an amount for three year at a simple interest rate
of 9% p.a. . He got an amount of Rs. 19050 at the end of three years,
What principal amount did he invest?

(a) 14500
(b) 11050
(c) 1440
(d) 10950
(e) None of these

Q8. What will be the compound interest on an amount of Rs. 5000


for a period of 2 year at 8 % p.a.

(a) 840
(b) 400
(c) 823
(d) 416
(e) None of these

ANS: 1. C 2. C 3. E. 4. C 5. B 6. B 8. E
AMDOCS PAPER ON 29th SEPTEMBER 2008

Q1. All birds are animals. All animals which are four legged are
birds.

b. All birds are four legged


c. Some birds are four legged
d. Some birds are animals but not four legged.

1. a and b
2. b and c
3. only b
4. only d

Q2. All fat people are not dancers, food loving people are all fat .Find
the contradictory statement?

Q3. The day before yesterday was WEDNESDAY then the day after
2morrow is?

A goes to the party if B goes


B goes to the party if C goes
C goes to the party if D goes

Totally how many will go to the party?

Q4. Marys fathers brother is Andrews Andrews daughters son is Sunil


Brothers name is Sam Who is Sam to Sunil?

Q5. If A>B,A D,B

Q6. There are A,B teachers and C,D doctors. Find the possible no of
combinations that should not be repeated more than once?

Q7. There are 3 males and 2 females, find the possible no of orders
that can be made by making the arrangement as in between two
males one women is allowed to sit? 8.
Computer checking: eee DD

Q1.

1. eeggg
2. eeeDD
3. eerrt
4. DDeee

ANS: 2) eeeDD

Q2. q#Df684%d options would be:

1. q#Df634%d
2. q#Df684%d
3. q#df684%D
4. q#Df685%d

Q3. Find the matching one below same as Quiescent

a. Quiesent
b. Quiescant
c. Quiescent
d. Quicesant.

UNIX Test:

Q1. The syntax of command statement in UNIX 10. If the permission for a
file is 000,then the file can be accessed by whom?

Q2. Where we can run two same programs on a UNIX console at the same
time?

Q3. Which is the Shell of UNIX?

Q4. What is the number of the masked code ee@?


Q5. If we are terminated at the middle of the program execution in
UNIX,what will happen to the program, it will

(i) continue running


(ii) terminate
(iii) the o/p will be send to your mail?

Q6. What is the command to connect to remote terminals

Q7. What is the command to fetch first 10 records in a file

Q8. Unix has the following features

a. Multithreading
b. Multitasking

SQL:

Q1. We are UPDATING a field in SQL and ALTER the row also. After giving
the COMMIT command the system is crashed. What will happen to the
commands given, whether it will UPDATE and ALTER the table or not?

Q2. How will add additional conditions in SQL?

C Test:

Q1. How will u print TATA alone from TATA POWER using string copy and
concate commands in C?

Q2.

If switch(n)
case 1: printf("CASE !");
case(2):printf("default");
break;

What will be printed?


Q2. How will u divide two numbers in a MACRO?

int a,b;

1. main()
2. {
3. scanf("............",&a,&b);
4. if...........{
5. printf("Print A");
6. else
7. Printf("...........");
8. Endif
}

A. What will come in the 9 dash?


B. What will happen if we replace Print A as Print X?
C. What will come in the 3 dash?
D. What will happen if we interchange 4 and 7?
E. What will come in the 4 dash?
Amdocs placement papers -Aptitude Questions

Amdocs new and latest placement paper questions of aptitude and


analytical reasoning

Q1. One of the following is my secret word: AIM DUE MOD OAT TIE.
With the list in front of , if I were to tell you any one of my secret
word, then you would be able to tell me the number of vowels in my
secret word. Which is my secret word?

ANS: TIE

Q2. In the following figure:

ABC
D
EFG
H
I

Each of the digits 1, 2, 3, 4, 5, 6, 7, 8, and 9 is:

a) Represented by a different letter in the figure above.


b) Positioned in the figure above so that each of A + B + C,C + D
+E,E + F + G, and G + H + I is equal to 13. Which digit does E
represent?

ANS: E is 4

Q3. One of Mr. Horton, his wife, their son, and Mr. Hortons mother is
a doctor and another is a lawyer.

a)If the doctor is younger than the lawyer, then the doctor and the
lawyer are not blood relatives.
b)If the doctor is a woman, then the doctor and the lawyer are
blood relatives.
c)If the lawyer is a man, then the doctor is a man.
Whose occupation you know?

ANS: Mr. Horton:he is the doctor.

Q4. Here is a picture of two cubes:

a) The two cubes are exactly alike.


b) The hidden faces indicated by the dots have the same alphabet
on them.
Which alphabet-q, r, w, or k is on the faces indicated by the dots?

ANS: q

Q5. In the following figure:

A D
B G E
C F

Each of the seven digits from 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9 is:

a) Represented by a different letter in the figure above.


b) Positioned in the figure above so that A*B*C,B*G*E, and D*E*F
are equal.
Which digit does G represent?

ANS: G represents the digit 2.

Q6. Mr. and Mrs. Aye and Mr. and Mrs. Bee competed in a chess
tournament.Of the three games played:

a) In only the first game were the two players married to each
other.
b) The men won two games and the women won one game.
c) The Ayes won more games than the Bees.
d) Anyone who lost game did not play the subsequent game.
Who did not lose a game?

ANS: Mrs.Bee did not lose a game.

Q7. Three piles of chips--pile I consists one chip, pile II consists of


chips, and pile III consists of three chips--are to be used in game
played by Anita and Brinda. The game requires:

a)That each player in turn take only one chip or all chips from just
one pile.
b)That the player who has to take the last chip loses.
c)That Anita now have her turn.
From which pile should Anita draw in order to win?

ANS: Pile II

Q8. Of Abdul, Binoy, and Chandini:

a) Each member belongs to the Tee family whose members always


tell the truth or to the El family whose members always lie.
b) Abdul says Either I belong or Binoy belongs to a different family
from the other two."

Whose family do you name of?

ANS: Binoys family--El.

Q9. In a class composed of x girls and y boys what part of the class
is composed of girls

A.y/(x + y)
B.x/xy
C.x/(x + y)
D.y/xy

ANS: C
Q10. What is the maximum number of half-pint bottles of cream that
can be filled with a 4-gallon can of cream(2 pt.=1 qt. and 4 qt.=1
gal)

A.16
B. 24
C. 30
D. 64

ANS: D

Q11. If the operation,^ is defined by the equation x ^ y = 2x +


y,what is the value of a in 2 ^ a = a ^ 3

A. 0
B. 1
C. -1
D. 4

ANS: B

Q12. A coffee shop blends 2 kinds of coffee, putting in 2 parts of a


33p. a gm. grade to 1 part of a 24p. a gm.If the mixture is changed
to 1 part of the 33p. a gm. to 2 parts of the less expensive grade,
how much will the shop save in blending 100 gms.

A.Rs.90
B.Rs.1.00
C.Rs.3.00
D.Rs.8.00

ANS: C

Q13. There are 200 questions on a 3 hr examination. Among these


questions are 50 mathematics problems. It is suggested that twice
as much time be spent on each maths problem as for each other
question. How many minutes should be spent on mathematics
problems
A. 36
B. 72
C. 60
D. 100

ANS: B

Q14. In a group of 15,7 have studied Latin, 8 have studied Greek,


and 3 have not studied either.How many of these studied both Latin
and Greek

A. 0
B. 3
C. 4
D. 5

ANS: B

Q15. If 13 = 13w/(1-w) ,then (2w)2 =

A. 1/4
B. 1/2
C. 1
D. 2

ANS:.C

Q16. If a and b are positive integers and (a-b)/3.5 = 4/7, then

(A) b < a
(B) b > a
(C) b = a
(D) b >= a

ANS: A
Q17. In june a baseball team that played 60 games had won 30% of
its game played. After a phenomenal winning streak this team raised
its average to 50% .How many games must the team have won in a
row to attain this average?

A. 12
B. 20
C. 24
D. 30

ANS: C

Q18. M men agree to purchase a gift for Rs. D. If three men drop out
how much more will each have to contribute towards the purchase
of the gift?

A. D/(M-3)
B. MD/3
C. M/(D-3)
D. 3D/(M2-3M)

ANS: D

Q19. A company contracts to paint 3 houses. Mr.Brown can paint a


house in 6 days while Mr.Black would take 8 days and Mr.Blue 12
days. After 8 days Mr.Brown goes on vacation and Mr. Black begins
to work for a period of 6 days. How many days will it take Mr.Blue to
complete the contract?

A. 7
B. 8
C. 11
D. 12

ANS:. C

Q20. 2 hours after a freight train leaves Delhi a passenger train


leaves the same station traveling in the same direction at an average
speed of 16 km/hr. After traveling 4 hrs the passenger train
overtakes the freight train. The average speed of the freight train
was?

A. 30
B. 40
C. 58
D. 60

ANS: B
Online Assessment: The test link was sent by email. It was lugoTest platform
and the test was 120 mins. The questions included SQL, Java, Linux commands,
and 1 programming question(How to merge 2 arrays and sort them).

● Given a paper of size, A x B. Task is to cut the paper into squares of


any size. Find the minimum number of squares that can be cut from the
paper. Paper Cut into Minimum Number of Squares
● Given an array, divide it into two equal subsets, such that the difference
between the sum of the elements in both arrays should be minimum.

ROUND 1 (Online Aptitude): This round had 5 sections.


1. Quantitative
2. Verbal Reasoning
3. Objectives on PL/SQL and Unix
4. Coding and SQL: This section had 4 questions.
○ Based on arrays, simple array manipulation. (Very Easy)
(choice between C/C++/Java)
○ A variation of subset sum problem (Hard) – DP soln passed all
test cases.
○ Based SQL query using order by, Limit. (Easy)
○ Based SQL query using joins, Order by, group by, Limit, sum,
average. (Easy)
5. Technical objectives:
The choice between C/C++/java to solve the MCQs mainly based on
OOPs concepts.
We were informed about the result the next day and had to undergo a
psychometric test :
Online Test – 2hours: In the online test, four-section were there the first round
comprised of MCQ questions which have five-sections including three coding
questions.
● Section1: Aptitude, 15 questions in 20 minutes.
● Section2: Technical, 18 questions in 20 minutes.
● Section3: 3 coding questions, 60 minutes
● Section4: 10 questions in 10 minutes.
● Section5: C++/ Java technical MCQ, 8 questions in 10 minutes.

In the coding questions, you can use a brute force method. And, it is passing all
the test cases. For MCQ, you should have basics strong in SQL, C++/Java, and
reasoning.
Round 1 (Psychometric Test): It was 15 minutes round in you have to answer
50 MCQ questions. These Questions are just to know about you, your behavior
as a software engineer, and confidence. It was a compulsory round for all
selected in the online test. And, there is no elimination.
In the online test, there are some 250 students and, they cleared 54 students for
the interview.
Round 2 (Technical Interview): It is a technical round and, he asked one coding
question. An integer n is given. You need to find first n prime numbers. For this, I
use sieve methods to get the prime number.
Merge two sorted arrays in O(1) extra
space using QuickSort partition

1. Coding and SQL: It had 2 questions on coding and 2 on SQL queries.


For coding, you could choose the language from C+, C, Java. I don’t
remember if there was Python or not. For SQL, it was restricted to
MySQL. SQL queries were on joins, aggregate functions, group by,
order by. Coding questions: 1. Replace array elements by the sum
of the next two consecutive elements. 2. Find the longest Even Length
Substring such that Sum of First and Second Half is same. In the 2nd
question, we had to print the substring and not the length. O(n^3)
solution was accepted.
There were 2 questions based on problem-solving skills
1. You are given a vector of words. Two words are connected if there is a
difference of at most one character. You have to return a vector
containing words that are connected one way or another.
Eg: CAT, BAT, BAD. Here CAT is connected to BAT directly.
CAT is also connected to BAD indirectly since BAT is connected to
BAD.
2. Note that it is possible that the mutual connection of two words doesn’t lie
between them, consider the following possible test case :
CAT, BAD, BAT
Here, the answer in both cases is the same.
3. There were two SQL query questions as well.

Geeksforgeeks playlist can help you with this:


https://www.youtube.com/playlist?list=PLqM7alHXFySGweLxxAdBDK1CcDEgF-
Kwx
3. MCQs related to core CS Subjects: The subjects such as DBMS, OS, Linux,
Shell Scripting, OOPs, SQL, PLSQL were covered in deep. Although these were
normal questions, you still need to have deep knowledge and know theoretical
concepts. I would suggest Sanchit Jain’s playlist on YouTube for DBMS, OS
preparation. For Linux and shell scripting, I had watched crash courses on
YouTube, which proved to be of great use for me. And yes, these concepts
helped me a lot in answering some questions asked in tech interview. So, please
DO NOT SKIP anything in these subjects.
4. Trace the Output: I was asked to select my preferred Programming language
amongst C, C++, JAVA, Python, JavaScript, etc. I chose JAVA. Then, I had to
trace the output of the Java Programs and point out errors in some of them as
well. GeeksForGeeks has an awesome Set of trace the output for all the
languages. If you complete those, you will be able to easily solve 20 to 30
percent questions. But again, knowing the concepts of the programming
language will help you in solving the maximum questions. I had watched
Durgasoft’s Java Playlist for OOPs, Exception Handling, Collection Framework.
Although the videos are quite long, but trust me, its worth it.
5. Programming Round: This section had four problems 2 were programming
questions and 2 were MySQL Questions. The programming questions were easy
to medium level. If you code regularly (NOT COMPETITIVE CODING) , you can
easily crack these problems. For SQL questions, one of the question was to be
done using a simple select query and Order By Descending query. The second
SQL Question had to be done using a simple Join Operation or Sub Query,
That was end of a 2 hour long first round. You need to be medium fast to be
able to solve everything. NO NEGATIVE MARKING.
Round 2:
A very simple, easy, non elimination Psychometric round. It was just 30 min
test.
Round 3:
This was a technical interview. Very exhaustive, yet very easy. Following were
the questions asked:

You might also like