A CIDR Notation is known as the term that refers to a shorthand method for identifying network and host bits in an ip address.
<h3>
What is CIDR Notation?</h3>
This is known to be a term that was devised in 1993 by the IETF. The CIDR is said to be a shorthand method for knowing network and host bits in an IP address.
Therefore, one can say that A CIDR Notation is known as the term that refers to a shorthand method for identifying network and host bits in an ip address.
Learn more about CIDR Notation from
brainly.com/question/14985928
#SPJ12
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;
}
Answer:
Go to join.zoom.us. Enter your meeting ID provided by the host/organizer. Click Join. When asked if you want to open zoom.us, click Allow.
Explanation: