Ok we will do it for you cause they are very mean
Answer:
The correct answer to the following question will be Option B (ROM).
Explanation:
Bootstrap is the programming which initializes the OS during initialization. The bootstrap loader creates small operator programs that connect and monitor the various computer hardware components.
ROM is Read-only memory, which will be used to hold a computer's start-up commands, also recognized as firmware.
No other method was used to help save system startup. ROM, then, is the right answer.
Answer:
function dataSamples=AdjustMinValue(numberSamples, userSamples, minValue)
dataSamples=userSamples;
%for loop
for i=1:numberSamples
%checking if dataSamples value at index,i
%is less than minValue
if dataSamples(i)<minValue
%set double of dataSamples value
dataSamples(i)= 2*dataSamples(i);
end
end
end
Explanation:
The given code is in MATLAB.