InterviewSolution
Saved Bookmarks
| 1. |
How can we move from one desired step to another step?(a) breakpoints(b) System.out.println(c) logger.log(d) logger.error |
|
Answer» The correct answer is (a) breakpoints For explanation: Breakpoints are inserted in code. We can move from one point to another in the execution of a program. |
|