计算机网络第2章练习及答案点评

合集下载

计算机网络第二章习题解答

计算机网络第二章习题解答

计算机网络第二章习题解答1. 问题描述:解释什么是分组交换?分组交换是一种网络传输技术,其中数据被分成较小的块(或分组)进行传输,而不是以连续的比特流进行传输。

在分组交换中,每个分组都会独立地通过网络传输,并且可以根据网络条件选择最佳路径来传输分组。

2. 问题描述:什么是电路交换?请列出其优点和缺点。

电路交换是一种传输技术,其中通信路径在建立连接时被预先分配。

在电路交换中,通过建立一个持续的、专用的通信路径来实现端到端的数据传输。

优点:- 传输效率高,数据传输过程稳定;- 可保障数据传输的实时性,适用于需求严格的应用场景,如电话通信;缺点:- 通信链路建立时间较长;- 通信路径在建立时就被预留,即使在通信过程中没有数据传输也会占用资源;- 在链路建立的过程中,若链路中断,需要重新建立连接。

3. 问题描述:什么是存储转发交换?请列出其特点。

存储转发交换是一种分组交换的方式,其中每个分组在传输之前需要完全接收,并存储在交换机的缓冲区中,然后根据目的地址选择合适的端口进行转发。

存储转发交换的特点包括:- 可以处理不同大小的分组,适用于各种应用场景;- 由于分组在接收端进行存储和处理,因此可以对接收到的分组进行差错检测和纠正;- 可以在网络拥塞时进行流量控制,防止分组丢失。

4. 问题描述:简要解释虚电路交换和数据报交换的区别?虚电路交换和数据报交换都是分组交换的方式,但两者存在一些区别。

虚电路交换中,发送端和接收端在通信之前会建立一个虚电路,路由器会记录这个虚电路,将后续的分组沿着虚电路转发。

在传输过程中,每个分组都有一个虚电路号标识,使得分组能够按照特定的路径到达目的地。

虚电路交换类似于电路交换,在传输过程中,分组的到达顺序和给定路径的稳定性都得到了保证。

而数据报交换中,每个分组都是独立地通过网络传输,每个分组都包含了目的地址等信息,因此路由器根据分组的目的地址来选择最佳的传输路径。

数据报交换类似于存储转发交换,分组可以通过不同的路径进行传输,灵活性较高。

计算机网络课后题答案第二章

计算机网络课后题答案第二章
习题解答
第二章:应用层

P116. 1




a 错误。HTTP的一对消息(request-response)只能获取一 个对象。因此,对于包含三个对象的页面,客户机将发 送三个request消息 b 正确。这两个Web页面在同一个Web服务器中(因为两 个对象的URL中主机部分相同,且在相同的虚拟目录下), 可以利用一个持续连接来获取这两个Web页面。 c 错误。一个HTTP消息(Message)可能需要通过多个 Segment进行传输,但一个Segment不会包含两个或两个 以上的HTTP请求消息。 d 错误。HTTP Response消息的头部行Data:指定Web服 务器创建该Response消息的时间。

b



第二章:应用层

P119. 19

覆盖网络(overlay network)中共有N个Peer。 如果任意一对Peer间都存在一个TCP连接,则覆盖网络 2 中全部TCP连接的数量为 N ( N 1) / 2
C
N

覆盖网络的节点就是Peer,边就是TCP连接,因此,覆 盖网络中包含的节点数量为N,边数就是 N ( N 1) / 2 与每个TCP连接经过的路由器数量没有关系。

b 对象的最后修改时间为“ Sat,10 Dec 2005……”,这 可以从Last-Modified头部行获得。 c 从Content-Length头部行可知,对象(HTML文档)的长 度为3874字节。 d


从头部行Connection: keep-alive可知,服务器同意使用持续连 接。 该文档的前五个字节内容为:<!doc
第二章:应用层

2.计算机网络原理第二章课后习题及答案

2.计算机网络原理第二章课后习题及答案

