Imagine you have a closet full of shirts. It’s very hard to find a shirt. So what can you do to organize your shirts for easy retrieval?
Read Answers(17) | 32,423 Views |
What method would you use to look up a name in a dictionary?
Read Answers(16) | 33,389 Views |
You’re in a library, given a bunch of books. You want be able to look for books without looking at every book every time. What algorithm would you use? why?
Read Answers(9) | 19,422 Views |
Why array of reference is not possible?
Read Answers(12) | 15,861 Views |
You have two fuses… they burn at different rates and not at
steady rates. BUT! They only burn for one hour. One could burn the
entire way except one inch within one minute, then spend the last 59 on
that last inch, for example.
You also have to use this to somehow time 45 minutes exactly. How would you do it?
Read Answers(9) | 11,391 Views |
class Object{ … }
Object *ptr;
1. ptr = new Object;
2. Object o; ptr = &o;
What's the difference b/w 1 and 2?
Read Answers(9) | 13,526 Views |
what is the diff b/w Copy Constuctor & assignment operator.
(Not synatax wise but internally)
Read Answers(11) | 13,575 Views |
what do U mean by bottom up approch and top down approch
Read Answers(8) | 10,389 Views |
Spiral Traversal - If you were given an array like:
A B C D E
1 2 3 4 5
A B C D E
1 2 3 4 5
The output should be: ABCDE5E54321A1234DCB
need a program for this…
Read Answers(24) | 15,655 Views |
How to quantize data in Database
Read Answer(1) | 6,486 Views |