Answer and Explanation:
POLLING MODE: In polling mode in communication process the processor continually check UART port for data instead of UART port signaling the process through an interrupt when data is ready as is done in interrupt mode.
THE DISADVANTAGES AS COMPARED TO THE INTERRUPT MODE :
the disadvantages in polling mode is that the processor wastes time in checking the UART continually while in interrupt mode it is doing useful task
until the UART interrupt this
Is it a multiple choice question?
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:
technicians
Explanation:
the answer is technicians. in my freshmen year we made flash cards and i still have them so i remember it.