1) What is Networking?
Networking is how computers connect to share information. Without networks, your trading platform wouldn’t show live prices or send orders.
Think of it like a market where participants meet and exchange: networking provides the place and the rules for computers to “trade” data.
3) How a Trade Travels (Packets on the Move)
Your PC
➜
Router
➜
Internet
➜
Broker Server
When you click Buy, your order is split into small chunks called packets. These go to your router, then across the internet to your broker. A confirmation packet comes back. All in milliseconds.
8) Mounting vs Unmounting (Unix vs Windows)
Mounting = attach a storage device (USB, disk, network share) so its files appear inside your system. Unmounting = safely detach it so all data is written and the device can be removed safely.
Unix/Linux
- One unified directory folder tree starting at root
/. You pick a mount point (e.g., /mnt/usb) where the device contents appear.
- Mount: makes the files accessible at that point. Unmount: flushes adjustments and breaks connection safely.
sudo mkdir -p /mnt/usb
sudo mount /dev/sdb1 /mnt/usb # attach device to your system tree
# ... read/write your files at /mnt/usb ...
sudo umount /mnt/usb # safely detach device configuration
Windows Alternative
- When you plugin external devices, Windows handles mounting operations automatically, applying label letters like
E: or F:.
- Using the "Safely Remove Hardware" interaction panel executes the exact same programmatic routine as unmounting.
Trading Analogy
Mounting is like connecting to a broker stream so you can execute actions; unmounting is disconnecting cleanly so zero execution routines break midway.