【简答题】给出下列程序段的输出结果 : if( 6 < 5 ) printf(" yes "); else printf(" no ");
【简答题】给出下列程序段的输出结果x=0for i=1 to 10 if (i mod 2 = 1) then x=x+1 else x=x-1 end if exit fornext iprint x
【简答题】给出下列程序段的输出结果: if( 6 ! = 5 ) printf(" yes "); else printf(" no ");
【简答题】给出下列程序段的输出结果: int temp = 10; if( temp > 50 ) printf("hot"); else if( temp > 20) printf("comfortable"); else printf("cold");
【单选题】以下关于TCP协议工作原理与过程的描述中,错误的是( )。
B.
当TCP传输连接建立之后,客户与服务器应用进程进行全双工的字节流传输;
【简答题】给出下列程序段的输出结果: int temp = 120; if( temp > 50 ) printf("hot"); else if( temp >100 ) printf("really hot"); else if( temp > 20) printf("comfortable"); else printf("cold");
【简答题】给出下列程序段的输出结果: int i, j ; printf("%d", (i=2, j=3, i%j) );
【多选题】以下关于TCP协议工作原理与过程的描述中,正确的是()。
B.
当TCP传输连接建立之后,客户与服务器应用进程进行全双工的字节流传输
【单选题】下列程序段的输出结果 Clear store 10 to a store 20 to B. set udfparms to reference do swap with a,(b) a,b procedure swap parameters x1,x2 temp=X1 x1=x2 x2=temp endproc
【简答题】给出下列程序段的输出结果: int i = 2, j = 8; j = ( i++ ) + ( j = 3 ); printf(" i=%d, j=%d", i, j );