Answer:
class Foo:
def F(self, n):
if n == 1:
return 1
return self.F(n - 1) + 3 * n - 2
Explanation:
This should cover part a to this question. The thing I'm not sure on is they use the term "method" which in python technically means a class function...but then list one argument with the function call which makes me think it is possibly just supposed to be a regular function. Which would be the following snippet. It would depend on if you are using classes or not yet in your coding class.
def F(n):
if n == 1:
return 1
return F(n - 1) + 3 * n - 2
Play around with it and look into python "lists" and "for loops" for part c. Part b I'm not sure what kind of example they want since I'm not in that class. Good luck!
Answer: Input is the answer.
Answer:
A. inspection
Explanation:
To find - Monica, a reviewer, wants to use a formal review for the SQA process. Which review should Monica use for this purpose?
A. inspection
B
. internal audit
C. test review
D
. walkthrough
Proof -
SQA process - Software Quality Assurance process
The correct option is - A. inspection
Reason -
Formal review in software testing is a review that characterized by documented procedures and requirements. Inspection is the most documented and formal review technique.
The formality of the process is related to factors such as the maturity of the software development process, any legal or regulatory requirements, or the need for an audit trail.
The formal review follows the formal process which consists of six main phases – Planning phase, Kick-off phase, the preparation phase, review meeting phase, rework phase, and follow-up phase.