InterviewSolution
Saved Bookmarks
| 1. |
Design an algorithm to find square of the given number and display the result? |
|
Answer» Problem: Design an algorithm to find square of the given number and display the result. The algorithm can be written as: Step 1 – start the process Step 2 – get the input x Step 3 – calculate the square by multiplying the input value ie., square ← x* x Step 4 – display the result square Step 5 – stop Algorithm could be designed to get a solution of a given problem. A problem can be solved in many ways. Among many algorithms the optimistic one can be taken for implementation |
|