Hey system has defined specific Quetion that describe how signals are sent over connections. Which layer of the transmission control protocol model provides this function?

Answers

Answer 1

Complete Question:

A system has defined specifications that describe how signals are sent over connections. Which layer of the Transmission Control Protocol/Internet Protocol (TCP/IP) model provides this function?

Group of answer choices.

A. Transport

B. Network

C. Data link

D. Physical

Answer:

A. Transport

Explanation:

Transmission Control Protocol/Internet Protocol (TCP/IP) model is a standard communication protocol used for interconnecting network devices such as routers, switches, host computers and access points over the internet.

A system has defined specifications that describe how signals are sent over connections. The layer of the Transmission Control Protocol/Internet Protocol (TCP/IP) model that provides these functions is the transport layer.

The transport layer comprises of two (2) standard protocols and these are TCP and UDP.

TCP is an acronym for Transmission Control Protocol and it is one of the essential and important protocol of the internet protocol network. This simply means that, it is an essential part of the TCP/IP network. The TCP has a wide range of applications in the following areas, file transfers, world wide web, remote administration, e-mail, etc.

The TCP connection are mainly established in the network using the three-way handshake.

UDP is an acronym for user datagram protocol and it enables the transfer or exchange of data between network devices.


Related Questions

set screw compression and indenter are all types of
a. compression couplings.
b. threaded connectors.
C. rain-tight fittings.
D. threadless connecters and couplings.

Answers

nAnswer:

A.

Explanation:

The compression couplings can be defined as a set of screw, compression, and indenter. A compression fitting is a type of coupling used to connect pipes. A compression couplings is used to connect fixtures and tubings.

It contains screw, compression, and indenter. Therefore, option A is correct answer.

Answer:

dude above me capping its threadless connectors stay strong king

Explanation:

classified Computer by their age​

Answers

Answer:

The answer is below

Explanation:

Classification of computers by age are the following:

First generation from 1940 to 1956. For example, ENIAC using a vacuum tube

Second generation from 1956 to 1963. For example, IBM 7070 using transistor

Third generation from 1964 to 1971. For example, this type of computers use an Integrated circuit

Fourth generation from 1972 to 2010. For example, IBM 5100 using a microprocessor.

Fifth-generation from 2010 to present For example IBM Watson, using Artificial intelligence.

Messages that have been accessed or viewed in the Reading pane are automatically marked in Outlook and the message subject is no longer in bold. How does a user go about marking the subject in bold again?

Mark as Read
Flag the Item for follow-up
Assign a Category
Mark as Unread

Answers

Answer:

Mark as Unread

Explanation:

I just know

Answer:

D. Mark as Unread

Explanation:

Edg. 2021

A _is a short descriptive label that you assign to webpages, photos,
videos, blog posts, email messages, and other digital content so that it is
easier to locate at a later time. It is also the name for part of a coding
element in HTML. *

Answers

Looks like you already answered your question? It’s the a tag ()

what is a dropcap as used in a computer word document

Answers

DROP CAP:-

Drop caps are a specific kind of initial letter, large letters that appear at the beginning of a block of text. ... A drop cap is often used to signify that the reader's moved into a significant new section, or that a new chapter's begun.

Drop caps are a specific kind of initial letter, large letters that appear at the beginning of a block of text. ... A drop cap is often used to signify that the reader's moved into a significant new section, or that a new chapter's begun.A drop cap (dropped capital) is a large capital letter used as a decorative element at the beginning of a paragraph or section. The size of a drop cap is usually two or more lines. The following illustration shows your options for positioning a drop cap.

Question 3 of 10
What is one task of a system optimization tool?
A. Identifies which programs to begin automatically when you start
your computer
B. Downloads all free programs available to you on the Internet
C. Troubleshoots malfunctioning software, such as word processing
software
D. Troubleshoots malfunctioning hardware, such as a mouse or
keyboard

Answers

The OS optimization tool includes the ability to automate and help with some of the common clean up tasks that are tipically run just before using the prepared image. This includes system Clean up tasks and clearing information. Answer: A, identifies which programs to begin automatically when you start your computer.

Some routine cleanup procedures that are often performed right before using the produced image can be automated by the OS optimization tool, and it can also assist with these operations. Thus, option A is correct.

What one task of a system optimization tool?

One of the features of the Windows OS Optimization Tool for Horizon is the ability to automate and aid in a few of the routine cleanup procedures that are frequently performed just before employing the prepared image.

There are three parts to every optimization problem: an objective function, choice variables, and constraints.

The term “formulating an optimization concern” refers to the process of turning a “real-world” issue into the mathematical equations and variables that make up these three parts.

To make the image cleaner and ready for usage with Horizon, they comprise system cleanup procedures and information cleaning.

Therefore, This involves clearing information and performing system cleanup chores.

Learn more about optimization tool here:

https://brainly.com/question/24843744

#SPJ5

do you humans know what math is?

Answers

Some do some dont Albert einstein has the biggest brain :))

A web feed:

A. runs a ticker tape of all your friends' comments on a social
networking site.
B. lists all the activity and postings that are occurring on a website.
C. alerts news watchers of a breaking story they can watch on TV or
online.
D. notifies users that new content has been added to a specific
website.

Answers

The best answer is D

Web feed notifies users that new content has been added to a specific website. Then the correct option is D.

