2023 2024 Student Forum > Management Forum > Main Forum

 
  #2  
13th November 2014, 10:45 AM
Super Moderator
 
Join Date: Apr 2013
Re: Question papers of Accenture

As you want to know the Question papers of Accenture with solutions so, here I am providing you the same.

Here are the attachments for the Question papers of Accenture you can download that and some of the questions are given below:


1) APTITUDE TEST:

Questions = 55 ;
Time limit = 60 minutes

Along with that an essay to write in the same sheet in another 10 minutes. No sectional cut off, no negative marking. Offline (paper & pen) test

Directions for Questions 1-3: Choose the option which will correctly fill the blank.

1. This train travels from London ______ Paris.
A. atB. toC. over D. below
Ans: B

2. We stood at the back ______ the theater.
A. of B. on C. in D. for
Ans: of

3. I will work _________ five o'clock.
A. until B. up C. in D. to

Directions for Questions 4-6: Choose the word nearest in meaning to the word in ITALICS from the given options.

4. The antidote to these problems is hard to find
A. Cause for B. Result of C. Remedy for D. Consequence of E. None of these
Ans: C

5. Because of a family feud, he never spoke to his aife's parents.
A. Crisis B. Trouble C. Problem D. Quarrel E. None of these
Ans: D

6. The article is written in a very lucid style.
A. ElaborateB. Clear C. Intricate D. Noble E. None of these
Ans: B

Directions for Questions 7-10: Choose the answer option which will correctly fill the blank.

7. _________ man ran into the street. A car hit ____ man.
A. A, the B. An, the C. the, the D. A, the

8. The interesting thing about _____ Romans is all the roads that they built in Britain.
A. AB. An C. none of these D. The

9. Albert Einstein was _____ famous scientist. Einstein won _______ Nobel Prize in Physics in 1921.Einstein left his country and lived in _______ States until he died in 1955.
A) A, the, anB) A, the, the C) A, an, the D) An, an, the
Ans: B

10. Are you shopping for ________ health club to join so you can get in shape? Shop wisely! You could end up choosing _______ wrong club and losing more money than pounds.
A) the, an B) the, the C) A, the D) An, the
Ans: C

1.Fill in the blanks
it was quite easy using preposition and article.
i saw him __the airport
__man u see is my father
__university if its status. does not require any advtisement

2.synonyms:- geeta passed her exam and supassed her parents dream. meaning of surpassed: fulfill, meet, exceed (3 synonyms were given)
some easy but confusing

3.two passage: 1 from threading & 2nd from clustering and non clustering
5 questions from each passage.

Reasoning:::::::
1.if *=0 &$=1
a> then 564=
b>find the result of factor of(12,36,64)-2=
2.if *=-,/=+,+=/&*=- then find 7+6/5-4*2=(4problems on it )
two to find out the value and 2 to test which is true

3.2 vein digram of 3 variables
80 students know french 70 know english, 40 know hindi 20 both hindi & english,10 both english & french. how many of them know 3 languages.(similar other problem).

4.which of the following is true:
a>7*6+3/2-4=22.5 b>..................

5.using which statement problm can be solved using i only ,using ii only ,using both ii & i, none find the price of 1 kg of tomato?
similar 3 problems.

6.which of the following are same:
a> 1204.686895 b>1204.686896 c>1204.686895
Essay on my college engineeering days

Maths ::
>problems on profit & loss
>problems on simple intrest
>problems like selection procedure
60% marks is required in english,50% in maths ,40% in hindi
3more condition were given accordingly u have to solve 3 questions.
>problems on time & distance.
atrain is coming at 200km,other 300km
distance ic 450 when they will meeet*

