Sunday, February 12, 2012

AGILE Placement Papers

AGILE Placement Papers

About company:
It is a small mnc with total no. of employees 600 worldwide and with 60 members in Bangalore.their clients are 1250 in number.they give solutions for improving product lifecycle. Agile PLM solution is their trade name. they are offering a salary of 2.5lack per annum with stock options in addition. they give good importance to good acadamics.the interview is only personal and most simple for
high percentage getters. this compeny name is not in the cmm level 5 list. the test contains 60qns Duration: 1hr.
30 qns from c++,30 qns from java.the qns are objective type may have more than one ans

java:
(1)find out three keywords
(a)synchronized
(b)implement
(c)throws
etc

(2)which are not keywords
(a)NULL
(b)synchronize
etc

(3)two to three questions on legal array declaration
(a)int a[][]=new int[3][3];
(b)int[] a[]=new int[3][3];
(c)int a[3][4]=new int[3][4];wrong
(d)int[3][4] a=new int[3][4];wrong
(e)int a[][]=new int[3][4];

(4)++i+++j is equivalent to
(a)i+j+1
(b)i+j+2
(c)i+j
(d)can't be compiled(correct)

(5)the content of the array after execution of following statement:int a[][]=new int[3][3];
(a)all elements contain zeroes

(6)find legal statements
(a)int a=30;
(b)float f=1.4;(error)
(c)double d=34.5;
(d)byte b=128;(error)

(7)find illegal statements
(a)int i='2';
(b)char a=12;

(8)some 5 qns on collection interfaces

(9)to find the length of array
(a)arr.length-1
(b)arr.length(correct)
(c)arr.length()

(10)write code for accessing array length without assigning it to another variable

(11)recursion is
(a)any function which refer itself

(12)the sorting method which don't generally use recursion
(a)heap sort
(b)bubble sort(ans)
(c)quick sort
(d)bubble sort

(13)one qn regarding abstract

(14)some 2 qns on hash table

C++:

(1)the difference b/w pure virtual fn.& virtual fn.
(a)pure virtual fn. is initialized to zero.
(b)

(2)virtual destructors are used for
(a)

(3)find legal statement
(a)cout>>"name">>endl;
(b)cout<<"name<
(c)cout<<"name"<

(4)find the o/p of the program
void main()
{
int a=10;b;
if(a<=10)
b=4;
if(a>10)
b=5;
cout<
}
(a)it don't be compiled
(b)it compiles and o/ps 10 4(ans)

(5)a qn on copying or assigning

(6)early or static binding means
(a)at runtime
(b)at compiletime(ans)

(7)one qn on global variables,one qn on globally declared static variable

(8)two qns on "vector" type

(9)the branch of a tree which has no childs is called

(10)when a node c is inserting b/w nodes a and b how many pointer will be modified
(a)2(check)   
Best Of Luck

Future Soft Placement Papers

Future Soft Placement Papers

Career Details

Eligibility:

Engineering Degree with 50%

Selection Process:

Written
GD
Interview

Entry Package:

2.7

Organization Details

Industry:

IT/Software, Hardware

Web-Site:

http://www.futsoft.com/

Company Profile :

Established in the year 1985, Future Software Ltd. are providers of communications software products and services in emerging technology areas to the global communications industry. The company's exclusive focus on communications software has enabled them today to be one of the leading independent software companies worldwide, in this field. Future Soft's corporate headquarters are in Chennai and its subsidary in USA - Future Communications Software, markets and supports its products and services to the North American and European markets.

Future Software is today, an organization of more than 300 engineers, managed by a team of professionals with extensive experience in software engineering and project management. Future Software Ltd. is a knowledge organization accelerating the development of advanced communications technologies through a commitment to partnership and research.

The company has long term partnerships with its existing clientele and its customer list includes many of the top 25 global communication companies. Future Software Ltd. has been assessed at SEI CMM Level 4.

The company is offering a remuneration of 2.7 lacs to 3.2 lacs per annum.

Future Soft Sample Test Paper

S --> AB|AS
A --> a|aA
B --> b

What is the grammer accepted by the above?
Ans. aa*b