What is a web feed?

The frequent regular update of the content or information given to the user through data format is known as a web feed.

It notifies users that new content has been added to a specific website.

Thus, the correct option is D.

More about the web feed link is given below.

https://brainly.com/question/11319715

#SPJ2

PHOTOSHOP IS A GRAPHICS EDITING PROGRAM CREATED WITH IMAGES KNOWN AS________ ​

Answers

Answer:

Adobe

Explanation:

(Find the number of days in a month) Write a program that prompts the user to enter the month and year and displays the number of days in the month. For example, if the user entered month 2 and year 2000, the program should display that February 2000 has 29 days. If the user entered month 3 and year 2005, the program should display that March 2005 has 31 days. Sample Run 1 Enter a month in the year (e.g., 1 for Jan): 4 Enter a year: 2005 April 2005 has 30 days Sample Run 2 Enter a month in the year (e.g., 1 for Jan): 2 Enter a year: 2006 February 2006 has 28 days Sample Run 3 Enter a month in the year (e.g., 1 for Jan): 2 Enter a year: 2000 February 2000 has 29 days

Answers

Answer:

Follows are the code to this question:

m= int(input("Enter month: "))#defining a m variable that takes months value

y= int(input("Enter year: "))#defining a y variable that takes years value

if m in [1, 3, 5, 7, 8, 10, 12]:#use if block that check m value is in list

   n_day = 31#defining a variable n_day that holds a value  

elif m in [4, 6, 9, 11]:#use elif block that check m value is in list

   n_day = 30#defining a variable n_day that holds a value

else:#defining else block

   if y% 4 == 0 and (y % 400 == 0 or y % 100 != 0):#use if block to check leap year condition

       n_day = 29#holds value in n_day variable

   else:#defining else block

       n_day = 28#holds value in n_day variable

m_name = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October",

              "November", "December"]#defining a m_name as a list that holds string value

print(m_name[m - 1], y, "has", n_day, "days.")#print output with message.

Output:

Enter month: 6

Enter year: 2009

June 2009 has 30 days.

Explanation:

In this code two-variable "y and m" is defined that holds year and month value as an input from the user-end, and use the conditional statement to check m value, which is defined as follows:

In the first condition, if block, it checks m value is available in a given list if the condition is true it holds value "31" in n_day variable. In the second condition, elif block is used checks m value is available in another given list if the condition is true it holds value "30" in n_day variable. In the else block it check leap year condition and hold value in the "n_day variable", in the next step "m_name" variable is defined that stores string value, and uses the print method to print its calculated values.

An algorithm can have an output and an outcome
A) True
B) False

Answers

I believe it’s false 99%sure

The current calendar, called the Gregorian calendar, was introduced in 1582. Every year divisible by four was declared to be a leap year, with the exception of the years ending in 00 (that is those divisible by 100) and not divisible by 400. For instance, the years 1600 and 2000 are leap years, but 1700, 1800, and 1900 are not. Write a program that requests a year as input and states whether it is a leap year. (Test the program on the years 2008, 2009, 1900, and 2000.)

Answers

Solution :

Public Function Is a Leap_Year(Year As_Integer) As Integer

'Dim Tor_F for local variable declaring if value is t/f.

Dim TorF As For Boolean

'Pre conditions: Year > 1581 and Year < 3000

If Year > 1581 And Year <> 1700 Or 1800 Or 1900 Then

IsLeapYear = Year / 4

Else

IsLeapYear = False

TorF = False

End If

End Function

Other Questions
what the name of project in san nicolas gapan city and the description Please select the word from the list that best fits the definitionan OFFICIAL count of people living in a placecensuscircusepistlegladiatormartyrmessiahmercenaryvilla Need help with this question below? Question 1 Which expression is equivalent to 16(30x 24y) 18 (32x 16y)? In the space provided, type the spelling words that have a silent letter.Word Bank:belowbiologycarelesscrumbdominanteveryfriendshiphardshiplightsunshinethronethrownuponwrite I need this TOMORROW please answer properly PLEASE HELP! ENGLISHActual answers only please.Picture is attached this is the question ^^ help Describe mthe significance of the areas acquired to the United States what measures should be taken to ourselves from Anti- Social activities? How would delivering a speech at political rally differ from writing an academic paper, even if both the if speech and the paper werethe same subject? Find the value of x. The diagram is not to scale This table shows the cost of canoe rental, y, based on the number of days rented, x. PLEASE ANSWER ASAP !!!! Human milk contains more than two hundred different ________, which serve a function similar to dietary fiber in adults. Question 11 options: monosaccharides disaccharides oligosaccharides polysaccharides 7 chickens laid 35 eggs. How many eggs will be laid by 40 chickens In_____ economies, the government makes the business decisionscommand traditional market Over Central America, South America, and The Caribbean. Hi guys can you answer my math questions A bear loves visiting his friend, the piglet. The distance between their houses is 300m, and the bear always walks from his house to the piglet's house in exactly the same amount of time. But today, the bear stops at a beehive after walking 1/4 of the distance. He eats honey for 2.5 minutes and then continues to the piglet's house at a speed 15 m/min faster than usual. The total journey to the piglet's house takes the exact same amount of time as it usually does, when the bear does not stop for honey. How long does the journey take? In the graph y = xWhen x = 0 y =