PuzzlersWorld.com

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

Number Puzzle #57

July 29, 2013 by puzzler 2 Comments

 

IF 3+5+6=151872 5+5+6=253094 5+6+7=303585 5+5+3=251573 then 9+4+7= ??????

IF 3+5+6=151872
5+5+6=253094
5+6+7=303585
5+5+3=251573
then
9+4+7= ??????


Check your answer:-

Tried enough already?
See SolutionHide Solution

In this kind of questions we have to find some pattern to get to the answer, we can see that getting first two digit and second two digits are easy, most difficult part in this question is to get last two digits.

First two digit = <first_number> * <second_number>

Similarly Second two digits = <first_number> * <third_number>

Now the most tricky part is to get last two digits, if you observe claverly

Last two digits = <first_two_digits> + <second_two_digits> – <third_number> and reverse them.

Thus the answer to this number puzzle is 366329.

Checkout more Number Puzzles Tags: Difficult, Solved Puzzles

8 things most people see daily – Rearrange the letters

June 26, 2013 by puzzler 11 Comments

These 8 things most people see daily in their life.
Re-arrange the letters to see what it is?

    1. KWOLACLCL
      HintHide
      Whats the time now?
      Tried enough already?

[Read more…]

Checkout more Alphabetical Puzzles Tags: Correct the spelling, Difficult, Solved Puzzles

Guess the Songs from WhatsApp Emoticons – 4

June 25, 2013 by puzzler 7 Comments

 

Guess the songs from whatsapp emoticons puzzle

Guess the songs from whatsapp emoticons puzzle

[Read more…]

Checkout more Picture Puzzles Tags: Difficult, Guess the Songs, Solved Puzzles, WhatsApp Emoticons

How many Squares in this picture #2

June 22, 2013 by puzzler 4 Comments

You might want to try How many squares – Part 1 before you attempt these 3 puzzles.

1.) How many squares are in this picture ?

How many squares are in this picture

How many squares are in this picture

[Read more…]

Checkout more Picture Puzzles Tags: Difficult, How Many, How Many Squares, Interesting Puzzles, Solved Puzzles

I am a 8 Letter Word

June 19, 2013 by puzzler 1 Comment

I am a 8 Letter Word.
I am kept Secret from Everyone.
My 2nd, 3rd, 4th Letter Spell an Animal.
My 4th, 5th, 6th, 7th, 8th Letter is a Weapon.
My 1st, 2nd, 8th Letter is used for Writing an Exam.
My 3rd, 4th Letters are the Same.

“Guess What Am I” ???

Tried enough already?

Checkout more Riddles Tags: Difficult, Solved Puzzles

Who is the thief puzzle reloaded

May 31, 2013 by puzzler 1 Comment

 

horse donkey and camel were stolen, 3 suspects, find who stole what ?

horse donkey and camel were stolen, 3 suspects, find who stole what ?

If you have not tried its simpler version, try that first click here for Who is the thief puzzle part 1
A horse, a donkey and a camel were stolen.
Three suspects: Robert, Scott and Tommy. All we know that each person stole one animal, but we do not know who stole which. Here are the investigation statements.

Robert: Tommy stole the horse.
Scott: Tommy stole the donkey.
Tommy: They both were lying. I did not steal the horse or the donkey.

Later on, police found out =>

The man who stole the camel told a lie.
The man who stole the horse told the truth.

Can you find out who stole which?
[Read more…]

Checkout more Logical Puzzles Tags: Difficult, Interesting Puzzles, Solved Puzzles, True or False statements puzzle

Falling Diamonds Solution: Google codejam 2013 Round 1B

May 5, 2013 by puzzler Leave a Comment

Most of us are familiar with google codejam, those who don’t visit https://code.google.com/codejam for more information. This is the second problem from Online Round 1B 2013, top 1000 from this round will be eligible for next online round.

Problem Statement

Diamonds are falling from the sky. People are now buying up locations where the diamonds can land, just to own a diamond if one does land there. You have been offered one such place, and want to know whether it is a good deal.

Diamonds are shaped like, you guessed it, diamonds: they are squares with vertices (X-1, Y), (X, Y+1), (X+1, Y) and (X, Y-1) for some X, Y which we call the center of the diamond. All the diamonds are always in the X-Y plane. X is the horizontal direction, Y is the vertical direction. The ground is at Y=0, and positive Y coordinates are above the ground.

The diamonds fall one at a time along the Y axis. This means that they start at (0, Y) with Y very large, and fall vertically down, until they hit either the ground or another diamond.

