Hi!
I'll give you what I know off the top of my head.
caleb wrote:
1. In a 10Base-T or 100Base-TX environment, what is the used of the other pairs in UTP beside transmit and receive ?
Half duplex uses one pair, full duplex uses two pairs. A third pair can be used for a midspan PoE injector (to provide power to an IP Phone for example), but there's no data through the remaining pairs. Gigabit uses all four pairs.
caleb wrote:
2. Is it possible to increase the size of the MTU. if so, what would be the result ? will the transmission of data will become faster?
A frame with an MTU above 1500 is called a jumbo frame. Yes, there's a speed increase, but the switch has to support it. Most consumer grade switches support up to 1500, datacenter LAN switches usually up to 9000. At MTU 9000 (used mainly for Fibre Channel over Ethernet, not really for traditional IP traffic), there's about a 3% less overhead, so 3% speed increase. Not mindblowing.
caleb wrote:
6. When talking about serial cable, you are just referring to the various DTE and DCE cable, right?
For me, yes.
caleb wrote:
7 What is the reason why the first ping are taking longer compared to next ping reply? is it because of the ARP process?
You are correct. You can even lose the first ping if multiple hops are involved.
caleb wrote:
8 if you use a public ip address range on a lan, 150.200.x.x example. will it work? even when connected on public internet? what are the cons and pros with this network?
Assuming you NAT it (behind a router) just like any other RFC 1918 private range network, it would work. Pro's: none. Con's: this is not as agreed upon in the RFC, and you will be unable to reach any webserver on the internet with an IP in the 150.200.0.0/16 (150.200.x.x as you've written it) range, because your computer will think it's in the local network, and not find it.
Hope this gives you some insights already.