PuzzlersWorld.com

  • Hacker Puzzle
  • Interview Puzzles
  • Number Puzzles
  • Maths Puzzles

What king can you make if you take

August 21, 2012 by Ankur 3 Comments

What king can you make if you take,
the head of a lamb,
the middle of a pig,
the hind of a buffalo,
and the tail of a dragon?

Tried enough already?

Checkout more Riddles Tags: Easy, Solved Puzzles

Before you start development on magento

August 1, 2012 by puzzler 2 Comments

I have wasted my lot of time while developing on magento. its only because i was not following some basic things needed before you start development on magento. In my opinion if you follow these 4 tips you should be okay!

[break][/break]

1.) DISABLE CACHE : This is the first requirement before you start development on magento. I have seen many people struggling and wondering why their changes are not visible. I also read somewhere that on an average a new developer spends around 2 hours on magento platform wondering why his changes are not visible.

To disable cache

  1. Go to System > Cache Management
  2. Click on Select All(on left).
  3. Select disable from Action dropdown(on right).
  4. And Click on Submit.
(See above instructions explained in the picture below)

2.) Enable Logging:

You might need this, as often which writing php code if you miss some braces or use a function which does not exist you will get error something like this:-

[Read more…]

Checkout more Technical Tags: Solved Puzzles

8 Steps guide on How to create Magento module

July 16, 2012 by puzzler 1 Comment

This is one of my first article in the series of How to’s in magento. But before you actually start any development on magento you must follow these guidelines.

Step 1:  First create a magento module xml file

( app/etc/modules/Pw_Manageproducts.xml)

[break][/break]
1
2
3
4
5
6
7
8
9
<?xml version="1.0"?>
<config>
    <modules>
        <Pw_Manageproducts>
            <active>true</active>
            <codePool>local</codePool>
        </Pw_Manageproducts>
    </modules>
</config>

This xml tells magento that module is active and will be available in local codePool.

At this point, you should be able to see your module in Magento Admin Panel. Go to System->Configuration->Advanced->Disable Modules Output. You should be able to see Pw_Manageproducts module listed there.

[Read more…]

Checkout more Technical Tags: Solved Puzzles

Confusing one!

May 25, 2008 by Ankur 1 Comment

Q1. Which is the first question where c) is the correct answer

a) Q3
b) Q4
c) Q1
d) Q2

Q2. Which is the first question where a) is the correct answer

a) Q4
b) Q2
c) Q3
d) Q1

Q3. Which is the first question where d) is the correct answer

a) Q1
b) Q2
c) Q4
d) Q3

Q4. Which is the first question where b) is the correct answer

a) Q2
b) Q4
c) Q3
d) Q1

See Solution : Confusing one!Hide Solution

Answers:
d
c
a
b

🙂

Checkout more Logical Puzzles Tags: Interesting Puzzles, Solved Puzzles

River crossing – the harder one

December 18, 2007 by Ankur Leave a Comment

A dysfunctional family has to cross the river. On one side of the river are a mom and 2 daughters, dad and 2 sons, the maid and the dog. There is a boat only big enough to hold 2 people (counting the dog as 1 person). Only the adults are capable of operating the boat. Everyone has to get to the other side, without anything bad happening.
Now the difficulties are : if the dog is left with anyone and the maid isn’t there to control him, he’ll bite. The dad can’t be left with any of the daughters when the mom isn’t there. Likewise, the mom can’t be trusted alone with either of the sons when the dad isn’t there.
Remember! only an adult can operate the boat, and the boat can’t drive itself.See Solution : River crossing - the harder oneHide Solution

Say
West shore is {W} and East shore is {E}
Lets give the nick names to each family member and dog 😉
Mother – {m}, Father – {F}, Daughters – {d1, d2}, Sons – {s1, s2}
House maid – {h}, Dog – {d}

Initially,
W = {m, d1, d2, f, s1, s2, h, d}
E = {…}

let’s move everyone, over…

