题目内容

当DHCP客户端注意到它的租用期到了__1__ 以上时,就要更新该租用期。这时它发送一个__2__ 信息包给他所获得原始信息的服务器。

查看答案
更多问题

当租用期到达期满时间的近__1__ 时,客户端如果在前一次请求中没能及时更新租用期,他会再次试图更新租用期。

若opa=5,opb=8,下列程序段执行后,result=。parametersize=8,longsize=16;reg[size:1]opa,opb;reg[longsize:1]result;begin:multreg[longsize:1]shift_opa,shift_opb;shift_opa=opa;shift_opb=opb;result=0;repeat(size)beginif(shift_opb[1])result=result+shift_opa;shift_opa=shift_opa<<1;shift_opb=shift_opb>>1;endend

若rega=8'b10111010,则下列程序执行结束后,count=________。begin:count1sreg[7:0]tempreg;count=0;tempreg=rega;while(tempreg)beginif(tempreg[0])count=count+1;tempreg=tempreg>>1;endend

若opa=10,opb=20,下列程序段执行后,result=__________。parametersize=8,longsize=16;reg[size:1]opa,opb;reg[longsize:1]result;begin:multintegerbindex;result=0;for(bindex=1;bindex<=size;bindex=bindex+1)if(opb[bindex])result=result+(opa<<(bindex-1));end

答案查题题库