When a diamond hits the ground, it falls until it is buried into the ground up to its center, and then stops moving. This effectively means that all diamonds stop falling or sliding if their center reaches Y=0.

When a diamond hits another diamond, vertex to vertex, it can start sliding down, without turning, in one of the two possible directions: down and left, or down and right. If there is no diamond immediately blocking either of the sides, it slides left or right with equal probability. If there is a diamond blocking one of the sides, the falling diamond will slide to the other side until it is blocked by another diamond, or becomes buried in the ground. If there are diamonds blocking the paths to the left and to the right, the diamond just stops.

falling diamonds problem google codejam round 1b 2013

falling diamonds problem google codejam round 1b 2013

Consider the example in the picture. The first diamond hits the ground and stops when halfway buried, with its center at (0, 0). The second diamond may slide either to the left or to the right with equal probability. Here, it happened to go left. It stops buried in the ground next to the first diamond, at (-2, 0). The third diamond will also hit the first one. Then it will either randomly slide to the right and stop in the ground, or slide to the left, and stop between and above the two already-placed diamonds. It again happened to go left, so it stopped at (-1, 1). The fourth diamond has no choice: it will slide right, and stop in the ground at (2, 0).
[Read more…]

Checkout more Interview Questions Tags: Difficult, Google codejam, Java, Solved Puzzles

9 digit number #46

April 27, 2013 by puzzler Leave a Comment

9 digit number puzzle

There is a 9 digit number. No digit are repeated and rightmost digit is divisible by 1 and right 2 digits is divisible by 2, right 3 digits is divisible by 3 and so on, finally the whole number is divisible by 9.

Can you find out the number?

See SolutionHide Solution
As the right two digits are divisible by 2, so rightmost digit should be even, at the same time right 5 digits are divisible by 5 so the rightmost digit can be 5 or 0, but as it should be even so it can only be 0.

Now, Right 4 digits are divisible by 4, so the rightmost two digits can be either 20, 40, 80 or 60.
To be divisible by 9 the digits of a number must sum to a multiple of 9. Adding the 10 digits together (0+1+2+…+8+9) gives 45 which is div by 9. However, this is a 9-digit number so we have to drop one from the ten. We can only take out 0 or 9 and still have the remaining digits sum to a multiple of 9. We’ve already shown that 0 is present so the 9 is dropped.
Right 3 digits are divisible by 3 so these 3 digits can be 120, 420, 720, 240, 540, 840, 180, 480, 780, 360.
Now to be divisible by 6 sum of the six digits should be divisible by 3 and it should also be even, which it is.

There is no rule for divisible by 7 so we just have to take digits such that they are divisible by 7, there can be many such numbers and one such number is 123567480.

Checkout more Number Puzzles Tags: Difficult, Number, Puzzle, Solved Puzzles

10 prisoners and hats puzzle

April 20, 2013 by puzzler 12 Comments

Their are 10 prisoners in a jail for a minor crime, they all request the jail officer to set them free, jail officer agrees to release them tomorrow, saying i will

  1. Make you all stand in a queue in ascending order of your heights(smallest first).
  2. You will not be allowed to turn your head(they have to look straight)
  3. I will put one hat on your head, either BLACK or WHITE in color.
  4. Everyone of you has to tell the color of his hat starting from the tallest prisoner, you can only say BLACK or WHITE.
  5. You all will be released, if and only if at least 9 of you guess your hat’s color correctly.

Can you suggest a strategy to the prisoners to maximize the chances of their release?

10 prisoners and hats puzzle

10 prisoners and hats puzzle

[Read more…]

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

Four glasses on a square table

April 15, 2013 by puzzler 4 Comments

four glasses on a square table puzzle, also known as the blind bartender’s problem

Four glasses are placed on the corners of a square table. Some of the glasses are upright (up) and some upside-down (down). You have to arrange the glasses so that they are all up or all down (while keeping your eyes closed all the time). The glasses may be re-arranged in turns subject to the following rules.

  1. Any two glasses may be inspected in one turn and after feeling their orientation you may reverse the orientation of either, neither or both glasses.
  2. After each turn table is rotated through a random angle.
  3. At any point of time if all four glasses are of the same orientation a ring will bell

You have to come up with a solution to ensure that all glasses have the same orientation (either up or down) in a finite number of turns. The algorithm must be non-stochastic i.e. it must not depend on luck.
[Read more…]

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

  • « Previous Page
  • 1
  • …
  • 4
  • 5
  • 6
  • 7
  • 8
  • …
  • 12
  • 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