housemaid and dog go east, and the housemaid comes back:

W = {m, d1, d2, f, s1, s2, h}
E = {d}

housemaid and s1 go east, h and d come back:

W = {m, d1, d2, f, s2, h, d}

E = {s1}

father and s2 go east, father comes back:

W = {m, d1, d2, f, h, d}

E = {s1, s2}

mother and father go east, mother comes back:

W = {m, d1, d2, h, d}

E = {f, s1, s2}

h and d go east, father comes back:

W = {m, d1, d2, f}

E = {s1, s2, h, d}

father and mother go east, mother comes back:

W = {m, d1, d2}

E = {f, s1, s2, h, d}

mother and d1 go east, housemaid and d come back:

W = {d2, h, d}

E = {m, d1, f, s1, s2}

h and d2 go east, h comes back

W = {h, d}

E = {m, d1, d2, f, s1, s2}

h and d go east

W = {}

E = {m, d1, d2, f, s1, s2, h, d}

And we are done.

Checkout more Logical Puzzles Tags: Difficult, Interview, Solved Puzzles

Defective coins

December 7, 2007 by Ankur 1 Comment

We have 10 bags of 1 Rupee coins. One bag contains all the defective coins, the weight of each coin in that bag is 1 gram lesser than the weight of a normal 1 Rupee coin. You have a spring balance, which tells the exact weight. After how many minimum no. of weighs you can separate the bag with defective coins.

Other variant of the same problem:
There are 10 machines in a factory. Each produces coins weighing 10 grams each. One day the factory owner cones to know that one of the machine is not functioning properly and produces coins of weight 9 grams. You have to find out the faulted machine. You ONLY have a weighing machine and you can use it only ONCE.

See Solution : Defective coinsHide Solution
The minimum no. of weighs required is one.

Want to try now ?

solution :

Let the weight of a normal 1 Rupee coin is W.
Now number the bags from 1 to 10 and take out the no. of coins equal to bag’s number from each bag, for example from 1st bag, take one coin, from 5th bag take 5 coins and so on.
Let P is the no. of the bag which contains the defective coins.
Now put all the coins on spring balance and weigh them. Read the spring balance reading, say it is S grams.
Then S = (W grams)*(1+2+3….+10) – P*(1 gram)
P will come out to be a number between 1 to 10 and thats the required bag.

Checkout more Logical Puzzles Tags: Interview, Solved Puzzles

Hats and IIT students

December 7, 2007 by Ankur 5 Comments

Nine IITians were sitting in a classroom. Their prof wanted to test them. One day he told all of his 9 students that he has 9 hats, colored either in red or black. He also added that he has at least one hat with red color and the no. of black hats is greater than the no. of red hats. He keeps those hats on their heads and ask them tell me how many red and black hats I have? Obviously students can not talk to each other or no written communication, or looking into each other eyes; no such stupid options.
Prof goes out and comes back after 20 minutes but nobody was able to answer the question. So he gave them 10 more minuets but the result was the same. So he decides to give them final 5 minutes. When he comes everybody was able to answer him correctly.

So what is the answer? and why?

See Solution : Hats and IIT studentsHide Solution

After first interval of 20 minutes :

Lets assume that their is 1 hat of red color and 8 hats of black color. The student with red hat on his head can see all 8 black hats, so he knows that he must be wearing a red hat.
Now we know that after first interval nobody was able to answer the prof that means our assumption is wrong.

So there can not be 1 red and 8 black hats.

After second interval of 10 minutes :

Assume that their are 2 hats of red color and 7 hats of black color. The students with red hat on their head can see all 7 black hats and 1 red hat, so they know that they must be wearing a red hat.
Now we know that after second interval nobody was able to answer the prof that means our assumption is again wrong.

So there can not be 2 red and 7 black hats.

After third interval of final 5 minutes :

Now assume that their is 3 hats of red color and 6 hats of black color. The students with red hat on their head can see all 6 black hats and 2 red hats, so they know that they must be wearing a red hat.
Now we know that this time everybody was able to answer the prof that means our assumption is right.