Are the expressions arr and &arr same for an array of integers?
Does mentioning the array name gives the base address in all the contexts?
Explain one method to process an entire string as one unit?
What is the similarity between a Structure, Union and enumeration?
Can a Structure contain a Pointer to itself?
How can we check whether the contents of two structure variables are same or not?
How are Structure passing and returning implemented by the complier?
How can we read/write Structures from/to data files?
What is the difference between an enumeration and a set of pre-processor # defines?
what do the 'c' and 'v' in argc and argv stand for?
Are the variables argc and argv are local to main?
What is the maximum combined length of command line arguments including the space between adjacent arguments?
If we want that any wildcard characters in the command line arguments should be appropriately expanded, are we required to make any special provision? If yes, which?
Does there exist any way to make the command line arguments available to other functions without passing them as arguments to the function?
What are bit fields? What is the use of bit fields in a Structure declaration?
To which numbering system can the binary number 1101100100111100 be easily converted to?
Which bit wise operator is suitable for checking whether a particular bit is on or off?
Which bit wise operator is suitable for turning off a particular bit in a number?
Which bit wise operator is suitable for putting on a particular bit in a number?
Which bit wise operator is suitable for checking whether a particular bit is on or off?
which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?
Write a program to compare two strings without using the strcmp() function.
Write a program to concatenate two strings.
Write a program to interchange 2 variables without using the third one.
Write programs for String Reversal & Palindrome check
Write a program to find the Factorial of a number
Write a program to generate the Fibinocci Series
Write a program which employs Recursion
Write a program which uses Command Line Arguments
Write a program which uses functions like strcmp(), strcpy()? etc
What are the advantages of using typedef in a program?
How would you dynamically allocate a one-dimensional and two-dimensional array of integers?


What does static variable mean?
What is a pointer?
What is a structure?
What are the differences between structures and arrays?
In header files whether functions are declared or defined?
What are the differences between malloc() and calloc()?
What are macros? what are its advantages and disadvantages?
Difference between pass by reference and pass by value?
What is static identifier?
Where are the auto variables stored?
Where does global, static, local, register variables, free memory and C Program instructions get stored?
Difference between arrays and linked list?
What are enumerations?
Describe about storage allocation and scope of global, extern, static, local and register variables?
What are register variables? What are the advantage of using register variables?
What is the use of typedef?
Can we specify variable field width in a scanf() format string? If possible how?
Out of fgets() and gets() which function is safe to use and why?
Difference between strdup and strcpy?
What is recursion?
Differentiate between a for loop and a while loop? What are it uses?
What are the different storage classes in C?
Write down the equivalent pointer expression for referring the same element a[i][j][k][l]?
What is difference between Structure and Unions?
What the advantages of using Unions?
What are the advantages of using pointers in a program?
What is the difference between Strings and Arrays?
In a header file whether functions are declared or defined?
What is a far pointer? where we use it?
How will you declare an array of three function pointers where each function receives two ints and returns a float?
what is a NULL Pointer? Whether it is same as an uninitialized pointer?
What is a NULL Macro? What is the difference between a NULL Pointer and a NULL Macro?
What does the error 'Null Pointer Assignment' mean and what causes this error?
What is near, far and huge pointers? How many bytes are occupied by them?
How would you obtain segment and offset addresses from a far address of a memory location?

I am Naresh Gurram & I am B.Tech(EEE) 2007 passed out std (SBIT, Khammam, AP). I attended a off- campus recruitment of Accenture in HKBK college of eng. Bangalore. That day Merittrac people conducted only written test due to lot of crowd. I heard that no. registered are around 7,000 on the day for the test.*

In the test at the end we have to write the essay also. Here I am giving qus which I remembered.
Test consists of 3-sections as usual & sectional cut-off is there, those are
1. Verbal
2. Aptitude
3. Analytical*

Written test (Conducted by Merit Trac) & Essay (about ur college life)

VERBAL
This section consisted of simple English ques...just read with concentration and u will get the answer soon though the options. There are two unseen passages under those there are qus, friends don't read entire passage it will take lot of time, go through qus and u can easily ans those from passage I remember are
1. _____his vacation, he trekked ____ the hills and walked _____ the river.
a.during,over,along
b.in,in,across.*
and some similar options.. well i chose the first one....next 4 ques were same filling in the blanks type.. then next 3 included synonyms
others word ws enjoined...it was in sentence form...i ll say these are also easy ones not the tough ones. thos type included round bout 4 questions..*
Due to his versatile qualities, Mohan was able to do all types of jobs quite easily.
Ans: Flexible

There are____ poems which are written by _____people is filed as one of __best poems .
Ans: The, the, the
After there were two passages given. Direct answers were given in passage's need not to read the whole passage. just read the ques first and then answer it.*
1st Passage was "LAN & Wan"

The verbal section is easy but a bit confusing do carefully.

APTITUDE *
This section consists of ven diagrams, direction related qus, and some arithmetic qus these are also time consuming qus*

practice is only the solution to ans easily. some qus are

21.In a class of 36 students, 20 students know English, 8 know both Hindi & English, 6 don't know both the languages then find how many students know hindi ?

22.A group of 100 stud appears for two tests, maths & science, 74 std passed in *maths, 76 std passed in science & 60 std passed in both. Then find how many std are failed in both sub?

