TCP/IP in 802.3 and 802.11 frame

I'm new to networking world. So please bear with me.

My Questions:

  1. How do we send TCP/IP in a 802.3 frame? My understanding is that we have to incorporate the 802.3 LLC layer. The DSAP and SSAP in the LLC layer will provide information of the type of data inside the Information field of the LLC layer. Is this correct? Can we specify DSAP to tell that the information field inside the LLC is a TCP/IP packet? OR Do we need to use Ethernet-SNAP for the LLC layer before putting the TCP/IP?

  2. What is the difference and the significance of DSAP, SSAP, and Ethernet Type field inside LLC layer? My understanding is that the DSAP and SSAP is used for specifying the receiving and the sending network layer process respectively. What does it mean by network layer process? The actual application? The process ID of the applications? Why do we even need DSAP and SSAP? Isn't the information about the protocol type of the data field is enough?

  3. According to LLC (Logical Link Control) (Linktionary term), the LLC layer can be used to forward packet to the appropriate network adapter (in a case of a server with many network adapters). Does this mean with Ethernet version II we can't appropriately select a network adapter for transmission? Can someone explain to me the role of LLC? why LLC is important (other than the fact that LLC provide information about the type of packet of the actual data).

  4. The Access Point and the WNIC will automatically convert the 802.11 frame into either 802.3 or Ethernet II frame. How does the WNIC knows what kind of frame type should it convert the 802.11 frame into?

  5. I did some packet capturing on my wireless network with wireshark. Why is most of the packet that I see is Ethernet II? I thought the 802.3 is the de facto standard?

  6. Who wraps the IP datagram with MAC layer? My understanding is that the MAC layer added by the network card controller (OSI Layer 2). How does this work? Does the OS tell the NIC (through the Driver) the destination MAC and the type of packet to the NIC? And the the NIC will placed the same information to the IP datagram?

Thanks in advance.