Answer:
You can use grammarly. It woks amazingly!
Explanation:
Answer:
The taskbar is an element of an operating system located at the bottom of the screen. It allows you to locate and launch programs through Start and the Start menu, or view any program that's currently open.
Answer:
a. 1 is a packet, 2 is data, 3 is a frame.
Explanation:
And what is not mentioned is segment which used TCP/UDP and is part of Transport layer. The packet carries the destination and sender IP address, and is part of the Network Layer. The frame has the Mac address of destination device and senders device and is part of data link layer.
Hence segment has no IP address, hence b. is not correct. Also, data cannot have the IP Address, and Frame has the MAC address, Hence, the above answer. And this arrangement is part of Data Encapsulation.
Also keep in mind data can be anything like a series of bits, or any and it can or not have a header.
Programming language in R studio or R, food1 = "Water" food2 = "Melon"
Concatenate = paste("food1","food2"), will give "Water Melon". In excel Water in range("B2"), Melon in range("B3"), use =CONCATENATE(B2, " ", C2) it gives Water Melon.
Explanation:
- R studio is analytical tool which comes from programming S language.
- We need 3 variable Food1,Food2 and Concatenate in R studio.
- Food1 = "Water" inverted commas mean it is character.
- Food2 = "Melon" inverted commas mean it is a character.
- "=" gives a variable notification.
- Concatenate is a variable which we use function paste .
- Concatenate = paste(food1,food2) result "water melon"
- paste(..., sep = "" , collapse = Null)
- It is function from R.
- Excel Water in B2 and Melon in C2 use the formula concatenate.
- =CONCATENATE(B2, " ",C2) in between commas means space.