Answer:
Hubs incorporate amplifiers and repeaters.
Explanation:
Hub is an outdated way of connecting ethernet devices, they incorporate amplifiers and repeaters, they do not allow simultaneous communication among connected devices.
The latest technology in connecting ethernet devices are with the use of switch.
Answer:
Pairing and Passkey or PIN
Explanation:
It’s the last one! The key to an effective persuasion is to know what you want and be clear about your response.
Answer:
Grid Computing
Explanation:
Grid computing is a processor architecture that combines computer resources from various domains to reach a main objective. In grid computing, the computers on the network can work on a task together, thus functioning as a supercomputer.
Cheers
Answer:
Curly Braces {}.
Explanation:
The syntax for writing a CSS is as following:-
selector {
property : value;
}
CSS is used for providing the style to the HTML page.Such as fonts,background,height,width etc.
For example:
h1{
font:20px;
background:red;
}
The above written CSS is for the h1 tag in HTML.The font size will be 20 pixels and background color will be red.
So we can say that we need to enclose properties and values in curly braces.