Solve This (? + ? + ?=30)
If 1111=R, 2222=T, 3333=E, 4444=N Then 5555=?
Guess the Hindi Muhawara from the following whatsapp Emoticons?
Sweet, Medicine, Film, Girl, City, Car, Place, Doggy all are name same, guess which word it is?
A girl is blind, deaf, dumb and uneducated too. A boy loves her. How would he propose without touching her?
Four Question, One Answer: One River Name, One Flower Name, One Film Name, One Actress Name?
Guess me who am I, I am the first on earth, the second in heaven...
Which Indian cricketer is known as "Brown Bradman"?
The philosopher Pythagoras of Samos (c. 570 – c. 495 BCE) believed in transmigration of souls, led a group..............
In which modern country was the Aksumite, or Axumite, Empire, which flourished from about the late first................
In an "N" element integer sorted array, a particular elements is repeating "(N/2)+1" times. How much time it take to find the repeating element.
Can someone please write a C program to reverse "N" nodes of list. In the above question N= 3. Program should be generic so it can work for any value assigned to N.
Input List => 1 2 3 4 5 6 7 8 9 10 11 Output List => 3 2 1 6 5 4 9 8 7 10 11 for N=3
Input List => 1 2 3 4 5 6 7 8 9 10 11 Output List => 4 3 2 1 8 7 6 5 9 10 11 for n=4
Given a binary tree print it in inward spiral order i.e first print level 1, then level n, then level 2, then n-1 and so on.
For Ex -
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
Print- 1 15 14 13 12 11 10 9 8 2 3 7 6 5 4