23.In a library 2/3rd of people have books, 12 have magazines, 6 have magazines & books and 2 are just observing the people then find total members in the library?

24.In a ground, 40 can play football, 25 can play cricket, 15 can play both, find the total no. of players in the ground in which each one can play atleast one game.

25.based on same, some percentages are given instead of numbers.

26.based on same,

27.In a room 4 persons are there like *A,B,C,D. A is at east of B,B is at north of C, C is at west of D, and D is at south of A,then how C is directed to A?

28.A man traveled 10km in the south direction, turn left and traveled 4km,turn left & traveled 4km, now turn right and traveled 4km& stopped his journey. Then what is the shortest distance b/w start position & end position (in km).
a.8 * b.10 * *c.12 *d.8.16

29.A man got a prize, Shinha is pointing to the man and is saying "he is brother of my uncle's daughter" then how shinha related to th man?
a. brother * b. brother-in-law * c. cousin *d.Nephew * * *

30. based on same.

31-35Q are based on data sufficiency.*
Two sentences are given below. Mark the answer according to the following:*
A- If only FIRST sentence is required to verify the sentence
B- If only SECOND sentence is required to verify the sentence
C- If both FIRST and SECOND sentence are required to verify the sentence
D- Cannot be verified even if both sentences are considered
*Ex:
31.A boy has total of Rs.4 in 1Rupee& 50 paisa coins.
I- *He has total of 5 coins*
II- He has 1 Rupee coins more than 50 paisa coins *

32.Is 1/a+1/b = 8 ? *(a,b are whole no )
* * * * * * * *I- a is a positive integer*
* * * * * * * *II- b is any no
33-35.live the same*

36-40Q are based on reasoning, ie some data is given and some conditions are given. Based on this we have 5qns are given, this part I feel tough.

ANALYTICAL
This section very easy for anyone, no pen work is required even some qus are like as following,

Mark the answers according to the following:
A- If all the three options match
B- If FIRST and SECOND options match
C- If FIRST and THIRD options match
D- If none of the three match

41.Verify the following
1.KKTUJNGDFTSR * *2. KKTUJHGDFTSR * * 3. KKTUJNGDFTSR*
Ans: C*

42.
1.aaabbabbacca * * *2.aaabbabbacca * 3. aaabbabbacca
Ans:A

43.
1.1896.5738491023 *2.1896.5783491023 * 3. 1896.5738461023*
Ans: D
Like another one
these ques are also easy..they consume very less time and need no pen work.

45- Q.50 were also a bit easy and were of two types:*
Example of type 1:
45.If * means +, + means -, - means / and / means *, then what is the value of-
9+4-4*7/22+3
a. 149 * *b.159 * *c.12 * *d.140

46. *If +means*,- means /, * means -, / means +,then find 4*15-3/9+2 ?
a.15 * *b.16 * *c.9 * *d.29

47-50.In the following which is true

47. * means +, + means -, - means / and / means *,then whish is true in the following.
a. 7+6/5-4*2=23 * b.2+5*12/2-12=34 * c...... * *d.......
These qus are easy but time consuming. Be cautious on these

51-55 qus are based on reasoning*
some data is given & with some conditions we have to solve the qus
this is also a bit confusing. But easy.


Here for you I am providing you the syllabus of the

Logical: 24 questions in 35 mins

Linear arrangement
Blood relation
Inequality

Quants

Time & distance
Time & work
Boats & Streams
Logarithms
Probability

Verbal / English

Spotting errors
Choose appropriate word
Synonyms & Antonyms
2 – Reading comprehension passages

Technical Interview

Project based questions
DBMS questions
Any certification held by you – questions on them
Simple Programming like – Fibonacci Series.
Questions on Networking

HR Interview

How you performed in the previous rounds?
Tell me about your family members?
Are you flexible to work in night shifts?
Are you comfortable with relocating?
  #3  
22nd March 2015, 01:09 PM
Unregistered
Guest
 
Re: Question papers of Accenture

Hey, I want to appear in Accenture placement test , I am looking for the last year paper of the Accenture placement test will you provide me the same ?
  #4  
22nd March 2015, 01:10 PM
Super Moderator
 
Join Date: Apr 2013
Re: Question papers of Accenture

As you want I am here providing you sample placement test paper of the Accenture.

Sample paper :
Question papers of Accenture
1. The largest 4 digit number exactly divisible by 88 is:
A. 9944
B. 9768
C. 9988
D. 8888



