Solve it without division operator and in O(n).
Bookmark it!
These icons link to social bookmarking sites where readers can share and discover new web pages.
Solve it without division operator and in O(n).
Bookmark it!
These icons link to social bookmarking sites where readers can share and discover new web pages.
Tags:interview quetsion·placements paper
Extension to this questions is - if there are some billion numbers are there, and you have enough memory to fit all these numbers. What is the best of to do the same?
Bookmark it!
These icons link to social bookmarking sites where readers can share and discover new web pages.
Tags:interview question·placements paper
This is related to google print application. In other words, we have many books out of which some books titles were different but content same. We need to figure out such cases efficiently. How?
Bookmark it!
These icons link to social bookmarking sites where readers can share and discover new web pages.
Tags:interview question·placements paper
Really, it was asked in google interview. Of course, this is pretty much similar to classic questions like how many gas stations in the united states?
can anybody help? best of all answers comes here …
Bookmark it!
These icons link to social bookmarking sites where readers can share and discover new web pages.
Tags:
For example, 5! = 1.2.3.4.5= 120 has one zero and 10! = 1.2.3.4.5.6.7.8.9.10 = 3628800 and has two zeros.
can anybody help? best of all answers comes here …
Bookmark it!
These icons link to social bookmarking sites where readers can share and discover new web pages.
Tags:Google·placements paper
The power set in Algebra theory is the set of all subsets of a set
(no..bull-set!) If a set has N elements then the power set will have
2^N elements. So if a set is denoted by {a,b} with a,b as elements then
the power set is { {},{a},{b},{a,b} }.The {} is the empty set.
Can anybody help? best […]
Tags:algorithm·Google·placements question·power set
Test consist of 15 question based on C, C++, and Data Structure and two C programs. So i am listing some of the question as i remembered.
Q1) What is the value of i after execution of the following program.
void main()
{
long l=1024;
int i=1;
while(l>=1)
{ l=l/2;
i=i+1;
}
}
a)8 b)11 c)10 d)100 ans:b
Q2) This question is based on the complexity […]
Tags: