PuzzlersWorld.com

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

How many triangles #5

January 17, 2013 by puzzler Leave a Comment

1.) How many triangles are there in this triangle ?

how many triangles in this triangle

how many triangles in this triangle

See AnswerHide Answer

Answer: There are a total of 47 triangles

How?
Lets count…
By looking at it, first impression is … its very simple, But mind you! its not that easy !!!
So lets stick to the divide and conquer approach, we will divide this triangle into 3 equal triangles(triangle formed by connecting outer side to the center of the circle) and will count the number of triangles in each part and then by taking two or more parts together.

Number of triangles in one part: 4(non overlapping) + 3(overlapping) = 7 * 3 = 21
Number of triangles by taking two parts together: 8 = 8 * 3 = 24
Number of triangles by taking all three parts together: 2

Thus, total number of triangles in this puzzle are : 21+24+2= 47

Checkout more Picture Puzzles Tags: Easy, How Many, Puzzle, Solved Puzzles, Triangle

How many squares #4

January 15, 2013 by puzzler Leave a Comment

1.) How many squares do you see in this picture ?

how many squares do you see here

how many squares do you see here

See AnswerHide Answer

Answer with solution

As all the sides are either horizontal or vertical we can say squares diagonals should be parallel. Now to see if the diagonals are parallel or not, i have drawn the diagonals where its not clear if it is a square or rectangle in the image below.

You can see i have labelled few sides as x and y to help you.

So,
Number of squares with side x/2 = 4
Number of squares with side x = 4
Number of squares with side y = 3
Number of squares with side x+y = 6
Number of squares with side x+y = 0
Number of squares with side x+2y = 1
Number of squares with side 2x+2y = 1

Thus, Total number of squares in above puzzle are 19.

Checkout more Picture Puzzles Tags: Easy, How Many, How Many Squares, Solved Puzzles

Number Puzzle #4

January 15, 2013 by Ankur 2 Comments

 

6 - 1 x 0 + 2 / 2 = ?

6 – 1 x 0 + 2 / 2 = ?

See AnswerHide Answer

Answer with Explanation

Given
6 – 1 x 0 + 2 / 2
= 6 – 0 + 1
= 7

So answer to above number puzzle is 7

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

Number Puzzle #3

January 14, 2013 by puzzler 3 Comments

 

IF 11*11 = 4, 12*12 = 9, Then 13*13 = ?

IF 11*11 = 4, 12*12 = 9, Then 13*13 = ?

See AnswerHide Answer

Answer with Explanation

Given
11×11 = (1+1)*(1+1) = 4
12×12 = (1+2)*(1+2) = 9
13×13 = (1+3)*(1+3) = 16

So answer to above number puzzle is 16

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

Number Puzzle #2

January 14, 2013 by puzzler 4 Comments

 

IF 1 =2, 4 20, 6 =42, 9=90, Then 10 =?

IF 1 =2, 4 20, 6 =42, 9=90, Then 10 =?

See AnswerHide Answer

Answer with Explanation

Given 1 = 1^1 + 1,
4 = 4*4 + 4 = 20
6 = 6*6 + 6 = 42
9 = 9*9 + 9 = 90
10 = 10*10 + 10 = 110

So answer to above number puzzle is 110

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

How many circles?

January 4, 2013 by puzzler 1 Comment

Count the number of circles in the image below.

how many circles do you see in this picture

how many circles do you see in this picture

See AnswerHide Answer

There are a total of 17 circles.

How?
1 black circle in the middle(easily visible to all)
Now move a little away from the screen(16 more circles will be visible easily).
Thus, there are a total of 17 circles.

Checkout more Picture Puzzles Tags: Easy, How Many, Puzzle, Solved Puzzles

Logo Puzzle – Part 1

December 7, 2012 by puzzler Leave a Comment

In this world of consumer goods, it is important for companies to have logo that people recognise immediately and associate with your brand. Some people buy the goods just because the popularity of logo. Here in this challenge you will find 10 famous logos.

All logos have had all text removed that reefers to the product, company or service. Some logos are for the companies that may no longer exist, and some are old logos.

Start guessing company or brand name from the logo image

Logo Quiz 1

Logo Quiz 1

Tried enough already?
[Read more…]

Checkout more Picture Puzzles Tags: Easy, Logo, Solved Puzzles

Guess the Songs- Part 1

December 1, 2012 by puzzler Leave a Comment

You have to guess the songs from WhatsApp emoticons and smileys. Give your best try before giving up.

1.) 
Show AnswerHide Answer

Hanste Hanste kat jaye raste

2.)  guess the song 2
Show AnswerHide Answer

Kante nahi kat te ye din ye raat

3.)  guess the song 3
Show AnswerHide Answer

Suraj hua madhham, Chaand jalne laga
[Read more…]

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

Find nth element from end of linked list

November 4, 2012 by asinghal Leave a Comment

How to find nth element from the end of the linked list?

Or in other words Given an integer ‘n’, return a pointer to the n-th node from the end of the list.
Note: Linked list is singly linked list (there is only next pointer no previous pointer).

See Solution: find nth element from end of linked listHide Solution

Keep two pointers pointer1 and pointer2, both pointing to head of the linked list initially. Increment pointer1 by one node till it reaches (n+1)th node. Now increment both pointers by one node till pointer1 becomes null. At this point the node which pointer2 is pointing to will be the nth node from the last.

Code in C/C++

Node * getNthNodeFromLast(Node * node, int n){
	Node* pointer1 = node;
	Node* pointer2 = node;

	while(pointer1 != null && n > 0){
		pointer1 = pointer1->next;
		n--;
	}
	//List does not have n nodes, so return null
	if(n > 0)
		return null;
	//traverse till pointer1 becomes null
	while(pointer1 != null){
		pointer1 = pointer1->next;
		pointer2 = pointer2->next;
	}
	return pointer2;
}

Checkout more Interview Questions Tags: Amazon Interview Questions, Easy, Linked List, Solved Puzzles

Find middle element of linked list

November 4, 2012 by asinghal 1 Comment

How to Find the middle element of a linked list without traversing twice ?

Linked list is singly linked list(there is only next pointer no previous pointer).

See Solution: Find middle element of a linked listHide Solution

Take two pointers both pointing to head of the linked list( pointer1 and pointer2 ). Now increment pointer1 by one node and pointer2 by two nodes at a time in a while loop till pointer 2 reaches end of the list or becomes null, at this point the node which pointer1 is pointing to will be the middle element/node of the linked list.

Code in C/C++

Node* getMiddleElement(Node * node){
	Node* pointer1 = node;
	Node* pointer2 = node;

	//traverse till pointer2 reaches end of the list or becomes null
	while(pointer2 != null && pointer2->next != null){
		pointer1 = pointer1->next;
		pointer2 = pointer2->next->next;
	}
	return pointer1;
}

Checkout more Interview Questions Tags: Easy, Interview, Solved Puzzles

  • « Previous Page
  • 1
  • …
  • 9
  • 10
  • 11
  • 12
  • 13
  • …
  • 15
  • 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