Geeks Talk

Prepare for your Next Interview


Welcome to the Geeks Talk forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

a a tricky one

This is a discussion on a a tricky one within the Aptitude Skills forums, part of the Brain Gym category; in a soap company,a soap is manufactured with 11 parts.....for making one soap,u will get one part as a scrap...at the end of the day,u have 251 such scraps....from that ...

Go Back   Geeks Talk > Brain Gym > Aptitude Skills
Register Blogs FAQ Tag Cloud Calendar Mark Forums Read
  #1 (permalink)  
Old 07-26-2008
Junior Member
 
Join Date: Jul 2008
Location: chennai
Posts: 5
Thanks: 1
Thanked 3 Times in 2 Posts
hari_nowayout is on a distinguished road
a a tricky one

in a soap company,a soap is manufactured with 11 parts.....for making one soap,u will get one part as a scrap...at the end of the day,u have 251 such scraps....from that ,how many soaps can be manufactured??
Reply With Quote
The Following User Says Thank You to hari_nowayout For This Useful Post:
Sponsored Links
  #2 (permalink)  
Old 07-29-2008
Junior Member
 
Join Date: Jul 2008
Location: Hyderabad
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
sarathreddy is on a distinguished road
Re: a a tricky one

This is a wild guess . Is it 24.
Reply With Quote
  #3 (permalink)  
Old 07-29-2008
Junior Member
 
Join Date: Jul 2008
Location: India
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
nishit.dey is on a distinguished road
Smile Re: a a tricky one

It is 22 soaps
Reply With Quote
  #4 (permalink)  
Old 08-06-2008
Junior Member
 
Join Date: Aug 2008
Location: bangalore
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
chaitra_ht_23 is on a distinguished road
Re: a a tricky one

Quote:
Originally Posted by hari_nowayout View Post
in a soap company,a soap is manufactured with 11 parts.....for making one soap,u will get one part as a scrap...at the end of the day,u have 251 such scraps....from that ,how many soaps can be manufactured??
the soaps that can be manufactured are 24
Reply With Quote
  #5 (permalink)  
Old 08-07-2008
Junior Member
 
Join Date: Aug 2008
Location: Mumbai
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
ramprasad.ap is on a distinguished road
Re: a a tricky one

I think you can make 25 soaps and you will stil have 1 part with you

Wrote a simple algo to find that in perl



$w = 251;
print w2soap(\$w);
sub w2soap {
my($wref)=@_;
my $x = int($$wref/11);
$$wref = $x + ($$wref % 11);
if($$wref >= 11){
$x = $x + w2soap($wref);
}
print "Returning $x\n";
return $x;
}
Reply With Quote
  #6 (permalink)  
Old 08-07-2008
Junior Member
 
Join Date: Aug 2008
Location: Mumbai
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
ramprasad.ap is on a distinguished road
Re: a a tricky one

Now a similar question

If for every 3 wrappers I get 1 soap free ( with wrapper of course )
How many soaps do I need to buy to get 20 soaps
Reply With Quote
  #7 (permalink)  
Old 08-17-2008
Junior Member
 
Join Date: Jul 2007
Posts: 8
Thanks: 0
Thanked 0 Times in 0 Posts
mahesh_venkat36 is on a distinguished road
Re: a a tricky one

we can get 25 soaps by end of the day
Reply With Quote
  #8 (permalink)  
Old 09-02-2008
Junior Member
 
Join Date: Sep 2008
Location: CHENNAI
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
chandra411 is on a distinguished road
Re: a a tricky one

i think we can make 251 soaps
Reply With Quote
  #9 (permalink)  
Old 09-02-2008
Expert Member
 
Join Date: Apr 2008
Location: Tamilnadu
Posts: 1,465
Thanks: 15
Thanked 150 Times in 141 Posts
deepasree has a spectacular aura aboutdeepasree has a spectacular aura about
Re: a a tricky one

hi friend..

i think it is 251

Thanks
Deepasree
Reply With Quote
  #10 (permalink)  
Old 09-02-2008
Junior Member
 
Join Date: Aug 2008
Posts: 4
Thanks: 0
Thanked 4 Times in 1 Post
niki_87 is on a distinguished road
Re: a a tricky one

Hi,

I think it's 25.

Because form 251 scraps you can make 22 soaps and 9 scraps remain. And by making 22 soaps you will get 22 more scraps so from that you can make 2 more soaps. And by making those 2 soaps you will get 2 scraps. And those 2 scraps with the previously remained 9 scraps will make one more soap. And for the last one you made, you'll get one more scrap. That of course will be the reminder.

No. of soaps are 22+2+1 = 25

So, there will be 25 soaps and 1 scrap.




_Niki_
Reply With Quote
  #11 (permalink)  
Old 09-02-2008
Expert Member
 
Join Date: Jun 2007
Location: Australia
Posts: 260
Thanks: 7
Thanked 15 Times in 15 Posts
Sushma Mosali is on a distinguished road
Re: a a tricky one

hi,

i think it may be 251

Thanks
Sushma
Reply With Quote
  #12 (permalink)  
