Alt+Tab switches between windows instantly while Windows+Tab displays all currently active windows.
Hope this helps :D
Answer: Network card
Explanation:
A network card is unit of the network information NIC (Network interface card) and worked with the switches. The working is basically perform at the given physical layer and subsequently organizing different types of devices that are physically associated together to execute as individual unit.
The network interface card (NIC) is also known as network adapter and the ethernet card in the network. It is the expansion of the card that basically enable the computer system to connect with the networks.
Answer:
A lot top is a microcomputer because Michael computer has all the devices that you can use
D.operating system
mac is an unix based os
Language: JavaScript
Answer:
let num = [10,20,30];
average(num);
function average(num) {
let sum = 0;
for(let i in num) {
sum += num[i];
}
return console.log(sum/num.length);
}