So there are 3 red hats and 6 black hats.

Now as everybody gave the answer so there can be a doubt that only those 3 students know about it how everybody came to know ?
Then here is what i think, the professor gave them FINAL 5 minutes to answer, so other guys will think that the professor expects the answer after 3rd interval (according to prof it must be solved after 3 intervals), so this is the clue for others.

Checkout more Logical Puzzles Tags: Hats Puzzles, Interview, Solved Puzzles

Heavier ball

December 7, 2007 by Ankur 2 Comments

You have 8 balls all look identical (in shape, color etc.). All of them have same weight except one defective ball which is heavier than others. You can use a two sided balance system (not the electronic one). Find the minimum no. of measures required to separate the defective ball and the way you separate it.

If you have solved it then try it for N no. of identical balls with one defective ball.

See Solution : Heavier BallHide Solution

The minimum no. of measures required are 2. Now can you solve it… ? Give it a try…

Here is the solution which tells you that how can you do it in 2 measurements.

Divide 8 balls into groups of 3, 3 and 2.

First weigh :
Weigh the two groups of 3 ball, now there are two possibilities
a) They are balanced (all 6 balls are of equal weight)
b) One side is heavier then the other.

case (a) :
The group of 2 has the defective ball. Weigh them with one on each side of balancing machine. The side which has more weigh has the heavier/defective ball.

case (b) :
We got the three balls of the side which is heavier. Now take any two balls and weigh them, then again there are two cases.
(i) They both are of equal weight.
(ii) One is heavier than the other.

for case (b)(i) :
The third ball is heavier/defective than all other balls

for case (b)(ii) :
The heavier ball is defective.
——————————————–

Solution for N no. of balls.

If there is 1 ball, No measurement is required.
If there are 2-3 balls, we need 1 measurement.[(3^0 +1) to 3^1] If there are 4-9 balls, we need 2 measurement. [(3^1 +1) to 3^2]

Now if there are N balls
and lets say it lies between (3^(x-1) +1) to 3^x
then x = [logN/log3] = Greatest integer of logN to the base 3.
Then minimum no. of measures is equal to x = [logN/log3]

Checkout more Interview Puzzles Tags: Interview, Puzzle, Solved Puzzles

Defective ball

December 7, 2007 by Ankur 1 Comment

You have 12 balls all look identical (in shape, color etc.). All of them have same weight except one defective ball. You don’t know that the defective one is heavier or lighter than other balls. You can use a two sided balance system (not the electronic one). It is given that the minimum no. of measures required to separate the defective ball is three. Find the way you separate the defective ball.

See Solution : Defective ballHide Solution

Divide the balls into 3 groups of 4 balls.

First weigh :
weigh 2 groups, one on each side.
There will be two cases
a) The weight on both side is equal i. e. these two groups don’t have the defective ball.
b) One side has less weight than the other side.
Case (a) :
You know 8 balls are of equal weight and one of the remaining 4 balls have a defective one. Name these four as B1, B2, B3, B4.
Second weigh :
Take B1, B2 and weight them.
(i) If they are unequal then either B1 is defective or B2. Compare B1 with one of eight balls. If B1 is equal to that then B2 is defective otherwise B1.
Total measurements in this case : 1 (first weigh) + 1 (second weigh) + 1 (B1 with other ball) = 3
(ii) If B1 and B2 are equal then either B3 is defective or B4. Compare B3 with one of eight balls. If B3 is equal to that then B4 is defective otherwise B3.
Total measurements in this case : 1 (first weigh) + 1 (second weigh) + 1 (B3 with other ball) = 3
Case (b) :
Mark the balls in the side with less weight as L and with more weight as M. We get 4L and 4M.
Second weigh :
Take 2L and 1M in One side say A and take 2L and 1M in Other side say B of balance system. 2M are reserved for now.(i) If side A is down and next side goes up then it has two possibilities.
1. One of 2L in B has less weight than other 7 balls
2. The 1M in A has more weight(ii) If side B is down then it also has two possibilities.
1. One of 2L in A has less weight than other 7 balls
2. One of 1M in B has more weight than other 7 balls(iii) Both sides are balanced

