in Computer Networks edited by
559 views
1 vote
1 vote

persistent connection  require all info at one time

while non persistent require every time a new connection 

can any one solve this question..

 

 

in Computer Networks edited by
559 views

5 Comments

In persistent mode: 1 TCP connection is sufficient.

In non-persistent mode: 1 TCP connection for web page to send + 26 connections for images = 27 connections required.
3
3
but in answer they give 27,

is this is wrong coz in ques the have  mention persistent
1
1

Yes @jugnu1337 they have given wrong answer , for persistent one connection is sufficient .

1
1

@Isha_99 can we also need to consider the case of the dynamic creation of images?

And if needed then there can be a possibility of 26 different connections for images along with 1 connection for text. 

 

0
0

1 Answer

4 votes
4 votes
Best answer

In this question, for HTTP request in persistent mode the number of connections required to display the webpage is 1 only . Web page will firstly send connection request to server and after servicing its request server doesn’t close the connection and leaves it open for more request from sender. 

Source – Forouzan

selected by

Related questions