Answer: False
Explanation:
General purpose register cannot be read and written by the Ml program because when ever the instruction decode the input and output unit are invoke for data to read in the memory and it can written to the output device from the memory. General purpose register stored both the addresses and the data in the file. In some cases ML only reads with the hep of special algorithm function.
Answer:
that is technical but I will go with all I mean d
Answer: Column F
Explanation: In Microsoft excel, for the sake of robustness and to aid the effectiveness of updating formulas across cells. The reference of cells are treated as relative which means that when formulas are copied across columns or within rows, they get updated automatically. However, some numbers may be treated as constants such that we do not want them to change or be updated as we move acisss cells. Thus, such numbers are treated Given absolute references, which is made possible by adding a '$' prefix before the colum alphabet or row number or both. in the scenario given above, the row has the $ prefix, hence, it is absolute and will not change but the column alphabet does not and hence, treated as relative.
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)