PuzzlersWorld.com

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

Logo Puzzle – Part 3

December 12, 2012 by puzzler Leave a Comment

Logo importance

Logo design is an important area of graphic design, and one of the most difficult to perfect. The logo, is the image embodying an organization. Because logos are meant to represent companies brands or corporate identities and foster their immediate customer recognition, it is counterproductive to frequently redesign logos.

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.

Guess the company or brand name from the logo image.

Logo Quiz 21

Logo Quiz 21

Tried enough already?
[Read more…]

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

Logo Puzzle – Part 2

December 9, 2012 by puzzler Leave a Comment

Logo Importance

A logo is a graphic mark or emblem commonly used by commercial enterprises, organizations and even individuals to aid and promote instant public recognition. Logos are either purely graphic or are composed of the name of the organization.

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.

Guess the company or brand name from the logo image.

Logo Quiz 11

Logo Quiz 11

Tried enough already?
[Read more…]

Checkout more Picture Puzzles Tags: Logo, 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 3

December 4, 2012 by puzzler

You have to guess the songs from pictures. Give your best try before giving up. Best of Luck.

1. guess the songs 21
Show SongHide Song

Dil jala na dil jale se dil jal jayega

2.  guess the songs 22
[Read more…]

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

Guess the songs – Part 2

December 2, 2012 by puzzler 1 Comment

You have to guess the songs from WhatsApp Emoticons and smileys. If you have not tried part 1, i would recommend you to try that first, as that is easier then this one 🙂

1.  guess the song-11
Show SongHide Song

Dil Garden – Garden ho gaya.

2.  guess the song-12
Show SongHide Song

Ek glassy 2 glassy

3.  guess the song-13
Show SongHide Song

Tuta-Tuta 1 parinda aise tuta.
[Read more…]

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

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

How many people in party?

November 20, 2012 by puzzler 6 Comments

At a party, everyone shook hands with everybody else. There were 66 handshakes. How many people were at the party?
See Solution: How many people in party?Hide Solution

lets say there are n persons
first person shakes hand with everyone else: n-1 times(n-1 persons)
second person shakes hand with everyone else(not with 1st as its already done): n-2 times
3rd person shakes hands with remaining persons: n-3

So total handshakes will be = (n-1) + (n-2) + (n-3) +…… 0;
= (n-1)*(n-1+1)/2 = (n-1)*n/2 = 66
= n^2 -n = 132
=(n-12)(n+11) = 0;
= n = 12 OR n =-11
-11 is ruled out so the answer is 12 persons.

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

Rotate an array by k elements

November 18, 2012 by puzzler Leave a Comment

Given an array of n elements, write an algorithm to rotate it right by k element without using any other array. In other words rotate an array in place.
you can have temp variable to swap two elements.
Ex:-
Initial Array: A = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10}
Rotating array A right by 3 elements should result in
A = {8, 9, 10, 1, 2, 3, 4, 5, 6, 7}
Hint: There is a trick, think before doing much of the programming 🙂
See Solution: Rotate an array by k elementsHide Solution

So the trick is to reverse the whole array first then reverse the array from 0 to k-1 and k to n-1.
For example
Array A after reversing whole array: {10, 9, 8, 7, 6, 5, 4, 3, 2, 1}
Array A after reversing 0 to 2 elements: {8, 9, 10, 7, 6, 5, 4, 3, 2, 1}
Array A after reversing 3 to 9 elements: {8, 9, 10, 1, 2, 3, 4, 5, 6, 7}
Code:

void rotateRight(int[] a, int k){
	int length = a.length();//in C/C++ it will be given as input
	reverse(a, 0, length -1);//reverse whole array
	reverse(a, 0, k-1);//assuming 0 < k < length
	reverse(1, k, n-1);
}
void reverse(int[] a, int start, int end){
	while(start < end){
		swap(a, start, end);
		start++;
		end--;
	}
}
void swap(int[] a, int pos1, int pos2){
	int temp = a[pos1];
	a[pos1]= a[pos2];
	a[pos2] = temp;
}
//Note: in interviews you might be asked to handle negative scenarios
// like array out of bound etc.

Checkout more Interview Questions Tags: Array, Difficult, Interview, Solved Puzzles

Bury deep, Pile on stones

October 26, 2012 by puzzler Leave a Comment

Bury deep, 
Pile on stones,
My mind will always
Dig up them bones

Tried enough already?

Checkout more Riddles Tags: Difficult, Solved Puzzles

The hungry dog howls

October 25, 2012 by puzzler Leave a Comment

The hungry dog howls 
For crust of bread
His cry goes unheard 
It’s far overhead

Tried enough already?

Checkout more Riddles Tags: medium, Solved Puzzles

  • « Previous Page
  • 1
  • …
  • 68
  • 69
  • 70
  • 71
  • 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