InterviewSolution
Saved Bookmarks
| 1. |
Which data structures can cause un-international looping of a program? |
|
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. |
|