Anda di halaman 1dari 17

Logical Reasoning:

1. 3 types of chickens : Baby chickens cost 5 cents, hen chickens cost 3


dollares, rooster chickens cost 5 dollars. Buy 100 chickens for 100 dollars.
How many will you have from each?

2. Calculate : (x-a)(x-b)(x-c)....(x-z)?

3. What is the day after 4 days after 2 days before the day before tomorrow?

4. 2 trains each of length 1 mile enter into 2 tunnels of lenth 1 mile and
2 miles apart. speed if trains are 5 and 10 miles/hr. Give the postion as
viewed by a helicopter when the trains meet?C h e t a na S

5. A says I'm not guilty


B says C is not guilty
C says A is not guilty
If all above are true. (i) Can we say anyone is guilty/innocent?
(ii)Who is most likely to be guilty?

6. 18 story building - Accountant's office is 5 times the lawyer's office.


Architects office 2 floors up then he is halfway between Dentist's &
Accountant's office. Architects office halfway down means between Dentist's
and Lawyer's office. Give the order?

7. How many tennis matches are to be arranged to conduct a tournament


with 213 players?

8. In a family 7 children don't eat spinach, 6 don't eat carrot, 5 don't eat
beans, 4 don't eat spinach & carrots, 3 don't eat carrot & beans, 2 don't eat
beans & spinach. 1 doesn't eat all 3. Find the no. of children.

C/C++ :

a. void main()
{
char a[6] = "INDIA";
while(*a)
{
printf("%c",*a);
a++;
}
}

1. india

2. I N D I A

b. protected derivation

