A. Configure netsh settings in case of backup
B. Restart the server
C. Notify users
D. Uninstall TCP/IP
第1题:
下列关于Windows2000Server的描述,哪个是正确的?()
A.Windows2000Server的内部采用64位体系结构
B.Windows2000Server以“域”为单位集中管理网络资源
C.Windows2000Server只支持TCP/IP协议
D.Windows2000Server没有融入对UNIX的支持
第2题:
TCP/IP是TCP协议和IP协议。()
第3题:
在TCP/IP的应用层协议使用的是客户(client)-服务器(server)方式。
第4题:
关于TCP/IP协议的描述,哪些是正确的,()
A. TCP是传输控制协议
B.TCP/IP协议中只有TCP协议和IP协议
C.IP是网络互联协议
D.TCP/IP协议中除了TCP协议和IP协议外,还包括许多其他的协议
第5题:
TCP/IP体系结构中只有TCP协议和IP协议,故将其命名为TCP/IP。
第6题:
2、运行程序,分析while循环的循环条件、循环次数和break语句的作用。 from turtle import * color('red','yellow') begin_fill() while True: forward(200) left(170) if abs(pos())<1: break end_fill() done()