How many address lines are needed to address a 64Kb segment with each register storing upto 512 bytes.
Ans. 14 address lines

Find the expression representing the following K-map

1 1 1

1 1
1 1 1

For the POS form of the expression given below
_ _ _
X.Y.Z + X.Y.Z + X.( Y + Z )

In a computer system the ROM :
(a) contains boot software
(b) is permanent
(c) Both of the above
(d) None of the above
Ans. (c)

The binary equivalent of 3B7F is
Ans. 0011 1011 0111 1111

The register used by the shift reduce passing method is
Ans. Stack

A microprogram can be defines as to consist of
Ans. A primitive operation

Find the output for the following C program
int array[4][4] = {1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16};
for (i=2;i<0;i--)
for (j=2;j<=0;j--)
printf("%d", arr[i][j]);

Find the output for the following C program
#include
void main()
{
int i,x,sum=0;
int arr[6]=[1,2,3,4,5,6]
for (i=0;i<4;i++)
sum+ = func(arr[i]);
printf("%d", sum);
}
func(int x)
{
int val,x;
val = 2;
return(x+ val++);
}

Given the following data:
Process P1 takes 2 seconds
Process P2 takes 3 seconds
Process P3 takes 4 seconds
Process P4 takes 1 second
Process P5 takes 6 seconds
Find the average time in case of shortest job first (SJF) scheduling.

Given a string STOCK and a stack of size 4. Which of the following strings cannot be generated using this stack.
(a) TSOCK
(b) TOSKC
(c) STOCK
(d) TKOSC
(e) None of these

Inversion of a matrix will take which of the following time complexities?
(a) O(n)
(b) O(n²)
(c) O(log n)
(d) O(n³)
(e) None of these

A drum rotates at 4000 rpm. What is its average access time.

What range of integral values can be stored using 32 bits?

Where are the following variables stored
Automatic
Global
Static

If a layer 4 transfers data at the rate of 3000 bytes/sec. What will be the size of data block transferred by Layer 2

What is the greatest disadvantage of dynamic RAM over static RAM
Ans. High Power and need to refresh every 2 ms.

What happens when the CPU gets interrupted?

Find the Postfix of the following string
(a + b) * ((-d) *f (ab - cd))

E --> E + E| E * E | E/E | E - E| .... then which is correct
(a) It is ambigous
(b) It is inherently ambigous
(c) It is non inherently ambigous
(d) None of the above

If there are n nodes and K edges in a graph then what is the order of traversing
Ans. O(n²)

A graph is represented as an adjacency list with n vertices and e edges
What is its time complexity
Ans. O(n + e)

An array with address KV[a] had n elements. Which of the following correctly addresses the ith element of the array.
(a) KV(a) - 2a + 2i
(b) KV(a) +2i
(c) KV(a) - 2a
(d) None of these

Give an example of a primitive instruction in microprocessors.

A computer has 8 bit data bus and 16 bit address line. How many machine cycles will it take to store the contents to a memory location?

Where is a variable defined in a function stores?
Ans. Process Swappable Area

For the following C progralm
int d=0;
for(int i=0;i<31;i++)
for(int j=0;j<31;j++)
for(int k=0;k<31;k++)
if (((i+j+k) % 3)==0)
d=d+1;
Find value of d

e= | | <(e)> |
What forms do the expressions created by the above definition fit in
Ans. All arithematic expressions

If a set of numbers are in sorted order then which of the following sorting method is best
Ans. Bubble Sort

A magnetic tape is similar to which of the following structures
Ans. List

The s/n id 3 dB Find the capacity of the line.

Saturday, March 22, 2008

ACCENTURE PLACEMENT PAPER ON 20 MARCH , 2007


THERE WERE 4 ROUNDS as usual for Accenture Paper


1) Written Paper
2) G.D
3) H.R Interview
4) Technical Interview

WRITTEN TEST

Paper consist of three parts—

1.analytical ability
2.aptitude & LR
3.verbal ability

Section 1 consist of 20 question ----those were quite easy

* Simple percentage question
* venn diagram question are a lot but easy
* age and blood relation
* time ,distance,work

Section 2 consist of 15 question

