Forums.Sureshkumar.net : A Perfect Place to Share Knowledge         Blogs     Games    Magazines    

"Sharing knowledge does not lessen your store, often it gets you more. Sharing plays a key role in relationships and bonding, happens in small steps and is assisted through community membership."

Go Back   SURESHKUMAR.NET FORUMS > FRESH JOB SEEKERS > Fresher Resources > Placement Papers > AMI Placement Papers
Register FAQ Members List Calendar Games Blogs Search Today's Posts Mark Forums Read

AMI Placement Papers AMI profile pattern , AMI Latest placement papers and Updated AMI 2006 2007 placement papers . If you have attended recent test of AMI , kindly post the model paper in this forum.

   

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
Old 03-02-07, 06:12 PM   #1 (permalink)
Super Moderator
 
sridhar's Avatar
 
Join Date: Feb 2006
Age: 25
Posts: 4,551
Thanks: 25
Thanked 347 Times in 219 Posts
Thanks: 25
Thanked 347 Times in 219 Posts
Rep Power: 0 sridhar has much to be proud of sridhar has much to be proud of sridhar has much to be proud of sridhar has much to be proud of sridhar has much to be proud of sridhar has much to be proud of sridhar has much to be proud of sridhar has much to be proud of sridhar has much to be proud of sridhar has much to be proud of sridhar has much to be proud of
AMI Placement paper

AMI Placement paper

AMERICAN MEGATRENDS Inc.(AMI) BIOS- 24th FEB 2004 (KOLKATHA)

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 mileand 2 miles apart. speed if trains are 5 and 10 miles/hr. Give the postion as viewed by a helicopter when the trains meet?

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 betweenDentist'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 3. no output 4. error 5.Null

b. protected derivation

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

1. 10 10 2. 10 20 3. 20 10 4. 20 30 5. 30 20 6. None

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 4. 102.34 5. None

f. unsigned char snapnib(unsigned char misc)
{
int aloha, hamalo;
hamalo = aloha = misc;
misc = (hamalo << 4)+((aloha & 0x0f)>>4);
return(misc);
}
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 3. -1 4. 1 5. none

k. *name = "ANYTHING";
*foo = "ALRIGHT";
*name1 = "WRONG";
strcat(name,name1);
printf("%s %s \n",name,foo);
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)
sridhar is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to sridhar For This Useful Post:
lavengirl (30-06-07)
Old 30-06-07, 12:36 AM   #2 (permalink)
Junior Member
 
Join Date: Jun 2007
Posts: 3
Thanks: 1
Thanked 0 Times in 0 Posts
Thanks: 1
Thanked 0 Times in 0 Posts
Rep Power: 2 lavengirl is on a distinguished road
Re: AMI Placement paper

CAN ANYONE TELL ME WAT ARE THE ROUNDS IN AMI? AND ALSO ITS PACKAGE??
lavengirl is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 01-09-07, 10:43 PM   #3 (permalink)
Junior Member
 
Join Date: Sep 2007
Age: 22
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 2 saranyam is on a distinguished road
Re: AMI Placement paper

Hi...
rounds... usually we have a general written..i.e c,c++,logical and aps..
then 2nd round u can choose either java r assembly language...
then 3rd round is gd
4th round is technical... they will ask c,c++ and java basics.. u should be strong in basics.. nothing big ...tehy will ask u...
for c... they asked.. wat is pointer,diff btw macro and typedef,fun pointer ,array char....
in both c and java they will ask to write a hello world pgm.. and start question from that...

all the best....
by
saranya
saranyam is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
INFOSYS 2006 PLACEMENT PAPERS sridhar Companies Info & Recruitment Process 2 14-04-07 03:22 PM
ABB placement paper 1 sridhar ABB Placement Papers 0 31-01-07 11:57 AM
All Big MNCs Latest 2006 Placement papers sridhar Companies Info & Recruitment Process 1 24-11-06 06:54 PM
ACCENTURE 2006 PLACEMENT PAPERS sridhar Companies Info & Recruitment Process 1 22-10-06 01:29 PM
CTS 2006 PLACEMENT PAPERS sridhar Companies Info & Recruitment Process 0 09-10-06 06:24 PM


All times are GMT +6.5. The time now is 08:40 AM.





Search Engine Optimization by vBSEO 3.1.0