Brain teaser: two person have two pizza for food, but only one of them is holding the knife. One cut per pizza. Each has only one chance to have the priority to choose one slice of a pizza. It means a process of cutting, choosing, cutting choose. How many of the pizza can the one with knife get maximum?
Software Interview Questions
551,194 software interview questions shared by candidates
Given deck of cards + joker, what is the probability you see the joker before all four aces?
Flatten a 2D linkedList . A node contains 3 parameters namely, data , pointer to left, pointer to down . The aim of the function is to flatten the linkedlist. Ex: 1-->2-->4 | V 3 Answer is 1-->2-->3-->4 Ex: 1 --> 2--> 3--> 4 | 5-->6-->7 | | 8 9 Answer is 1-->2->5 -> 8 -> 6->9 ->7-> 3-> 4 He asked me to make the same linkedlist flatten not to create a new LinkedList or print the elements
How do we find if a linked list has a loop..
In place sort algorithm for removal of successive same alphabets in O(n) time complexity. i.e. bloooommbbergg should return blomberg
given an integer input stream, and more and more integers are still going in. build an algorithm to return 3 minimum integers at any point of time.
Name of lander isro launched
solve a live coding challenge in one hour using C# and visual studio. Free to use google.
how would you attach an event to an object
You are given a predefined function which generates random number from 1 to 5. You need to use this function and create another function which will generate random number from 1 to 7. Now most important thing is to remember that new random function should be even (i.e. the number generated should be unpredictable, and evenly spaced out).
Viewing 3041 - 3050 interview questions