2. One pipe can fill a tank three times as fast as another pipe. If together the two pipes can fill the tank in 36 minutes, then the slower pipe alone will be able to fill the tank in:
A. 81 min.
B. 108 min.
C. 144 min.
D. 192 min.



3. A large tanker can be filled by two pipes A and B in 60 minutes and 40 minutes respectively. How many minutes will it take to fill the tanker from empty state if B is used for half the time and A and B fill it together for the other half?
A. 15 min
B. 20 min
C. 27.5 min
D. 30 min



4. The H.C.F. of two numbers is 23 and the other two factors of their L.C.M. are 13 and 14. The larger of the two numbers is:
A. 276
B. 299
C. 322
D. 345



5. Let N be the greatest number that will divide 1305, 4665 and 6905, leaving the same remainder in each case. Then sum of the digits in N is:
A. 4
B. 5
C. 6
D. 8



6. A train can travel 50% faster than a car. Both start from point A at the same time and reach point B 75 kms away from A at the same time. On the way, however, the train lost about 12.5 minutes while stopping at the stations. The speed of the car is:
A. 100 kmph
B. 110 kmph
C. 120 kmph
D. 130 kmph



7. Tea worth Rs. 126 per kg and Rs. 135 per kg are mixed with a third variety in the ratio 1 : 1 : 2. If the mixture is worth Rs. 153 per kg, the price of the third variety per kg will be:
A. Rs. 169.50
B. Rs. 170
C. Rs. 175.50
D. Rs. 180



8. A vendor bought toffees at 6 for a rupee. How many for a rupee must he sell to gain 20%?
A. 3
B. 4
C. 5
D. 6



9. Out of 7 consonants and 4 vowels, how many words of 3 consonants and 2 vowels can be formed?
A. 210
B. 1050
C. 25200
D. 21400



10. The average weight of A, B and C is 45 kg. If the average weight of A and B be 40 kg and that of B and C be 43 kg, then the weight of B is:
A. 17 kg
B. 20 kg
C. 26 kg
D. 31 kg



11. A father said to his son, "I was as old as you are at the present at the time of your birth". If the father's age is 38 years now, the son's age five years back was:
A. 14 years
B. 19 years
C. 33 years
D. 38 years



12. A train running at the speed of 60 km/hr crosses a pole in 9 seconds. What is the length of the train?
A. 120 metres
B. 180 metres
C. 324 metres
D. 150 metres



13. A alone can do a piece of work in 6 days and B alone in 8 days. A and B undertook to do it for Rs. 3200. With the help of C, they completed the work in 3 days. How much is to be paid to C?
A. Rs. 375
B. Rs. 400
C. Rs. 600
D. Rs. 800



14. A and B invest in a business in the ratio 3 : 2. If 5% of the total profit goes to charity and A's share is Rs. 855, the total profit is:
A. Rs. 1425
B. Rs. 1500
C. Rs. 1537.50
D. Rs. 1576

15. The cost price of 20 articles is the same as the selling price of x articles. If the profit is 25%, then the value of x is:
A. 15
B. 16
C. 18
D. 25



16. FAG, GAF, HAI, IAH, ____
A. JAK
B. HAL
C. HAK
D. JAI



17. SCD, TEF, UGH, ____, WKL
A. CMN
B. UJI
C. VIJ
D. IJT



18. If a person walks at 14 km/hr instead of 10 km/hr, he would have walked 20 km more. The actual distance travelled by him is:
A. 50 km
B. 56 km
C. 70 km
D. 80 km



19. In a shower, 5 cm of rain falls. The volume of water that falls on 1.5 hectares of ground is:
A. 75 cu. m
B. 750 cu. m
C. 7500 cu. m
D. 75000 cu. m



20. A sum of money at simple interest amounts to Rs. 815 in 3 years and to Rs. 854 in 4 years. The sum is:
A. Rs. 650
B. Rs. 690
C. Rs. 698
D. Rs. 700



Technical Interview Questions

Which is the parameter that is added to every non-static member function when it is called?
What is a binary semaphore? What is its use?
What is thrashing?
What are turnaround time and response time?
What is data structure?
List out the areas in which data structures are applied extensively?
What is a DBMS, query, SQL?
What is the difference between primary and foreign key?
What is XML?
Explain that why C is procedural?
What are the different phases of a compiler?
What is TDM?
What is normalization? Explain its different types?
Explain what do you mean by functional overloading?
Define Routing Algorithm?


Quick Reply
Your Username: Click here to log in

Message:
Options




All times are GMT +5. The time now is 12:19 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
SEO by vBSEO 3.6.0 PL2

1 2 3 4