Under text and make it look like they belong
if you are asking for hard copy output devices, then two examples would be
printers
plotters
if you are asking for types hard copy documents then two examples would be
letter
card
Answer:
Domain Networking.
Explanation:
A domain in networking refers to any group of workstation,users,printers devices ,database servers and computers which share different type of data via resources of network.
Hence domain networking will be the best option for the company having 40 workstation in a single building sharing a single network.
Answer:
Given,
P = (22, 1, 42, 10)
Q = (20, 0, 36, 8)
a. Formula for Euclidean Distance :
distance = ((p1-q1)^2 + (p2-q2)^2 + ... + (pn-qn)^2)^(1/2)
Now,
distance = ( (22-20)^2 + (1-0)^2 + (42 - 36)^2 + (10-8)^2) ) ^(1/2)
=( (2)^2 + (1)^2 + (6)^2 + (2)^2 ) ) ^(1/2)
=(4+1+36+4)^(1/2)
=45^(1/2)
Distance = 6.7082
b.Manhattan distance :
d = |x1 - x2| + |y1 - y2|
d = |22- 20| + |1 - 0|
d = |2| + |1|
Explanation: