Computer Science, asked by nithyaanbalagan, 1 year ago

Static code analysis is performed in the _____________

commit stage
acceptance stage
unit test


which one is correct?

Answers

Answered by Sidyandex
16

Static code analysis is generally performed in the commit stage.

It is the process in which static code is run or compiled in order to detect any forms of vulnerabilities if any.

It is generally carried out in the commit stage as in the acceptance stage, there are chances of occurring errors and failures.

Answered by phillipinestest
1

" Static code analysis" is "performed" in the "commit stage". Usually in the commit stage, the "static code analysis" is done and the errors are detected when the code is compiled and executed.

     In the acceptance stage, there is possibility of error occurrence. Unit test is done by taking small unit of code to test and combine them to compile."

Similar questions