Answer:
- It includes Word, to create, polish, and share documents; Excel, to analyze and visualize data; PowerPoint, to create, collaborate, and effectively present ideas; OneNote, to organize ideas into a digital notebook; Outlook, to organize email, coordinate schedules, and stay up to date with contacts; Access, to create .
<h3>Hope this helps you XD ✌️</h3>
Answer:
There are two portions of this question; first is the program to solve the problem and second is to make documentation of that program.
a) A program required by a supermarket owner to calculate gross salaries of the workers with comments for explanation.
b) The raptor to illustrate the working of the program.
Explanation:
#include<iostream>
using namespace std;
main()
{
// variables decleration
int EmployeeID;
float HourlyRate;
int RegHours;
int OvertimeHours;
float GrossPay;
float Tax;
float Parking;
float NetPay;
// input data
cout<<"Enter Employee ID:";
cin>>EmployeeID;
cout<<endl;
cout<<"Enter Hourly Rates:";
cin>>HourlyRate;
cout<<endl;
cout<<"Enter Regular Work Hour:";
cin>>RegHours;
cout<<endl;
cout<<"Enter Overtime Hours:";
cin>>OvertimeHours;
// calculation salary
GrossPay = (RegHours * HourlyRate) + (OvertimeHours * (HourlyRate * 1.5));
Tax = GrossPay * (30 / 100); //tax is 30% of the Gross Pay
Parking = 10; //parking is $10
NetPay = GrossPay - (GrossPay * Tax) - Parking;
//output information
cout<<endl;
cout<<"****RESULTS****"<<endl;
cout<<"Employee ID :"<<EmployeeID<<endl;
cout<<"Gross Pay :$"<<GrossPay<<endl;
cout<<"Net Pay :$"<<NetPay<<endl;
}
Uh, no?
You will still receive texts from that person if they send you texts.
Deleting the conversation does not affect them being able to text you at all.
Answer:
Explanation to the approach and code given below
Explanation:
I am considering that you need only a defined subclass and not the working program.
So given statement is,
The class ICalculator has one additional method ,sign, that receives no arguments , and doesn't modify currentValue. Instead, it simply returns 1, 0 or -1 depending on the whether currentValue is positive, zero, or negative respectively.
Here is the code:
public class ICalculator1 extends ICalculator {
public int sign() {
if (currentValue != 0) {
return currentValue * -1;}
else {
return 0;
}
}
}
or you can try this alternative soluton.
public int sign() {
int value = add(0); // add 0 and return currentValue
if (value > 0) return 1;
else if (value < 0) return -1;
else return 0;
}
Answer:B. Are used to create, organize, and manage databases
Explanation: Database management system (DBMS) is a computer software which is used to collect, analyse or evaluate and retrieve data from a database. It is essential to the flow of businesses or other activities of an organisation.
Examples of database management system softwares MICROSOFT ACCESS,FOXPRO,ORACLE etc all this are effective as it helps to manipulate the data structure,field names,the file formats etc.