Old 11-21-2008
Junior Member
 
Join Date: Nov 2008
Location: Pune, India
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
helloanup is on a distinguished road
Re: a a tricky one

Answer: 25 soups

11 scraps = 1 soup manufactured ( given )

With 251 scraps = 22 soups manufactured, and each soup gave one scrap i.e. 22 scrap + 9 scrap still remained. So, now we total 22+9 = 31 scraps still remained.

With 31 scraps = 2 soups manufactured, and each soup gave one scrap i.e. 2 scraps + 9 scrap still remained. So, now we have 2+9 = 11 scraps still remained.

With 11 parts = 1 soups manufactured, and it gave one scrap.

In Total, 22 + 2 + 1 i.e 25 soups . ( with 1 scrap still remained.)

But the question was how many soaps can be manufactured?? so the answer to it is ' 25 ' soups can be manufactured by end of the day. !!..
Forget about the scraps they aren't asking about remained scraps.

Few have answered it correctly ... 3 cheers.

Cheers,
Anup | Mahindrakar
Reply With Quote
  #13 (permalink)  
Old 11-21-2008
Junior Member
 
Join Date: Nov 2008
Location: Pune, India
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
helloanup is on a distinguished road
Re: a a tricky one

Answer for ramprasad.ap question.

Question:
Now a similar question
If for every 3 wrappers I get 1 soap free ( with wrapper of course )
How many soaps do I need to buy to get 20 soaps

Answer:
To buy get 20 soups you need to buy atleast 14 soups.

Explanation:
Buy 14 soups, you will have 14 soups + 14 wrappers,

With 14 wrappers, you can have 4 soups and along with it 4 wrappers + 2 wrappers remaining. Total you have 6 wrappers left.

With 6 wrappers, you can have 2 soups and 2 wrappers. So in total you have (14 +4 +2 soups + 2 wrappers still remaining ).

Ramprasad is this OK ? Kindly confirm.


Cheers,
Anup | Mahindrakar
Reply With Quote
  #14 (permalink)  
Old 12-10-2008
Junior Member
 
Join Date: Dec 2008
Location: India
Posts: 10
Thanks: 0
Thanked 4 Times in 1 Post
amaresh_83 is on a distinguished road
Re: a a tricky one

Quote:
Originally Posted by hari_nowayout View Post
in a soap company,a soap is manufactured with 11 parts.....for making one soap,u will get one part as a scrap...at the end of the day,u have 251 such scraps....from that ,how many soaps can be manufactured??
Ans: 25 (22+2+1)

(251 %11) +(22%11) +1)


Reply With Quote
  #15 (permalink)  
Old 01-22-2009
Junior Member
 
Join Date: Jan 2009
Location: india
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
grvsgaurav is on a distinguished road
Re: a a tricky one

its 25 n 1 part as scrap...
Reply With Quote
  #16 (permalink)  
Old 02-09-2009
Junior Member
 
Join Date: Feb 2009
Location: kota(rajasthan)
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
kalpana_mca is on a distinguished road
Re: a a tricky one

I think the answer is :22
Reply With Quote
  #17 (permalink)  
Old 02-09-2009
Junior Member
 
Join Date: Jan 2009
Location: Bangalore
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Nachhu is on a distinguished road
Re: a a tricky one

It should be 21 soap i.e,
Step 1: 251/11 =22.81 approximately 23 soaps(23*11=253)
Step 2:Remove a part as a scrap from 23 soap(253-23=230)
Step 3:Now divede 230 by 11 its approximately 21(20.90)
Reply With Quote
  #18 (permalink)  
Old 05-09-2009
Junior Member
 
Join Date: May 2009
Location: bangalore
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
baviktp is on a distinguished road
Re: a a tricky one

it s exactly 25soaps........(251/11)+ (22/11)+( 1)= 24
Reply With Quote
  #19 (permalink)  
Old 05-11-2009
Junior Member
 
Join Date: May 2009
Location: gujranwala
Posts: 4
Thanks: 0
Thanked 0 Times in 0 Posts
parkergate is on a distinguished road
Re: a a tricky one

24 soaps can be made ,9 scraps will remain left
Reply With Quote
  #20 (permalink)  
Old 06-29-2009
Junior Member
 
Join Date: Jun 2009
Location: miami florida
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
whowannit is on a distinguished road
Re: a a tricky one

25 remainder 1
Reply With Quote
Reply

  Geeks Talk > Brain Gym > Aptitude Skills

Thread Tools
Display Modes

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 Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads

Thread Thread Starter Forum Replies Last Post
Try solving this tricky number Series Bessie Brainteasers 13 05-11-2009 11:57 PM
Please answer this tricky question followguru Testing Issues 4 02-27-2008 07:51 AM
tricky question vmshenoy Interviews 11 04-15-2007 09:00 AM
Just tricky!!! raju1984 Brainteasers 3 01-12-2007 04:20 AM
Tricky Question blenda Interviews 1 08-06-2006 03:13 PM


All times are GMT -4. The time now is 06:35 AM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.3.1
Copyright © 2009 GeekInterview.com. All Rights Reserved