AZ-400 · Question #172
AZ-400 Question #172: Real Exam Question with Answer & Explanation
The correct answer is A: In a Maven build task, select Run PMD.. PMD is a source code analyzer. It finds common programming flaws like unused variables, empty catch blocks, unnecessary object creation, and so forth. There is an Apache Maven PMD Plugin which allows you to automatically run the PMD code analysis tool on your project's source cod
Question
During a code review, you discover quality issues in a Java application. You need to recommend a solution to detect quality issues including unused variables and empty catch blocks. What should you recommend?
Options
- AIn a Maven build task, select Run PMD.
- BIn an Xcode build task, select Use xcpretty from Advanced.
- CIn a Gulp build task, specify a custom condition expression.
- DIn a Grunt build task, select Enabled from Control Options.
Explanation
PMD is a source code analyzer. It finds common programming flaws like unused variables, empty catch blocks, unnecessary object creation, and so forth. There is an Apache Maven PMD Plugin which allows you to automatically run the PMD code analysis tool on your project's source code and generate a site report with its results. Incorrect Answers: B: xcpretty is a fast and flexible formatter for xcodebuild. https://pmd.github.io/
Community Discussion
No community discussion yet for this question.