Answer Posted / 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 |
Post New Answer View All Answers
What will strcmp("Astring", "Astring"); return a) A positive value b) A negative value c) Zero
What is #include ctype h in c++?
What are the effects after calling the delete this operator ?
How does a C++ structure differ from a C++ class?
How do you find out if a linked-list has an end? (I.e. The list is not a cycle)
A prime number is a number which is divisible only by itself and 1. Examples of the first few primes are 2, 3, 5, 7, 11. Consider writing a program which can generate prime numbers for you. Your program should read in and set a maximum prime to generate and a minimum number to start with when looking for primes. This program should be able to perform the following tasks: 1. Read the maximum number from user (keyboard input) to look for primes. The program should not return any primes greater than this number. 2. Read the minimum number from user (keyboard input) to look for primes. The program should not return any primes less than this number. 3. Generate and print out every prime number between the maximum prime and minimum number specified by the user.
Explain the properties and principles of oop.
What are the comments in c++?
What is object in c++ example?
What is the need of a destructor? Explain with the help of an example.
What is an associative container in c++?
What kind of problems can be solved by a namespace?
What is a namespace in c++?
What are the various compound assignment operators in c++?
What is atoi?