c. int m = 10;
main()
{
int m = 20;
{int m = 30;}
printf("%d %d",m,::m);

3. no output

4. error

5.Null

1. 10 10
6. None

2. 10 20

3. 20 10

4. 20 30

5. 30 20

d. inline function is used to


1. reduce program size
2. reduce memory size

e. void func(float newtotal)


{ newtotal = newtotal-2;
}
main()
{
float tot = 100.34;
float sum = tot;
sum++;
func(sum);
cout< }

1. 100.34

2. 99.34

3. 101.34

f. unsigned char snapnib(unsigned char misc)


{
int aloha, hamalo;
hamalo = aloha = misc;
misc = (hamalo << 4)+((aloha & 0x0f)>>4);
return(misc);

4. 102.34

5. None

}
main()
{
int getinp;
unsig char getmisc;
scanf("%x",&getinp);
getmisc = snapnib(getinp & 0xff);
printf("%x",getmisc);
}

1. Change line 4 to misc = (hamalo >> 4)+((aloha & oxof)<<4);


2. remove the 5
3. Change line 4 to misc = (hamalo >> 4)+((aloha & oxfo)<<4);
4. Change line 11 to getmisc = snapnib(getinp);
5. Nothing

g. main()
{
int getinp = 6;
while(--getinp)
{
printf("%d",getinp);
if(getinp++ != 3);
else
break;
if(getinp-- != 5)

continue;
else
getinp = getinp - 2;
}

1. 5421 2. 5420 3. 541 4. 6543 5. 5410

h. unsigned char inn[2] = "5";


int i,j = 0;
sscanf(inn,"%d",&i);
while(i)
{
i = i - 1;
j++;
printf("%d",++j);
}

1. 14 2. 12 3. 24 4. 35 5. none

i. char *fn(int num)


{
char a[] = "Amen";
return(&a[num]);
}
main()
{

int i;
char *prechar;
scanf("%d",&i);
(input is 12)
prechar = fn(i);
printf("%c",*prechar);
}

1. a bus
2. give string "Amen" as global
3. use return(a[num]) instead of return(&a[num])
4. give main before fn

j. unsigned char u = 32767;


unsigned char y = 32768;
u = u + y;
printf("%d",(signed char)u);

1. 65535

2. -65535

k. *name = "ANYTHING";
*foo = "ALRIGHT";
*name1 = "WRONG";
strcat(name,name1);
printf("%s %s
",name,foo);

3. -1

4. 1

5. none

return(0);

1. ANYTHING WRONG? WRONG?


2. ANYTHING
3. ANYTHING WRONG? ALRIGHT
4. ERROR
5. NONE

Assembly :
i) swap 2 variables without temp variables
(use XOR, OR, AND, NOT).

We had the interview for 2 days in first day; they come to my college and
conduct only 2 rounds. They conduct remaining rounds in the company on
next day itself. AMI is in Kumaran Nagar near Sathyabama deemed University
Chennai.

FIRST ROUND
Actually three sections in first round.
1. C.
2. C++.
3. Logical reasoning.

In the first section they ask only 10 questions. It's fully based on pointer
concepts and basics in C. Each question carries one mark.
In the second section also they ask only 10 questions. It's fully based on oops
concepts. Each question carries one mark.
In the third section they ask 10 questions. Its easy only better study logical
reasoning in sakunthala devi book. Each question carries different marks.

After that they will shortlist.

SECOND ROUND
This is not an elimination round. In this they conduct again written test. In
this test we select either Assembly Language Program or Java Programming.
Only 30 minutes time we have to attend all questions. They ask only 10
questions in ALP. But in java they ask 20 questions it's quite tough. Better
take ALP it is plus point to yours. I took ALP only. Better go through the
previous AMI question papers. I got many questions like this only. For
example "swap two members without using the temporary variables"

THIRD ROUND: Technical HR round


In this they check our technical skill fully. Normally it's for 45 minutes if your
performance is good. Otherwise they will ask even for one and half an hour.
Better concentrate on C and ALP. Once u knows the ALP it's a very good
chance to got place in AMI. But you should have very good knowledge in both
languages. For me they ask only for 40 minutes. Not only technical, they ask
some logical reasoning questions also.

After this round there is a huge elimination. For us we attend 9 members. But
they short listed only 3 members.

FOURTH ROUND: GD
We don't have GD because only 3 members got cleared the technical. But
they said fourth round is GD at time of pre-placement talk.

FIFTH ROUND: Personal HR


This is quite easy. They mainly ask about the hobbies and what are all
mentioned in the resume. Before going to this interview know about your
hobbies and what are all mentioned in the resume. Surely they will ask about
the positive and negative points of your hobbies. Be bold but don't ask about
the BOND. Normally they ask bond for 3 years. If they ask about the bond to
you, simply tell I agree for the bond.

Finally they select only two out 3 members. I got my offer letter within 10
days. They sent the offered letter to college.
Hi folks,

Today I attended the Off campus drive for american megatrends. Actually its
for NIIT students only. Its a online test. They conduct this test through test.
Monstercollege. In and duration of this test is 3 hours. They split 5 sections
and each section have allotted time only. Once you submit a section you can't
come back to that section.

1. Soft skills (10 questions).

2. C programming (20 c aptitude questions).

3. Java Programming (20 java aptitude questions).

4. Programming (you want to write program).

5. IQ test (20 questions).

They doesn't give any marks allocation for any section. First section is very
easy but you want to finish within time that is the matter. They said some
situation like you are the team leader while your team member not do his
task within time what will you do? Describe about you not more than 250
words, Which is your favorite subject during your engg and why? how your
friends describe about you? After 3 years how you will be? what about your
dream job?

In second section Mostly they give simple program and asks it op only. This
section very easy guys. You need to concentrate loop control, pointers,
structure.

In third section same they will give pgms and ask op. But this section little
tricky and easy. Collections, Exception, inheritance and interface (near 6 to 7)
based question mostly there.

In fourth section, we want to write 2 C programs and 2 java programs and


there is also a online compiler by using this you can compile your code and
produce the op. In some pgm they will give main functions and input
initialization also you should not change those.

1. Write the program for perform operations in complex number and the class
must be immutable (Java).

2. Write the program to get a string from user and sort the char in
alphabetical order (C).

3. You have to store the names by using collections (Java).

4. I did not remember it but it is also string concept only (C).

In IQ test they ask only simple questions only like.

A farmer has 17 sheep. All but 9 die. How many are left?

Divide 30 by half and add 10 what do you get?

HI vectorians,
i m kaushik rachalwar from batch 91 k1 recently got placed in AMI with
blessing of my parents. special thanx from my bottom of heart to Sameer sir
for providing the best knowledge in C DS Linux which was very helpful for

cleared the interview,i would to thanx shashank sir ,reddy sir,badri sir who
help me in 8051 labs and all LC who were helped me whenever i want.
Regarding my placement till the AMI i had attended 7 companies
among those i cleared written test of 4. i gave technical interview in
safran,hella,nomus telecom,data patterns but i failed there and this was
important lesson for me to improve myself to be more confident , i had learn
lot from this all interview.

coming to my interview in AMI there was online written test of 3


hours n something different than other and 2 technical round followed by HR
round.

Written test:-------------There are 5 sections in this test...Sectional timing will be


there ......Of course,they will give u instructions.

1st section: soft skillls:like Tell me about urself,dream job,what ur friends say
about u,and some questions related to situations like how u react when that
situation arises....
2nd section:Reasoning: Better to verify R.S.Agarwal and M.tyra reasoning
book and some other books like

3rd section:C choose the correct answers: To answer these questions u better
verify and thorough with our class notes notes and some books like c in
depth,vector materials,....Not too tough,
4th section: 8086.they asked very basic que in 8086 u can refer bhurchandi
book 4 dat n u refer some basics of 8086.
5th section:Programming in C n 8086C: Two programs on strings only 1.Count
the words 2.arrange the sentence in

alphabetical order8086: Two programs 1.2's complement 2.Find the largest


out of 10 numbers.
So,if u dont know programming in 8086 also u have to try something.....

tech 1: he asked me lot of question uptp 2 hour from strating of c to last.

1. what is library? types and how you link this with your file. (lib.so,lib.a)
2. FILE based question in c and give some programming on it.
3. compilation stages and how its internally work with files n wat will be
output of dat file.
4. what is gdb? explain working with example?
5.structure and union based programming output.
6. explain your academic project and vector project?
7. singly, doubly link list simple program they ask.like searching, sorting.
8. simple string reverse,sorting like programming.
9.write down prog,of student data base using pointer.
10. what is various types of pointer.
11.what is volatile.
12. what is storage classes.
13.whai u ve done in vector
all such type of basic question they asked, if u prepared "C IN DEPTH "well
then u can answered it well.

tech 2:

1. he asked me to do optimize the prog.who were asked in our written test.


2.some question about the intterupts.
3.academic project.
4.he gave me 3 programs based on pointers,structure,union and solve them.
5.linux concept like pipe,fifo,semaphore,mutex,system call,msg queue,stack
n queue,ipc,signals,
6.how u check the EOF
7.what is ur favorite sub while BE n they asked me some que about dat sub.

HR :

he will ask all ur details,ur personal,education,about family


background,previous interviews,How do u see urself after 5 yrs? what types
of quality project manager could have?Why should I hire u?All about hobbies?
willing to relocate?Nothing difffucult just answer without any hesitation and
be confident there...
American Megatrends (AMI) latest company profile,
American Megatrends Corporate Profile
A Leader in Storage and Computing Innovations Worldwide American
Megatrends Inc. (AMI) creates and manufactures key hardware and software
solutions for the global computer marketplace, providing the highest quality
and compatibility necessary to build todays advanced computing systems.
Established by S. Shankar in 1985, AMIs mission is to design state-of-the-art
computer solutions and develop advanced technology for the best computing
solutions in the world. Today, AMI is one of the largest BIOS firmware vendors,
with AMIBIOS deployed in a high proportion of all desktops worldwide. AMI
also holds a leading position in embedded and ultra-mobile computers.

AMIs extensive product line includes StorTrends IP-Storage Area Network


(IP-SAN) and Network Attached Storage (NAS) solutions, Aptio and
AMIBIOS system software and firmware, MegaRAC remote management
firmware and enclosure management controllers, motherboards, back planes,
diagnostic utilities and engineering services. With these product groups, AMI
is uniquely positioned to provide all the fundamental components necessary
to offer system performance, manageability, and availability for todays
enterprise computing requirements. AMI is the only company in the industry
today offering all of these core technologies.

AMI has been a consistent leader in the technology industry, accomplishing a


number of firsts:

First to build motherboards based on Intel 386 and 486 processor


platforms, and first to use onboard external cache designs to significantly
improve their performance
First to build and ship a motherboard based on the Intel Quad-Xeon
processor: the MegaPlex
First to support USB in BIOS, first to create a GUI BIOS interface with mouse
support, first to integrate diagnostics into BIOS, and first to support ACPI with
AMIBIOS, a consistent leader in the BIOS market
First to develop a native computer diagnostic for UEFI
First zero-U, rack- and desktop-free, digital KVM over IP
In 2007, AMIs StorTrends 3200i Storage Appliance was selected as a Top
Ten Finalist in Storage Magazines Product of the Year Competition in the
Disk and Disk Subsystem Category
In 2008, AMI introduced the first SGPIO backplane controllers featuring
support for the International Blinking Pattern Interpretation (IBPI)
Specification

By 1995 AMI was well known for its RAID expertise and was named the
number one third-party host-based RAID controller manufacturer in the world
by Gartner Groups Dataquest. In August 2001 AMI sold its RAID assets,
including its MegaRAID line, to LSI Corporation. This enabled AMI to expand

its Stor Trends line of NAS and IP-SAN solutions. With StorTrends, AMI has its
sights set once again on being a leader in the storage market.

AMI holds an ISO 9001: 2008 certification, in recognition of its commitment to


quality. AMI customers receive the highest quality products - the first time,
every time. AMI recognizes theincreasing demand for reduced total cost of
ownership (TCO) in products from notebooks to servers and provides a line of
software diagnostics that supports this effort. AMI continues to succeed in
todays highly competitive marketplace by bringing new products to market
with advanced technology and design, and is recognized each year for these
efforts with numerous awards and contracts.

Headquartered in Atlanta, and with offices around the world, AMI offers
unmatched service and support. With more than 80% of its employees
contributing engineering capacity, AMI can provide customers with unrivaled
hardware and software design services, and is uniquely qualified to extend its
customers a high level of product customization and technical support
services.
For more details:http://www.ami.com/
Found the similar paper in recruitment ? : Yes No
You might also be interested in :AMI Placement Papers , , Placement Papers
By Company
Previous Papers Next PapersAMI/Placement-Paper-Whole-Testpaper-3779...AMI
Placement-Paper-Whole-Testpaper-3786...

Hi,Iam Sireesha.(B88 R4)........


Recently I had got placed in AMI,Chennai....I'm very glad to share my
experience wid u all.........

Firstly,I wanna say thanks to my parents who have encouraged me a lot and
supported me upto now...........And after I would like to thank Raju sir who
organized this great institute vector which provides good knowledge and
placement.And coming to faculty ,Sameer sir and shashank sir taught us the
most useful information ........Thank u very much for u both ...And other
vector members like subramanyam sir,badri sir and placement

members .......I would


like to thank u all...........
Coming to my interview experience in AMI:(c and 8086)There will be one
written test and 2 technical n hr.

Written test:-------------There are 5 sections in this test...Sectional timing will be


there ......Of course,they will give u instructions.

1st section: soft skillls:like Tell me about urself,dream job,what ur friends say
about u,and some questions related to situations like how u react when that
situation arises....
2nd section:Reasoning: Better to verify R.S.Agarwal reasoning book and some
other books like
shakuntaladevi puzzles.....But u cant understand shakuntaladevi puzzles
without previous reasoning knowledge.
3rd section:C choose the correct answers: To answer these questions u better
verify and thorough with notes and some books like c in depth....Not too
tough
4th section:The other one based on their requirement like what they have
mentioned before ........For me it is 8086.They even asked some basic
questions like diff in 8085 and 8086 .So better u refer some basics of 8085 n
80865th section:Programming in C n 8086C: Two programs on strings only
1.Count the words 2.arrange the sentence in
alphabetical order8086: Two programs 1.2's complement 2.Find the largest
So,if u dont know programming in 8086 also u have to try something......Dont
leave blank.Something is better than nothing right.....So try ur best.

Technical 1: Two members interviewed me .They have asked so many


questions upto 1 hour i think.........Just prepare whatever they have
mentioned .In c,structures, unions,bitwise operators like how to count set bits
dont stick on to one method they will ask u another method ,,,so better to
verify some more methods,pointers like print array with single pointer and
double pointer...Linked list ,,delete ll,,stacks, and all other basics...

Technical 2:
One person interviewed me...He asked me about myself ,if u got job ,another
company comes in hyd,will u go?like some questions, and some questions
like interrupt,stack,call,ret
And about our previous attended campus ...If u answer something u have to
be thorough wid all the words,and hex to dec conversion ...About our
programs written in test...He will analyse u easily bcz he is experienced.So be
careful while answering....

HR:
He is so friendly..Dont afraid,he will ask all ur details,ur
personal,education,previous interviews,How do u see urself after 5 yrs?Why
should I hire u?All about hobbies? Nothing difffucult just answer without any
hesistation...After about 1hr then he wants me to wait ouside.

After 15min I got my offer letter ......


So, friends don't waste ur time and prepare well.Get chance to place in great
companies like AMI....So work hard ,this is the right time to work hard and get
success...Don't disappoint when u get failures,dont give up and get
successs..........All the best friends.
If u have any doubts mail me ....narayansinghthakuri98@yahoo.com

Anda mungkin juga menyukai