a) Personal communication devices are used in healthcare for sending e-mails or messages to healthcare members.
b) They use these devices for calculations.
c)They can access work related medical information by using mobiles.
2) Personal communication devices use at work has positive effect on their work including reducing stress, benefiting patients care improving coordination of patient care among the healthcare team or increases unit team work.
Answer:
Explanation:
What’s In
The diagram below is a typical bungalow residential electrical wiring plan.
he kitchen and toilet, which are the most dangerous part of a house where
cooking and laundry appliances are located. It requires the installation of
which protect humans from danger. Replacement of C.O. or
installation of new GCFI needs electrical tool and equipment to be used based on the job requirement
Answer:
A) Like "9?????????"
Explanation:
Required
10 characters and starts with 9
<em>The options relate to queries in Microsoft Access; so, I will answer the question from the perspective of Microsoft Access.</em>
First, the query will use the like statement because the query is to make comparison.
Next; for the search query to return exact 10 characters, the syntax is "??????????"
Lastly, for the search query to begin with 9, the first ? will be replaced with 9.
So, we have: "9?????????"
<em>Hence, (a) is correct</em>
Answer:
#include<iostream>
using namespace std;
class Money{
private:
int dollars;
int cents;
public:
Money(int d=0, int c=0){
setDollar(d);
setCent(c);
}
void setDollar(int d){
dollars = d;
}
void setCent(int c){
cents = c
}
int getDollar() {
return dollars;
}
int getCent() {
return cents;
}
double getMoney(){
return (dollars + (cents/100));
}
};
// testing the program.
int main(){
Money Acc1(3,50);
cout << M.getMoney() << endl;
Money Acc2;
Acc2.setDollars(20);
Acc2.setCents(30);
cout <<"$" << Acc2.getDollars() << "." << Acc2.getCents() << endl;
return 0;
}
Explanation:
The C++ source code defines the Money class and its methods, the class is used in the main function as a test to create the instances of the money class Acc1 and Acc2.
The object Acc2 is mutated and displayed with the "setDollar and setCent" and "getDollar and getCent" methods respectively.
On a Linux system, the first daemon that is loaded is known as init.
<h3>What is a
daemon?</h3>
A daemon can be defined as a program that is designed and developed to run continuously and it's created to handle periodic service requests that are expected to be received on a computer system such as a Linux system.
On a Linux system, init simply refers to the first daemon that is loaded and it runs continuously.
Read more on Linux here: brainly.com/question/25480553
#SPJ12