Third weigh :
In cases (i) or (ii) we will get 3 balls (2L and 1M) after the second weigh.
For case (i) and (ii)of (b) :
Weigh two L balls with each other, if they are equal then the 1M is heavier and if they are not then the ball with less weight is defective.
For case (iii) of (b) :
In this case one of the two reserved balls is defective. We have 2M balls. Weigh them, the one which is heavier is defectives. because we know that issue is with the ball with more weight.

Checkout more Interview Puzzles Tags: Interview, Solved Puzzles, Very Difficult

River crossing

December 6, 2007 by Ankur 1 Comment

Three cannibals and three anthropologists have to cross a river. The boat they have is only big enough for two people. If at any point in time there are more cannibals on one side of the river than anthropologists, the cannibals will eat them. What plan can the anthropologists use for crossing the river so they don’t get eaten? (remember! the boat can’t cross the river by itself, someone has to be in it to row it across)
Note that if a boat with a cannibal and an anthropologist travels to a shore with one cannibal on it, then no. of cannibals > no. of anthropologists, even if you say the anthropologist immediately takes the boat back.See Solution : River crossingHide Solution

Let

A = Anthropologist
C = Cannibal
B = the boat
W = the west shore (which they are all on)
and E = the east shore (where they want to go)Step 1 : A and C crosses
W [A, A, C, C] E [A, C, B]Step 2 : A returns
W [A, A, A, C, C, B] E [C]Step 3 : Two C crosses
W [A, A, A] E [C, C, C, B]Step 4 : C returns
W [A, A, A, C, B] E [C, C]Step 5 : Two A crosses
W [A, C] E [A, A, C, C, B]Step 6 : A and C returns
W [A, A, C, C, B] E [A, C]Step 7 : Two A crosses
W [C, C] E [A, A, A, C, B]Step 8 : C returns
W [C, C, C, B] E [A, A, A]Step 9 : Two C crosses
W [C] E [A, A, A, C, C, B]Step 10 : C returns
W [C, C, B] E [A, A, A, C]

Step 11 : Two C crosses
W [Empty] E [A, A, A, C, C, C, B]

Checkout more Logical Puzzles Tags: Solved Puzzles

  • « Previous Page
  • 1
  • …
  • 90
  • 91
  • 92
  • 93
  • 94
  • Next Page »
Submit your Puzzle

You may also like

    Categories

    • Aive hi Puzzles
    • Akbar and Birbal
    • Alphabetical Puzzles
    • Bollywood Puzzles
    • Google Code jam
    • Hindi Riddles
    • Interview Puzzles
    • Interview Questions
    • Logical Puzzles
    • Malayalam Puzzles
    • Maths Puzzles
    • Miscellaneous
    • Number Puzzles
    • Picture Puzzles
    • Riddles
    • Tamil Puzzles
    • Technical

    Social

    • View puzzlersworld’s profile on Twitter
    privacy policy

    Copyright © 2025 · eleven40 Pro Theme on Genesis Framework · WordPress · Log in

    • Hacker Puzzle
    • Logo Puzzles
    • Optical Illusions
    • WhatsApp Puzzles
    • Picture Puzzles
    • Riddles
      ▼
      • Hindi Riddles
    • Bollywood Puzzles
    • Alphabetical Puzzles
    • Aive hi Puzzles
    • Interview Puzzles
    • Logical Puzzles
    • Interview Questions
      ▼
      • Data Structures
      • Binary Tree
      • Algorithms
      • Recursion Questions
      • Amazon Interview Questions
      • Snapdeal Interview Questions
      • Google Code jam
    • Technical
    • Akbar and Birbal
    • Number Puzzles
    • Maths Puzzles
    • Miscellaneous