• 2021-04-14 问题

    【单选题】13.TCP通过()方式建立TCP连接? A. 三次握手 B. 滑动窗口 C. TCP延迟确认 D. 发送一次SYN请求

    【单选题】13.TCP通过()方式建立TCP连接? A. 三次握手 B. 滑动窗口 C. TCP延迟确认 D. 发送一次SYN请求

  • 2022-05-31 问题

    TCP可以为其用户提供 【13】 、面向连接的、全双工的数据流传输服务。

    TCP可以为其用户提供 【13】 、面向连接的、全双工的数据流传输服务。

  • 2022-06-09 问题

    在TCP协议中,用于进行流量控制的字段为(13)() A: 端口号 B: 序列号 C: 应答编号 D: 窗口

    在TCP协议中,用于进行流量控制的字段为(13)() A: 端口号 B: 序列号 C: 应答编号 D: 窗口

  • 2022-10-24 问题

    下图是一个TCP连接的拥塞窗口变化过程,MSS为1KB,请回答如下问题:在发送第( )个TCP段时发生超时。[img=752x452]1803ca876fad7b4.png[/img] A: 5 B: 12 C: 13 D: 18

    下图是一个TCP连接的拥塞窗口变化过程,MSS为1KB,请回答如下问题:在发送第( )个TCP段时发生超时。[img=752x452]1803ca876fad7b4.png[/img] A: 5 B: 12 C: 13 D: 18

  • 2021-04-14 问题

    【多选题】13 13 13 13 A. 13 13 B. 13 13 C. 13 13 D. 13 13

    【多选题】13 13 13 13 A. 13 13 B. 13 13 C. 13 13 D. 13 13

  • 2022-05-26 问题

    TCP协议通过建立连接为用户提供可靠传输,与数据链路层的连接建立不同, TCP要经过 (11) 才能确定一个连接,这是因为 (12) 。TCP采用的差错控制也是超时重发技术,超时时间的设置采用 (13) 策略,以便适应互联网的特性。超时时间设置的根据是 (14) 。TCP的拥塞控制采用慢启动、加速递减和拥塞避免策略。慢启动是指 (15) 。 13() A: 固定时间 B: 协商时间 C: 动态调整 D: 定期变化

    TCP协议通过建立连接为用户提供可靠传输,与数据链路层的连接建立不同, TCP要经过 (11) 才能确定一个连接,这是因为 (12) 。TCP采用的差错控制也是超时重发技术,超时时间的设置采用 (13) 策略,以便适应互联网的特性。超时时间设置的根据是 (14) 。TCP的拥塞控制采用慢启动、加速递减和拥塞避免策略。慢启动是指 (15) 。 13() A: 固定时间 B: 协商时间 C: 动态调整 D: 定期变化

  • 2021-04-14 问题

    【单选题】13 13 13 13 A. 13 B. 13 C. 13 D. 13

    【单选题】13 13 13 13 A. 13 B. 13 C. 13 D. 13

  • 2021-04-14 问题

    在HTML中 标记的作用是 A. 在窗口中划一条水平线 B. 换行 C. 设置链接 D. 插入表格 正确答案:D 学生答案:B 错误 得分:0.0 分 取消 确定 
 Zepto(function($){
 
 //$("img:not(.ans-formula-moudle,.goTop)").on('click',function(){
 $("img:not(.ans-formula-moudle)").not('.goTop').on('click',function(){
 var url = $(this).attr("src");
 jsBridge.postNotification("CLIENT_PREVIEW_IMAGES", {
 imageUrls : [{
 imageUrl : url,
 getOriginSize : 1
 }],
 showIndex : 0
 });
 });
 
 
 $('.folding').each(function(index){
 var folding = $(this);
 folding.tap(function(){
 var zlo_opened = folding.find("a");
 if(zlo_opened.hasClass("zlo_opened")){
 folding.next().hide();
 zlo_opened.removeClass("zlo_opened");
 }else{
 folding.next().show();
 zlo_opened.addClass("zlo_opened");
 }
 });
 });
 
 });
 
 $('.folding2').each(function(index){
 var folding = $(this);
 folding.tap(function(){
 var zlo_opened = folding.find("a");
 if(zlo_opened.hasClass("zlo_opened")){
 folding.next().fadeOut();
 zlo_opened.removeClass("zlo_opened");
 $(folding.next()).data("loaded",true);
 }else{
 folding.next().fadeIn();
 zlo_opened.addClass("zlo_opened");
 if(!$(folding.next()).data("loaded")){
 voteStatistic(folding.next(),zlo_opened.attr("data"));
 }
 }
 });
 });
 
 function _jsBridgeReady() {
 var icon = ServerHost.moocDomain + "/images/work/phone/reWork.png";
 jsBridge.postNotification('CLIENT_CUSTOM_MENU', {
 show : '1',
 icon : icon,
 menu : '',
 option : "rework()",
 index : '0',
 width : '65',
 height : '18'
 });
 
 jsBridge.bind('CLIENT_REFRESH_EVENT', function(object){
 window.location.reload();
 });
 }
 
 function rework() {
 var answerId = $("#examAnswerId").val();
 var relationId = $("#examRelationId").val();
 var courseId = $("#courseId").val();
 var classId = $("#classId").val();
 
 $(".cx_alert-txt").html("打回后学生需要重新提交考试!");
 $("#okBtn").html("打回");
 $(".cx_alert").css("display", "block");
 $(".cx_alert-box").css("display", "block");
 $("#okBtn").unbind();
 $("#cancelBtn").unbind();
 $("#okBtn").on("click", function() {
 $(".cx_alert").css("display", "none");
 $(".cx_alert-box").css("display", "none");
 var url = "/exam/phone/reTest?classId=" + classId + "&answerId=" + answerId + "&relationId=" + relationId + "&courseId=" + courseId;
 $.ajax({
 url : url,
 type : 'get',
 dataType : 'json',
 success : function(data) {
 openWindowHintClient(1, data.msg, function() {
 jsBridge.postNotification("CLIENT_REFRESH_STATUS", {
 "status" : 1
 });
 jsBridge.postNotification('CLIENT_EXIT_LEVEL', {
 message : ''
 });
 }, 1000);
 }
 });
 });
 $("#cancelBtn").on("click", function() {
 $(".cx_alert").css("display", "none");
 $(".cx_alert-box").css("display", "none");
 });
 }
 
