Interview Questions Answers.ORG
Interviewer And Interviewee Guide
Interviews
Quizzes
Home
Quizzes
Interviews Debugging Interviews:CTCDebuggingGDBPurifyQuantifyTheoreticalWTB
Copyright © 2018. All Rights Reserved
Fresh Purify Interview Questions & Answers:
1. How to obtain a memory dump from an application that crashes?
We can obtain a memory dump using WinDbg, which is part of the free debugging tools from Microsoft:
2. What is Debugging with Purify?
Purify is a debugging tool that is invoked when you compile your program. Purify adds code that detects when a memory error is going to occur and gives you feedback as to where and why. Purify will detect the following errors (plus a few more):
► Reading or writing beyond the bounds of an array.
► Reading or writing freed memory.
► Reading and using uninitialized memory.
► Reading or writing through null pointers.
► Reading or writing beyond the end of the call stack.
► Having memory leaks.
Copyright 2007-2024 by Interview Questions Answers .ORG All Rights Reserved.
https://InterviewQuestionsAnswers.ORG.
https://InterviewQuestionsAnswers.ORG.