Puzzle: A pirate ship with total crew of N pirates acquired a chest with K gold coins. Now they have to divide up the loot.
By long term pirate trad ...
Company where asked this question:
Search results for scenario
Fibonacci numbers interview questions
Posted by aleksin
One of most common question from this area is to write a function which return Nth number of Fibonacci sequence.
Fibonacci numbers are a sequence of n ...
Write a function which will search a given BST for a specific key and return a Value for the found node
Posted by CMaster
class Node
{
public Node Right;
public Node Left;
public int Key;
public String Value;
}
Write a function which will search a given BST for ...
What is BST (Binary Search Tree)?
Posted by CMaster
In the middle of the ocean is a yacht.
Several corpses are floating in the water nearby.
What happend?
Solution
As with any situational puzzle, t ...
How do you plan test automation?
Posted by priyanka
Understand the Requirements
Prepare the automation Test plan
Environment setup
Identify the scenario, test scripts and test data preparation
Execute ...
It is a difficult situation to test a system with no system requirements as there is no proper documentation.Ideal way to test such system would be sc ...
What is state diagram?
Posted by CommonInterview
This questions is among most popular UML interview questions and the short answer would be:
The diagram which shows how single object behave across m ...
