Which algorithm do you like the most? Why?
Answers were Sorted based on User's Feedback
Answer / samrat das
Booth algorithm...
It shows how a multiplication goes on in the register level.
It helps a system programmer to create in register level program.
This type of algorithm helps in microprocessor architecture programming.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / irshad
Bubble sort..
simple robust & fast
This type of sorting is good for web
| Is This Answer Correct ? | 3 Yes | 9 No |
Which header file allows file i/o with streams a) fileio.h b) iostream.h c) fstream.h
What is the best c c++ compiler for windows?
What do you know about friend class and friend function?
What is the arrow operator in c++?
Explain object slicing in c++?
What is the extraction operator and what does it do?
Write a note about the virtual member function?
State two differences between C and C++.
Can a program run without main function?
What is the difference between a "copy constructor" and an "assignment operator" in C++?
What are pointers used for c++?
Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1