Uh i think it’s uh carrot
If you sign a contract or official document with your non-dominant hand, you do not have to follow that agreement or set of rules
A network of people and services with which we share ties and which provide support is social support.
<h3>What is Social support?</h3>
This is known to be a form of “support that is opened to any body as a result of social ties to other people, groups, and the bigger community.
Note that A network of people and services with which we share ties and which provide support is social support.
Learn more about social support from
brainly.com/question/7463943
#SPJ1
Answer:
see explaination
Explanation:
#include <iostream>
#include <string>
using namespace std;
class Employee
{
string name;
int salary;
public: Employee()
{
}
Employee(string name, int salary)
{
this->name=name;
this->salary=salary;
}
void setName(string name)
{
this->name=name;
}
void setSalary(int sal)
{
this->salary=sal;
}
string getName()
{
return name;
}
int getSalary()
{
return salary;
}
void raiseSalary(int percentage)
{
if(percentage<0)
{
cout<<"Invalid percentage";
}
else
{
salary=salary+((float)percentage/100)*salary;
}
}
};
int main()
{
int percentage;
Employee e1("Satur",1000);
cout<<"Employee details are:";
cout<<e1.getName();
cout<<e1.getSalary();
cout<<"Enter the percentage raise";
cin>>percentage;
e1.raiseSalary(percentage);
cout<<"Raise in salary:";
cout<<e1.getSalary();
return 0;
}