When data are moved over longer distances, to or from a remote device, the process is known as __________.
A. data communications
B. registering
C. structuring
D. data transport
A. data communications
Computer Science & Information Technology
You might also like to view...
What is the first step a technician should take if a network printer does not list in the corporate network printer list?
A) Configure printer sharing. B) Disable the firewall. C) Enable QoS. D) Map the printer.
Computer Science & Information Technology
What is wrong with this code?
```
WriteGreeting(char greetings[ ][10]);
int main()
{
char greetings[3][10]= {“hello”, “howdy”, “hi”} ;
WriteGreeting(greetings);
return 0;
}
WriteGreeting(char greetings[ ][ ] )
{
for(int I = 0; I < 3; ++I)
cout<
Computer Science & Information Technology