Answer: The options related to your question is missing below are the missing options
-Use metrics to manage
-Use system based software design
-Assess reuse risks and cost
-Inspect requirements and design
answer:
Assess reuse risks and cost ( option 3 )
Explanation:
The best software acquisition practice that is most applicable to his situation is : Assess reuse risks and cost
The reuse of technology, code and infrastructures will help reduce the risks or wastage of available resource. and also saving cost for the firm as well.
Answer:
A register
Explanation:
Registers are small memory used to store data or values and supply them to the processor as and when needed. These register hold the data temporarily and hold small units of program instructions. So whenever the CPU wants to work on data they have to be made available through the registers. Even after a arithmetic operation the registers serve as buckets for holding the value.
There are different types of registers such as register A, B, C etc and these registers lie in close proximity to the CPU so that we could provide the data immediately and much faster when asked by the CPU.
Therefore we can say that registers are used to temporarily hold small units of program instructions and data immediately before, during, and after execution by the central processing unit (CPU).
Answer:
Program to Plot the power in Watts
voltage=1:200;
resistance=1000;
current=voltage/resistance;
power=current.*voltage;
plot(voltage,power);
xlabel('Voltage in Volts');
ylabel('Power in Watts'); //plot of this program is attached
Program for power in dBW
voltage=1:200;
resistance=1000;
current=voltage/resistance;
power=current.*voltage;
powerdB=10*log10(power);
plot(voltage,powerdB);
xlabel('Voltage in Volts');
ylabel('Power in dBW'); // plot output is also attached
I hope it will help you!