/images/phone/goTop.png

    在HTML中 标记的作用是 A. 在窗口中划一条水平线 B. 换行 C. 设置链接 D. 插入表格 正确答案:D 学生答案:B 错误 得分:0.0 分 取消 确定 
 Zepto(function($){
 
 //$("img:not(.ans-formula-moudle,.goTop)").on('click',function(){
 $("img:not(.ans-formula-moudle)").not('.goTop').on('click',function(){
 var url = $(this).attr("src");
 jsBridge.postNotification("CLIENT_PREVIEW_IMAGES", {
 imageUrls : [{
 imageUrl : url,
 getOriginSize : 1
 }],
 showIndex : 0
 });
 });
 
 
 $('.folding').each(function(index){
 var folding = $(this);
 folding.tap(function(){
 var zlo_opened = folding.find("a");
 if(zlo_opened.hasClass("zlo_opened")){
 folding.next().hide();
 zlo_opened.removeClass("zlo_opened");
 }else{
 folding.next().show();
 zlo_opened.addClass("zlo_opened");
 }
 });
 });
 
 });
 
 $('.folding2').each(function(index){
 var folding = $(this);
 folding.tap(function(){
 var zlo_opened = folding.find("a");
 if(zlo_opened.hasClass("zlo_opened")){
 folding.next().fadeOut();
 zlo_opened.removeClass("zlo_opened");
 $(folding.next()).data("loaded",true);
 }else{
 folding.next().fadeIn();
 zlo_opened.addClass("zlo_opened");
 if(!$(folding.next()).data("loaded")){
 voteStatistic(folding.next(),zlo_opened.attr("data"));
 }
 }
 });
 });
 
 function _jsBridgeReady() {
 var icon = ServerHost.moocDomain + "/images/work/phone/reWork.png";
 jsBridge.postNotification('CLIENT_CUSTOM_MENU', {
 show : '1',
 icon : icon,
 menu : '',
 option : "rework()",
 index : '0',
 width : '65',
 height : '18'
 });
 
 jsBridge.bind('CLIENT_REFRESH_EVENT', function(object){
 window.location.reload();
 });
 }
 
 function rework() {
 var answerId = $("#examAnswerId").val();
 var relationId = $("#examRelationId").val();
 var courseId = $("#courseId").val();
 var classId = $("#classId").val();
 
 $(".cx_alert-txt").html("打回后学生需要重新提交考试!");
 $("#okBtn").html("打回");
 $(".cx_alert").css("display", "block");
 $(".cx_alert-box").css("display", "block");
 $("#okBtn").unbind();
 $("#cancelBtn").unbind();
 $("#okBtn").on("click", function() {
 $(".cx_alert").css("display", "none");
 $(".cx_alert-box").css("display", "none");
 var url = "/exam/phone/reTest?classId=" + classId + "&answerId=" + answerId + "&relationId=" + relationId + "&courseId=" + courseId;
 $.ajax({
 url : url,
 type : 'get',
 dataType : 'json',
 success : function(data) {
 openWindowHintClient(1, data.msg, function() {
 jsBridge.postNotification("CLIENT_REFRESH_STATUS", {
 "status" : 1
 });
 jsBridge.postNotification('CLIENT_EXIT_LEVEL', {
 message : ''
 });
 }, 1000);
 }
 });
 });
 $("#cancelBtn").on("click", function() {
 $(".cx_alert").css("display", "none");
 $(".cx_alert-box").css("display", "none");
 });
 }
 
/images/phone/goTop.png

  • 2022-10-24 问题

    已知TCP使用慢开始和拥塞避免算法,设ssthresh的初始值为8(单位为报文段),假设TCP发送进行到第5轮时,依然没有发生网络超时,则其拥塞窗口为( )。 A: 5 B: 8 C: 9 D: 13

    已知TCP使用慢开始和拥塞避免算法,设ssthresh的初始值为8(单位为报文段),假设TCP发送进行到第5轮时,依然没有发生网络超时,则其拥塞窗口为( )。 A: 5 B: 8 C: 9 D: 13

  • 2022-06-12 问题

    以下_______字段不属于TCP选项。 A: TCP Window Scaling B: TCP Selective Acknowledgement C: TCP TimeStamps D: TCP Flag

    以下_______字段不属于TCP选项。 A: TCP Window Scaling B: TCP Selective Acknowledgement C: TCP TimeStamps D: TCP Flag

  • 1 2 3 4 5 6 7 8 9 10