InterviewSolution
Saved Bookmarks
| 1. |
Which data structures can cause un-intenstional looping of a prgm? |
|
Answer» In a data structure, there are certain cases when we get UNINTENTIONAL looping of a program. Like, if you NEGLECT to write or form a base case properly, or the testing of it in some way or ANOTHER goes incorrectly, then it can cause an infinite loop issue. AVOIDING infinite loops require a LOT of care and precision. |
|