Accenture Placement Paper 6
Accenture Placement Paper 6
Accenture Placement Paper 6
This interview was conducted for 1 year or more exp. guys in C++.
2) Then he asked to list the various types of storage classes and asked me to explain the scope & lifetime of
each one.. (Auto,Static,Register,Extern,and also mutable(only used for classes) )
3) Right shift/Left shift + 1's complement concepts then asked me to give the output of this:-
i = 10;
int j = i >> 10;
cout<<j;
date1.yr = 2004;
date1.day = 4;
date1.month = 12;
now how will you initialize date2 (without member by member assignment)
ans: date2 = date1;
diff. b/w c++ structures & c structures
7) What happens when you run a programme.. he meant what all the basic steps that O/S would take??
10) Then he gave me a prob. of inheritance. Asked me how u would invoke a base class member function
using derived class pointer( that func is not a virtual func. && no virtual Base class inheritance) And some
other Q's which i dont remember now...
I thought my performance was ok if not spectacular.. Anyway guys..this was interview..(1 hour)
2. static variable and difference b/w(const char *p,char const *p,const char* const p).
5. Write a program to compare two strings without using the strcmp() function.
4.A function ‘q’ that accepts a pointer to a character as argument and returns a pointer to an array
of integer can be declared as:
A)int (*q(char*)) []
B)int *q(char*) []
C)int(*q)(char*) []
D)None of the Above
SORT (k,n)
1.[Loop on I Index]
repeat thru step2 for i=1,2,……..n-1
2.[For each pass,get small value]
min=i;
repeat for j=i+1 to N do
{
if K[j]
min=j;
}
temp=K[i];K[i]=K[min];K[min]=temp;
3.[Sorted Values will be returned]
A)Bubble Sort
B)Quick Sort
C)Selection Sort
D)Merge Sort
7.Identify the correct argument for the function call fflush() in ANSI C:
A)stdout
B)stdin
C)stderr
D)All the above
This document was created with the trial version of Print2PDF!
Once Print2PDF is registered, this message will disappear!
Purchase Print2PDF at http://www.software602.com/
8.Which of the Following will define a type NODE that is a node in a Linked list?
A)struct node {NODE*next;int x;};type def struct node NODE;
B)typedef struct NODE {struct NODE *next;int x;};
C)typedef struct NODE {NODE *next;int x;};
D)typedef struct {NODE *next;int x;}NODE;
Aptitude
DBMS
1. data model is
a) Entity b) Constriants c) Entity relationship d) All the above
ans:- c
2. Choise the correct one select emp.name ,emp.age from emp1,emp2 where emp.sno = 456;
a) cluster b) non-cluster c) index d) none of these
3. What is index?
a) atrendum selectio of colum
ans) a
5.
1 max 222
2 allen 333
3 rony 444
Select first.name from first where first.age = (select first.age from first where first.sno = 3);
a) max b) allen c) rony d) noneof these
6. THERE were 3 question on same type of queries(u should be good in foreign key relationship
and relationship with in a single table).
8. Also one more mapping relationship given based upon the figure.
REASONING
10. Questions based upon equality of symbols …means if + means * and * means / and –
means + and + means –
then mean of 28*40/4+2-6
11. Question upon set theory means if 100 r selecting in maths and 90 in physics 120 in
chemistry & 22 in phy& maths both ,33 in maths & chemisty both 44 in ches & phy…11 in all
then
14. On functions….
17. Inheritance
1. In this section2 passages were there on basis of that u have to answer 10 questions
(5 question each ) First passage was based on ball tempering by Indian team with mix of
lagan story .In this answer of first question was (Ball tempering) the second passage
was based on Gadar movie.(same story).
II Synonyms:
1.Candid:ans frank
2.Specifaction :ans documentation
3. Extradite =deport
4. Cursory= scold
5. ----------= very high
III .fill up the blanks with proper word(5 questions) pick the sentence which has
grammatical mistake (5 questios).
3 Letter series example aabb-abda—bbaa this type one question a question of this type
APTITUDE
1. It has 20 mixutre conatins mil and water in the ratio 3:5,replace 4 litres of mixture with 4
litres of water what is the final ratio of milk and water.
2. + means * and * means / and / means % what is the value of these questio 2+3*5/7 it was
two question of these type.
3. The equivalent compound ratio of 5:6::7:10::6:5 ( question of this type this is not
exact question).
4. Work can be done by 8 men and 10 women in 25 days, the same work can be done by
10 children and 5 women . in how many days 2 children and 3 men (similar to this)
5. One man or two women or three boys can do a work in 44 days then one man, one
women and one boy together can finish the same work in ---- days
7. In how many ways can a lock be opened if that lock has three digit number lock if
i) The last digit is 9
ii) and sum of the first two digits is less than or equal to the last digit. numbers are from 0-9
8. If a man reduces the selling price of a fan from 400 to 380 his loss increases by 20% .cost
price of fan is.
9. There are 76 persons. 53 can read hindu,46 can read times,39 can read decca and 15 can
read all. if 22 can read hindu and deccan and 23 can read deccan and times then what is the
number of persons who read only times and hindu………ans 18
10. In pure milk if 20% replaced by water and in this again 20% is replaced by water and
again20% is replaced by water then what is the praportion of milk in that mixture
12. Races and games ---- 2 questions from this chapter like (A beats B by 10 meters and B
beats C by 15 metres the A beats C by )
13. In the year 1990 there are 5000 men 3000 women 2000 boys .in 1994 men are increased
by 20% women are increased by ratio of boys and women (this type of question but some
what difficult I mean it takes too much time to solve)
better to go through the following chapters in both Objective arithmetic and Quantitative
Aptitude by RS Aggarwal, ratio and praportion (4 questions), ages (3 ques ), races and
games,time and distance ,time and work, percentages.
GD
For GD
Per team 8 members and they tell us to choose a topic of our own interest
Technical Interview
Technical Interview 1
Technical Interview 2
If u have too much cash in ur hand, then what u will do in behalf of the
company…..
Interview 3
I have attended the Week-End Accenture interview in Hyd. (I am afraid, its not for freshers). I
was
interviewed for about an hour or so.Here are the various questions:-This interview was
conducted
for 1 year or more exp. guys in C++.
Then he asked to list the various types of storage classes and asked me to explain the
scope & lifetime of each one..
(Auto,Static,Register,Extern,and also mutable(only used for classes) )
Right shift/Left shift + 1's complement concepts then asked me to give the output of this:
i = 10;
int j = i >> 10;
cout<<j;
struct Date
{
int yr;
int day;
int month;
} date1,date2;
date1.yr = 2004;
date1.day = 4;
date1.month = 12;
now how will you initialize date2 (without member by member assignment)
ans: date2 = date1;
Then he gave me a prob. of inheritance. Asked me how u would invoke a base class
member function using derived class pointer( that func is not a virtual func. && no virtual
Base class inheritance)