Answer:
editing is a word file mean making changes in the text contain is a file. or a word file is one of the most basic ms office word operation.
Hey there! Hello!
Not sure if you still need this answer, but I'd love to help out if you do.
In terms if Excel Spreadsheet, your answer will be D. A<span> moving dashed line border appears around the cells. What the copy button does is take the contents in your cell(s) and copies them so that you can paste them elsewhere. B and C would apply here if you were cutting the text, which clears whatever you have selected so that you can paste them elsewhere without having to go back and delete it.
I have attached an example of what happens to a cell when you either right click it and press copy, or press ctrl/command+c, which is the keyboard shortcut for copying text or contents.
Hope this helped you out! Feel free to ask me any additional questions if you have any. :-)</span>
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;
}