<span>Processor, Main Memory, I/O Modules, System Bus</span>
Answer:
I'm not sure but I believe it would be A
Explanation:
This answer can't really be accurate as the reason can change for anyone.
Answer:
An effective policy is the procedure that are manually clear and easy to understand in an organisation. It basically define as the set of rules and principles in a system to guide the decision and fulfill their desired goals.
An effective policy is error free and has high efficiency. Basically, it is the set of various ideas that can be used for decision making.
Some of the effective policies are:
- The idea and plan are tested before its implementation in the system.
- The result should be efficient and in measurable terms.
- The ideas and assumptions are explicit in the nature.
Answer:
The code is designed using C++ with comments
Explanation:
#include<bits/stdc++.h>
using namespace std;
int main(){
int pay, hours; //declaring hourly pay rate and number of hours worked
cout<<"Enter hourly pay rate: "<<endl; //taking user input
cin>>pay;
cout<<"Enter hours worked: "<<endl; //taking user input
cin>>hours;
int gross;
if (hours<=40){
gross=hours*pay; //calculating gross pay
}
else if (hours>40){
gross=40*pay+(hours-40)*1.5*pay; //calculating gross pay for overtime
}
int withholding, netpay;
//calculation of withholding..
if (gross>1000){
withholding=(gross*28)/100;
}
else if (gross>600 && gross<=1000){
withholding=(gross*21)/100;
}
else if (gross<=600){
withholding=(gross*10)/100;
}
netpay=gross-withholding; //calculation of netpay
cout<<"Gross pay is $"<<gross<<endl; //output
cout<<"Net pay is $"<<netpay<<endl; //output
return 0;
}