The process or activity of writing computer programs.
The argument for the function would be answer "D".
For MS Word 2010 and higher
Go to "View" and find checkbox "Ruler"
Answer:
function outputValue = AdjustOutput(outputValue, amplitudeResponse, phaseResponse)
if amplitudeResponse > 10
outputValue = outputValue - 5;
else
outputValue = outputValue;
end
if phaseResponse < 275
outputValue = outputValue + 3;
else
outputValue = outputValue
end
end
AdjustOutput(20, 15, 149)