puzzle on arrangement on 1 refrigerator,2 TV,3 AC,4 Microprocessors
a)2 tv together
b)ac at 1st and 10th place
c)no tv next to micro
d)no refrigerator and AC next to each other

Simple matching questions---5 question

aaabbbccc,aaabbbccc,aaabbbbcc --which are same

5 data sufficiency question

Section 3 ---verbal was easy consist of 20 question

5 fill up wid articles a,an,the

2 passages

a) 1 on sql
b) other on dbms
both were easy

3 word meanings

Blurt - (it means Utter impulsively i.e very fast )
compliant - (willing to follow)
exemption - (freedom from doing something)

Total 55 questions …time given was 60 minutes

5 min extra 4 essay on why accenture is my dream company???

Cut off was around 37-40

out of 207----130 were shortlisted for G.D

NEXT WAS G.D ROUND ---MAIN ELIMINATION WAS DONE IN THIS ROUND

G.D TOPICS

1}Bpo’s affecting youth
2)men’s day or women’s day
3)world cup—india or Australia

out 0f 130 only 60 were selected ---4 out of each group of 12

H.R ROUND—rest elimination is done here only

Will ask u general question???

about urself??

why accenture?

why should I hire u???

who is ur role model???

where u see urself after 5 yrs???
n strength n weakness

Be confident n cool –u will be selected But out of 60 only 45 were selested(approx)

Next was TECHNICAL round

DBMS,sql and c++ concepts are Important for Accenture

Do prepare well for your project

ACCENTURE PAPER ON 17th JANUARY 2007

procedures were

1. gd
2.technical interview
3. hr

GD
we were group of 12-14 students , 4 were selected. madam first ,asked to choose our own topic, however ,when no consesus was achieved, she gave topic-role of media in society. in my opinion panel looked for content, group dynamics, some in my group spoke very much and interrupted others, hence were rejected, i repeat content is king!!

technical interview

- i have a mechanical stream, so he asked about my subjects, project,IT, CSE,ECE students prepare ur programming skills

HR
normal stuff,about knowledge about company ,hobbies,willing to relocate etc.

ACCENTURE PAPER ON 24th FEBRUARY,2007 AT DELHI

ACCENTURE PAPER ON 24th FEBRUARY,2007 AT DELHI

Written Paper: The written paper was conducted by Merittrac and it was same as asked in earlier papers (around 50-55 questions and an essay/ No negative marking).

It was an easy one but remember easy for everyone that why the cutoff was nearly above 45. The essay I got was “Your three main priorities when u will become the Prime Minister of a country”. I got selected in the written paper.

Group Discussion: As everyone feels that the GD is the main elimination round in any selection process, it’s not true in case of Accenture. If u”ll speak a little bit confidently and some valid points on the topic given to u, u” clear it. My GD topic is “Hardworking or Smartworking or Both/Support”. We had a batch of 12 out of which 9 was selected including me. So be confident, communications skills was not a major factor.

HR Interview (sometimes tech. interview comes earlier than HR)

Its not just a formality as many of my friends got eliminated in this round. They asked me:

Introduce urself

About Accenture

Why should we hire u?

On project u did in college and the role u played in it (in detail).

Strengths & Weaknesses (Specify each in detail)

Relocation etc
In the end they will ask u do u have any questions, please ask some questions as I did.

I asked what type of projects will I be able to assist on? The HR said that there r many types of projects being done in Accenture and a 3 months extensive training is imparted on each trainee. Then he asked why u asked me that question, I said so that I can learn a language required to my upmost level. My 2nd question was How soon will I be able to be productive? He said u feel ur not productive at present. I said yes im productive at present but I want to exploit my full potential dere.

Technical Interview

The technical panelist firstly asked me to introduce myself, again why Accenture?

Then as I did my BE in CSE, he asked me to write down

Programs on Prime No. & Binary Search

After that he asked me about

Polymorphism,

Entity-Integrity Rule

5th Normal Form

Linear Queue-Circular Queue

Newton’s 2nd Law Etc

Accenture Placement papers

Latest Accenture Placement papers



2008 Placement papers of Top MNC companies

eXTReMe Tracker