第二章1. (Q2)For a communication session between a pair of processes, which process is the client and which is the server?Answer:The process which initiates the communication is the client; the process that waits to be contacted is the server..2. (Q3) What is the difference between network architecture and application architecture?Answer:Network architecture refers to the organization of the communication processintolayers (e.g., the five-layer Internet architecture). Application architecture, on the other hand, is designed by an application developer and dictates the broadstructure of the application (e.g., client-server or P2P)3. (Q4) What information is used by a process running on one host to identify a process running on another host?Answer: The IP address of the destination host and the port number of the destinationsocket.4. (Q6) Referring to Figure 2.4, we see that none of the application listed in Figure 2.4 requires both no data loss and timing. Can you conceive of an application that requires no data loss and that is also highly time-sensitive?Answer: There are no good example of an application that requires no data loss and timing.If you know of one, send an e-mail to the authors5. (Q9) Why do HTTP, FTP, SMTP, and POP3 run on top of TCP rather than on UDP?Answer: The applications associated with those protocols require that all application databe received in the correct order and without gaps. TCP provides this servicewhereas UDP does not.6. (Q11) What is meant by a handshaking protocol?Answer: A protocol uses handshaking if the two communicating entities first exchangecontrol packets before sending data to each other. SMTP uses handshaking at theapplication layer whereas HTTP does not.7. (Q13) Telnet into a Web server and send a multiline request message. Include in the request message the If-modified-since: header line to force a response message with the 304 Not Modified status code.Answer: Issued the following command (in Windows command prompt) followed by theHTTP GET message to the “” web server:> telnet 80Since the index.html page in this web server was not modified since Fri, 18 May2007 09:23:34 GMT, the following output was displayed when the abovecommands were issued on Sat, 19 May 2007. Note that the first 4 lines are theGET message and header lines input by the user and the next 4 lines (startingfrom HTTP/1.1 304 Not Modified) is the response from the web server.8. (Q14) Consider an e-commerce site that wants to keep a purchase record for each of its customers. Describe how this can be done with cookies.Answer: When the user first visits the site, the site returns a cookie number. This cookie number is stored on the user’s host and is managed by the browser. During each subsequent visit (and purchase), the browser sends the cookie number back to the site. Thus the site knows when this user (more precisely, this browser) is visiting the site.9. (Q15) Suppose Alice, with a Web-based e-mail account (such as Hotmail or gmail), sends a message to Bob, who accesses his mail from his mail server using POP3. Discuss how the message gets from Alice’s host to Bob’s host. Be sure to list the series of application-layer protocols that are used to move the message between the two hosts.Answer: Message is sent from Alice’s host to her mail server over HTTP. Alice’s mail server then sends the message to Bob’s mail server over SMTP. Bob then transfers the message from his mail server to his host over POP3.10. (Q10) Recall that TCP can be enhanced with SSL to provide process-to-process securityservices, including encryption. Does SSL operate at the transport layer or the application layer? If the application developer wants TCP to be enhanced with SSL, what does the developer have to do?Answer: SSL operates at the application layer. The SSL socket takes unencrypted data fromthe application layer, encrypts it and then passes it to the TCP socket. If theapplication developer wants TCP to be enhanced with SSL, she has to include theSSL code in the application.11. (Q16) Print out the header of an e-mail message you have recently received. How manyReceived: header lines are there? Analyze each of the header lines in the message.Answer: from 65.54.246.203 (EHLO )Received:(65.54.246.203) by with SMTP; Sat, 19 May 2007 16:53:51 -0700from ([65.55.135.106]) by Received: with Microsoft SMTPSVC(6.0.3790.2668); Sat, 19 May 2007 16:52:42 -0700 Received: from mail pickup service by with Microsoft SMTPSVC; Sat,19 May 2007 16:52:41 -0700Message-ID: <*******************************************>Received: from 65.55.135.123 by with HTTP; Sat, 19 May 2007 23:52:36 GMTFrom: "prithuladhungel"<***************************>To: ******************Bcc:Subject: Test mailDate: Sat, 19 May 2007 23:52:36 +0000Mime-Version:1.0Content-Type: Text/html; format=flowedReturn-Path: ***************************Figure: A sample mail message headerReceived: This header field indicates the sequence in which the SMTP serverssend and receive the mail message including the respective timestamps.In this example there are 4 “Received:” header lines. This means the mailmessage passed through 5 different SMTP servers before being delivered to thereceiver’s mail box. The la st (forth) “Received:” header indicates the mailmessage flow from the SMTP server of the sender to the second SMTP server inthe chain of servers. The sender’s SMTP server is at address 65.55.135.123 andthe second SMTP server in the chain is .The third “Received:” header indicates the mail message flow from the secondSMTP server in the chain to the third server, and so on.Finally, the first “Received:” header indicates the flow of the mail message fromthe forth SMTP server to t he last SMTP server (i.e. the receiver’s mail server) inthe chain.Message-id: The message has been given this*************************************************(bybay0-omc3-s3.bay0.hotmail.com. Message-id is a unique string assigned by the mail systemwhen the message is first created.From: This indicates the email address of the sender of the mail. In the givenexample,**************************************To: This field indicates the email address of the receiver of the mail. In theexample, the ****************************Subject: This gives the subject of the mail (if any specified by the sender). In theexample, the subject specified by the sender is “Test mail”Date: The date and time when the mail was sent by the sender. In the example,the sender sent the mail on 19th May 2007, at time 23:52:36 GMT.Mime-version: MIME version used for the mail. In the example, it is 1.0.Content-type: The type of content in the body of the mail message. In theexample, it is “text/html”.Return-Path: This specifies the email address to which the mail will be sent if thereceiver of this mail wants t o reply to the sender. This is also used by the sender’smail server for bouncing back undeliverable mail messages of mailer-daemonerror messages. In the example, the return path is“***************************”.12. (Q18) Is it possible for an organizat ion’s Web server and mail server to have exactly thesame alias for a hostname (for example, )? What would be the type for the RR that contains the hostname of the mail server?Answer: Yes an organization’s mail server and Web server can have the sa me alias for ahost name. The MX record is used to map the mail server’s host name to its IPaddress.13. (Q19) Why is it said that FTP sends control information “out-of-band”?Answer:FTP uses two parallel TCP connections, one connection for sending controlinformation (such as a request to transfer a file) and another connection foractually transferring the file. Because the control information is not sent over thesame connection that the file is sent over, FTP sends control information out ofband.14. (P6) Consider an HTTP client that wants to retrieve a Web document at a given URL. The IPaddress of the HTTP server is initially unknown. What transport and application-layer protocols besides HTTP are needed in this scenario?Answer:Application layer protocols: DNS and HTTPTransport layer protocols: UDP for DNS; TCP for HTTP15. (P9) Consider Figure2.12, for which there is an institutional network connected to theInternet. Suppose that the average object size is 900,000 bits and that the average request rate from the institution’s browsers to the origin servers is 10 requests per second. Also suppose that the amount of time it takes from when the router on the Internet side of the access link forwards an HTTP request until it receives the response is two seconds on average (see Section 2.2.5).Model the total average response times as the sum of the average access delay (that is, the delay from Internet router to institution router) and the average Internet delay. For the average access delay, use △/(1-△β), where △is the average time required to send an object over the access link and βis the arrival rate of objects to the access link.a. Find the total average response time.b. Now suppose a cache is installed in the institutional LAN. Suppose the hit rate is 0.6. Findthe total response time.Answer:a.The time to transmit an object of size L over a link or rate R is L/R. The average timeisthe average size of the object divided by R:Δ= (900,000 bits)/(1,500,000 bits/sec) = 0.6 secThe traffic intensity on the link is (1.5 requests/sec)(0.6 sec/request) = 0.9. Thus, theaverage access delay is (0.6 sec)/(1 - 0.9) = 6 seconds. The total average response timeis therefore 6 sec + 2 sec = 8 sec.b.The traffic intensity on the access link is reduced by 40% since the 40% of therequestsare satisfied within the institutional network. Thus the average access delayis(0.6 sec)/[1–(0.6)(0.9)] = 1.2 seconds. The response time is approximately zero iftherequest is satisfied by the cache (which happens with probability 0.4); the averageresponse time is 1.2 sec + 2 sec = 3.2 sec for cache misses (which happens 60% of thetime). So the average response time is (0.4)(0 sec) + (0.6)(3.2 sec) = 1.92 seconds.Thusthe average response time is reduced from 8 sec to 1.92 sec.16. (P12) What is the difference between MAIL FROM: in SMTP and From: in the mail messageitself?Answer: The MAIL FROM: in SMTP is a message from the SMTP client that identifies the senderof the mail message to the SMTP server. TheFrom: on the mail message itself is NOTanSMTP message, but rather is just a line in the body of the mail message.17. (P16) Consider distributing a file of F = 5 Gbits to N peers. The server has an upload rate ofu s = 20 Mbps, and each peer has a download rate of d i =1 Mbps and an upload rate of u. For N = 10, 100, and 1,000 and u = 100 Kbps, 250 Kbps, and 500 Kbps, prepare a chart giving the minimum distribution time for each of the combinations of N and u for both client-server distribution and P2P distribution.Answer:For calculating the minimum distribution time for client-server distribution, we use thefollowing formula:D cs = max {NF/u s , F/d min }Similarly, for calculating the minimum distribution time for P2P distribution, we use thefollowing formula:D P 2P = max {F /u s ,F /d min ,NF /( u s + u i n i =1 )} Where,F = 5 Gbits = 5 * 1024 Mbits u s = 20 Mbps d min = d i = 1 MbpsClient Server:N 10 100 1000 200 Kbps10240 51200 512000 u 600 Kbps10240 51200 512000 1Mbps10240 51200 512000Peer to Peer:N 10 100 1000 200 Kbps10240 25904.3 47559.33 U 600 Kbps10240 13029.6 16899.64 1 Mbps10240 10240 10240。

计算机网络基础(段标第6版) 第2章 习题参考答案

计算机网络基础(段标第6版) 第2章 习题参考答案

填空1计算机间的通信合作层次接口服务2语法语义同步3结构格式4OSI参考模型国际标准化5物理层数据链路层网络层传输层会话层表示层应用层表示层数据链路层6为数据端设备提供传送数据的通路传输数据完成物理层的一些管理工作7数据终端设备数据通信设备8链路管理、帧同步、流量控制、差错控制、透明传输、寻址9帧10面向字符面向比特11通信子网层、路径选择、流量控制、数据传输与中继、清除子网的质量差异12虚电路服务、数据报服务13数据传输层、表示层14网络接口层、网络互联层、传输层、应用层15简单文件传输协议、超文本传输协议、远程登录协议、文件传输协议16服务17会话层18ARP协议19远程登录20网络互连层判断:1对2错3错4错5错6对7错8对9对10错1.网络体系结构采用层次化的优点是什么?(1)各层之间相互独立,高层不必关心低层的实现细节,只要知道低层所提供的服务,经及本层向上层所提供的服务即可,能真正做到各司其职。

(2)有利于实现和维护,某个层次实现细节的变化不会对其他层次产生影响。

(3)易于实现标准化。

2.0SI模型和TCP/IP模型的共同点和不同点是什么?共同点:都采用了层次结构的思想、在传输层中定义了相似的功能。

不同点:二者在层次划分上、使用协议上有很大的区别;TCP/IP为工业标准模型,而OSI 是理论标准模型。

3.简述OS1网络层的主要功能?物理层具体解决了以下问题:使用什么类型的传输介质,使用什么样的连接器件和连接设备。

使用什么拓扑结构。

使用什么样的物理信号表示二进制的。

和1以及该物理信号与传输相关的特性如何。

数据链路层具体解决了以下问题:将bit信息加以组织封装成帧。

确定了数据帧的结构。

通过使用硬件地址及物理地址来寻址。

实现差错校验信息的组织。

对共享的介质实现访问控制。

网络层具体解决了以下问题:提供了网络层的地址(IP地址),并进行不同网络系统间的路径选择。

数据包的分割和重新组合。

差错校险和恢复。

计算机网络第2章练习及答案点评

计算机网络第2章练习及答案点评

一、选择题题目1()是面向连接的协议,用三次握手和滑动窗口机制来保证传输的可靠性和进行流量控制。

选择一项:A. TCPB. FTPC. UDPD. IPTCP协议(Transport Control Protocol),即传输控制协议,是面向连接的协议,用三次握手和滑动窗口机制来保证传输的可靠性和进行流量控制。

相关知识 IP 协议 UDP协议 FTP协议IP协议(Internet Protocol),即互联网协议,是支持网间互连的数据报协议,它与TCP协议一起构成了TCP/IP协议族的核心。

IP协议规定网际层数据分组的格式,用来在内部网中交换数据,并负责路由选择。

UDP协议(User Datagram Protocol),即用户数据报协议,是面向无连接的、不可靠的传输层协议。

UDP为应用层提供一种非常简单的服务。

它只是把数据报从一台主机发送到另一台主机,但并不保证该数据报能到达另一端。

FTP协议(File Transfer Protocol),即文件传输协议,属于应用层协议。

正确答案是:TCP题目2()协议规定网际层数据分组的格式。

选择一项:A. TCPB. IPC. UDPD. FTPIP协议(解释同选择题1)相关知识 TCP协议 UDP协议 FTP协议TCP协议(解释同选择题1)UDP协议(User Datagram Protocol),即用户数据报协议,是面向无连接的、不可靠的传输层协议。

UDP为应用层提供一种非常简单的服务。

它只是把数据报从一台主机发送到另一台主机,但并不保证该数据报能到达另一端。

FTP协议(File Transfer Protocol),即文件传输协议,属于应用层协议。

正确答案是:IP题目3一个功能完备的计算机网络需要指定一套复杂的协议集。

对于复杂的计算机网络协议来说,最好的组织方式是()。

选择一项:A. 混合结构模型B. 层次结构模型C. 连续地址编码模型D. 分布式进程通信模型层次结构模型,为了降低系统的设计和实现的难度,把计算机网络要实现的功能进行结构化和模块化的设计,将整体功能分为几个相对独立的子功能层次,各个功能层次间进行有机的连接,下层为其上一层提供必要的功能服务。

《计算机网络》(第四版 谢希仁编著)课后习题答案--第二章 物理层

《计算机网络》(第四版 谢希仁编著)课后习题答案--第二章 物理层

《计算机网络》(第四版谢希仁编著)课后习题答案--第二章物理层(P66)第二章物理层(P66)1、物理层要解决哪些问题?物理层的主要特点是什么?答:(1)物理层要解决的主要问题:①物理层要尽可能屏蔽掉物理设备、传输媒体和通信手段的不同,使上面的数据链路层感觉不到这些差异的存在,而专注于完成本层的协议与服务。

②给其服务用户(数据链路层)在一条物理的传输媒体上传送和接收比特流(一般为串行按顺序传输的比特流)的能力。

为此,物理层应解决物理连接的建立、维持和释放问题。

③在两个相邻系统之间唯一地标识数据电路。

(2)物理层的主要特点:①由于在OSI之前,许多物理规程或协议已经制定出来了,而且在数据通信领域中,这些物理规程已被许多商品化的设备所采用。

加之,物理层协议涉及的范围广泛,所以至今没有按OSI的抽象模型制定一套新的物理层协议,而是沿用已存在的物理规程,将物理层确定为描述与传输媒体接口的机械、电气、功能和规程特性。

②由于物理连接的方式很多,传输媒体的种类也很多,因此,具体的物理协议相当复杂。

4、、物理层的接口有哪些方面的特性?各包含什么内容?答:(1)机械特牲说明接口所用接线器的形状和尺寸、引线数目和排列、固定和锁定装置等等。

(2)电气特性说明在接口电缆的哪条线上出现的电压应为什么范围。

即什么样的电压表示1或0。

(3)功能特性说明某条线上出现的某一电平的电压表示何种意义。

(4)规程特性说明对于不同功能的各种可能事件的出现顺序。

5、奈氏准则与香农公式在数据通信中的意义是什么?比特和波特有何区别?答:奈氏准则与香农公式的意义在于揭示了信道对数据传输率的限制,只是两者作用的范围不同。

奈氏准则给出了每赫带宽的理想低通信道的最高码元的传输速率是每秒2个码元。

香农公式则推导出了带宽受限且有高斯白噪声干扰的信道的极限信息传输速率C=Wlog2(1+S/N),其中W为信道的带宽(以赫兹为单位),S为信道内所传信号的平均功率,N 为信道内部的高斯噪声功率。

计算机网络第2章习题答案

计算机网络第2章习题答案

2-04,2-06 ,2-13,2-15文字题略2-07每秒钟码元速率为20000码元/秒,因为码元有16个等级,那么可以4位用一个码元来表示,所以最高可达20000x4=80000(b/s)2-08本题只需将数据代入相应公式即可,但计算较繁根据香农公式最大速率C=Wlog2(1+S/N) 即64K=3Klog2(1+S/N)从上式解出S/N的值即可,但解出的是信噪比的功率值还要转为分贝值64K=3Klog2(1+S/N) ->21.33=log2(1+S/N) 据此公式表明2的21.33次方等于1+S/N 2的21.33次方为2636148 (小数点后省去) 即1+S/N=2636148 S/N=2636148化为分贝的公式为 db=10lg(S/N) 即 10lg(2636148)而10的6.42次方为2630267 所以答案为 10x6.42即64.2分贝。

2-09根据题意35k=3.1Klog2(1+S/N) 11.3=log2(1+S/N)2的11.3次方为2521 , S/N=2520现在要增加速率60% 也就是3.1Klog2(1+S/N)的值要增加60%;设原来的S/N 为2520,速率增加60% 的S/N为X 即产生以下算式 1:1.6=3.1Klog2(1+2520):3.1Klog2(1+X) 即3.1Klog2(1+X)=1.6 x 3.1Klog2(1+2520) 即 log2(1+X)=1.6log2(1+2520) log2(1+X)=1.6 x 11.3Log2(1+X)=18.08 即2的18.08 次方为1+X 1+X=277090 X=277089277089约为2520的100倍速率从35Kb/s增加到 56Kb/s如果信噪比再增加10倍即2770890 代入公式最大速率为:3.1Klog2(1+2770890) 3.1K x 21.4=66.34K (b/s)66.34为56的1.185倍,所以信噪比再增加10倍,速率增加约18.5%2-11根据题意,传输中允许有20db衰减还可以正常通信,那么每公里衰减0.7db那么工作距离可达20/0.7=28.57公里,若要增加100公里,即100=20/x x=0.2db2-12光波的频带宽度计算是速率/波段低端-速率/波段高端(nm=1/1000um)(1)频带低端 2 x 1017 /1200 =1.666 x 1014频带高端 2 x 1017 /1400 =1.428 x 10141.666 x 1014 -1.428 x 1014 =.238 x 1014即 23.8 THZ(2)频带低端=2 x 1017 /1400 =1.4286 x 1014频带高端=2 x 1017 /1600 =1.25 x 10141.4286 x 1014 -1.25 x 1014 =.1786 x 1014即 17.86 THZ (T为10 的12次方)2-16共有4个站进行码分多址通信。

计算机网络原理第2章练习题答案

计算机网络原理第2章练习题答案

计算机网络原理第2章练习题答案本文档旨在回答《计算机网络原理》第2章练题答案,并提供相关解释说明。

1. 什么是时延、传播时延、处理时延、排队时延?- 时延:数据从发送方到接收方所需的时间,通常用毫秒(ms)表示。

- 传播时延:数据在传输介质(如光纤)中传播的时间,取决于数据传输的距离和介质的传播速度。

- 处理时延:数据在网络设备中进行处理所需的时间,取决于设备的性能和工作负载。

- 排队时延:数据在网络设备中等待处理所需的时间,取决于网络设备的负载情况。

2. 什么是网络的吞吐量和带宽?- 吞吐量:单位时间内通过网络的数据量,通常用Mbps或Gbps表示。

- 带宽:指网络支持的最大吞吐量,通常用Mbps或Gbps表示。

3. 比较电路交换与分组交换的优缺点。

- 电路交换:先建立一个物理连接,保证通信质量,但资源利用率低,无法灵活应对流量变化,通信质量随着链路长度增加而下降。

- 分组交换:数据被划分为多个数据包进行传输,灵活高效,适用范围广,但传输过程容易出现延迟、丢包等问题。

4. OSI参考模型的七层分别是什么?- 物理层:利用传输介质传输比特流。

- 数据链路层:为物理层提供数据传输服务,实现数据的可靠传输。

- 网络层:为数据包选择合适的路由,并进行路由控制。

- 传输层:提供端到端的可靠数据传输服务。

- 会话层:管理网络中的会话。

- 表示层:负责对数据进行编码和转换,保证通信双方的解释标准。

- 应用层:为应用程序提供服务。

5. 什么是TCP/IP协议族?以上是《计算机网络原理》第2章练习题的相关答案。

祝大家学习愉快!。

  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

一、选择题
题目1
()是面向连接的协议,用三次握手和滑动窗口机制来保证传输的可靠性和进行流量控制.
选择一项:
A。

TCP
B. FTP
C. UDP
D。

IP
TCP协议(Transport Control Protocol),即传输控制协议,是面向连接的协议,用三次握手和滑动窗口机制来保证传输的可靠性和进行流量控制。

相关知识 IP 协议 UDP协议 FTP协议
IP协议(Internet Protocol),即互联网协议,是支持网间互连的数据报协议,它与TCP协议一起构成了TCP/IP协议族的核心。

IP协议规定网际层数据分组的格式,用来在内部网中交换数据,并负责路由选择。

UDP协议(User Datagram Protocol),即用户数据报协议,是面向无连接的、不可靠的传输层协议。

UDP为应用层提供一种非常简单的服务。

它只是把数据报从一台主机发送到另一台主机,但并不保证该数据报能到达另一端。

FTP协议(File Transfer Protocol),即文件传输协议,属于应用层协议.
正确答案是:TCP
题目2
()协议规定网际层数据分组的格式.
选择一项:
A. TCP
B. IP
C. UDP
D. FTP
IP协议(解释同选择题1)
相关知识 TCP协议 UDP协议 FTP协议
TCP协议(解释同选择题1)
UDP协议(User Datagram Protocol),即用户数据报协议,是面向无连接的、不可靠的传输层协议。

UDP为应用层提供一种非常简单的服务。

它只是把数据报从一台主机发送到另一台主机,但并不保证该数据报能到达另一端.
FTP协议(File Transfer Protocol),即文件传输协议,属于应用层协议.
正确答案是:IP
题目3
一个功能完备的计算机网络需要指定一套复杂的协议集。

对于复杂的计算机网络协议来说,最好的组织方式是()。

选择一项:
A. 混合结构模型
B. 层次结构模型
C. 连续地址编码模型
D。

分布式进程通信模型
层次结构模型,为了降低系统的设计和实现的难度,把计算机网络要实现的功能进行结构化和模块化的设计,将整体功能分为几个相对独立的子功能层次,各个功能层次间进行有机的连接,下层为其上一层提供必要的功能服务.这种层次结构的设计称为网络层次结构模型。

每一个功能层次中,通信双方共同遵守该层次的约定和规程,这些约定和规程称为同层协议。

正确答案是:层次结构模型
题目4
在ISO/OSI参考模型中,网络层的主要功能是( )。

选择一项:
A. 组织两个会话进程之间的通信,并管理数据的交换
B。

数据格式变换、数据加密与解密、数据压缩与恢复
C。

确定进程之间通信的性质,以满足用户的需要
D. 路由选择、拥塞控制与网络互连
OSI参考模型采用分层的结构化技术,将整个网络的功能划分为七个层次,从低到高为:物理层、数据链路层、网络层、传输层、会话层、表示层、应用层。

网络层的主要功能是路由选择、拥塞控制与网络互连,是OSI参考模型中最复杂的一层.
正确答案是:路由选择、拥塞控制与网络互连
题目5
用于将MAC地址转换成IP地址的协议一般为()。

选择一项:
A。

ARP
B。

RARP
C。

IP
D. TCP
RARP 协议(Reverse Address Resolution Protocol),即反向地址解析协议,用来将硬件地址(物理地址或MAC地址)解析成逻辑地址(IP地址).
相关知识ARP协议 TCP协议 IP协议
ARP协议(Address Resolution Protocol),即地址解析协议,用来将逻辑地址(IP 地址)解析成硬件地址(物理地址或MAC地址),以保证通信的顺利进行。

IP协议(Internet Protocol),即互联网协议,是支持网间互连的数据报协议,它与TCP协议一起构成了TCP/IP协议族的核心。

IP协议规定网际层数据分组的格式,用来在内部网中交换数据,并负责路由选择。

正确答案是:RARP
题目6
( )是计算机网络层次模型中每一层中用于实现该层功能的活动元素,包括该层上实际存在的所有硬件与软件,如终端、电子邮件系统、应用程序、进程等。

选择一项:
A。

数据报
B。

路由
C. 连接
D。

实体
实体(Entity)是计算机网络层次模型中每一层中用于实现该层功能的活动元素,包括该层上实际存在的所有硬件与软件,如终端、电子邮件系统、应用程序、进程等。

为此,可
以用实体这一较为抽象的名词表示任何可发送或接收信息的硬件或软件进程。

在许多情况下,实体是一个特定的软件模块。

正确答案是:实体
题目7
网络协议由语法、()和语序三大要素构成。

选择一项:
A。

数据报
B。

实体
C。

语义
D。

路由
网络协议的三要素:语法、语义和语序。

(1)语法包括数据与控制信息的结构格式、信号电平等;
(2)语义指协议语法成分的含义,包括协调用的控制信息和差错管理的控制信息;
(3)语序包括时序控制和速度匹配关系。

正确答案是:语义
题目8
()是OSI 参考模型的最低层,它直接面向原始比特流的传输。

选择一项:
A. 表示层
B. 物理层
C。

数据链路层
D. 网络层
反馈
你的回答正确
正确答案是:物理层
题目9
()负责建立相邻节点之间的数据链路,提供节点间可靠的数据传输.
选择一项:
A。

表示层
B。

物理层
C. 网络层
D. 数据链路层
数据链路层
负责建立相邻节点之间的数据链路,提供节点间可靠的数据传输,数据链路层通过加强物理层传输原始比特流的功能,使之对网络层表现为一条无错线路.
相关知识表示层网络层物理层
表示层表示层的功能是使在不同系统间传输的不同信息能够相互理解对方数据的
含义,以实现不同计算机系统间的信息交换。

网络层主要功能是路由选择、拥塞控制与网络互连,是OSI参考模型中最复杂的一层。

物理层是OSI 参考模型的最低层,它直接面向原始比特流的传输。

正确答案是:数据链路层
题目10
( )是OSI 参考模型中最靠近用户的一层,负责为用户的应用程序提供网络服务.
选择一项:
A。

数据链路层
B。

应用层
C. 网络层
D。

物理层
应用层,是OSI 参考模型中最靠近用户的一层,负责为用户的应用程序提供网络服务。

与OSI 参考模型其他层不同的是,它不为任何其他OSI 层提供服务,而只是为OSI 模型以外的应用程序提供服务,如电子表格程序和文字处理程序。

相关知识网络层数据链路层物理层
网络层主要功能是路由选择、拥塞控制与网络互连,是OSI参考模型中最复杂的一层。

数据链路层负责建立相邻节点之间的数据链路,提供节点间可靠的数据传输,数据链路层通过加强物理层传输原始比特流的功能,使之对网络层表现为一条无错线路。

物理层是OSI 参考模型的最低层,它直接面向原始比特流的传输。

正确答案是:应用层
题目11
()协议,它源于ARPANET网,现在已经成为Internet互联网的通信协议。

选择一项:
A. PPP
B。

TCP/IP
C。

DNS
D. FTP
TCP/IP(Transmission Control Protocol/Internet Protocol)即传输控制协议/网际协议,它源于ARPANET网,现在已经成为Internet互联网的通信协议。

TCP/IP(传输控制协议/网际协议)是一组网络通信协议。

它规范了网络上的所有通信设备,尤其是一台主机与另一台主机之间的数据往来格式以及传送方式.
相关知识PPP协议DNS协议 FTP协议
PPP协议点到点数据链路层协议(Point-to-Point Protocol,PPP)为基于点到点连接的多协议自寻址数据包的传输提供了一个标准方法.协议中提供了一整套方案来解决链路建立、维护、拆除、上层协议协商、认证等问题。

P137
DNS协议见教材P159
FTP协议(同选择题1)
正确答案是:TCP/IP
题目12
TCP/IP 协议简化了层次设备,由下而上分别为网络接口层、网络层、( )、应用层。

选择一项:
A。

会话层
B。

传输层
C。

数据链路层
D。

表示层
TCP/IP模型图
结合图3-1,把TCP/IP图拿出来,适当修改,体现本题考核内容。

正确答案是:传输层
二、填空题
题目13。

相关文档
最新文档