InterviewSolution
Saved Bookmarks
| 1. |
How to stop your program from eating so much ram?(a) Find a way to work with the data one at a time(b) Declare it in program memory, instead of on the stack(c) Use the hard drive, instead of RAM(d) All of the mentioned |
|
Answer» Right answer is (d) All of the mentioned Explanation: Some of the ways to stop the program by consuming more ram. They are i) Find a way to work with the data one at a time ii) Declare it in program memory, instead of on the stack iii) Use the hard drive, instead of RAM |
|