Answer: I can't really code a whole thing for you but use VS Code for this it'll make your life easier in the long run.
The two functions does tcp/ip are:
- Reassemble data packets at the destination.
- Request servers for data the user wants.
<h3>What are the functions of TCP IP?</h3>
The role of the Transmission Control Protocol is known to be the one that helps to take in and put together the Data Packets while that of IP is to send the Data Packets to the right location or destination.
Therefore, The two functions does tcp/ip are:
- Reassemble data packets at the destination.
- Request servers for data the user wants.
Learn more about tcp/ip from
brainly.com/question/17387945
#SPJ1
Answer:
Option (B) Nominal is the correct option.
Explanation:
Nominal data set is the set of the heights of data measurement for the particular tax filing status. It also used for the labeling of the variables without allowing them to the quantitative data type. So, that's why the following option is correct.
Other options are wrong because the following statement is related to the Nominal data set.
Answer:
class OddNumber
{
public static void main(String args[])
{
int n = 1000; //Store 1000 in Variable n typed integer
System.out.print("Odd Numbers from 1 to 1000 are:"); // Print headline of output window
for (int i = 1; i <= n; i++) //For loop to go through each number till end
{
if (i % 2 != 0) //check if number is even or odd.Not divisible by 2 without reminder means it is odd number
{
System.out.print(i + " "); //print odd numbers
}
}
}
}
Answer:??
Explanation:what is that suppose to mean?
please give me a brainiest if you don't mind