Which of the following are considered link state protocols?() A. RIPv2 and EIGRPB. EGP and IGPC. OSPF and IS-ISD. RIP and BGP
Which of the following are considered link state protocols?()
A. RIPv2 and EIGRP
B. EGP and IGP
C. OSPF and IS-IS
D. RIP and BGP
相关考题:
Tom _________ himself ________ to have got the medal. A. considered⋯luckilyB. proved⋯luckilyC. considered⋯luckyD. questioned⋯luckily
You’re going to have a quiz ( )by another two in the ( )month. A. followed,followedB. followed,followingC. following,followedD. following,following
Many things __________impossible in the past are common today.A.to considerB.being consideredC.consideringD.considered
定义状态机当前状态为state ,次态为next _state; 输入a,输出b, 则下列为Mealy状态机的写法是:A.always@(posedge clk) case (state ) 0:next_state<=1; 1:next_state<=x;#B.always@(posedge clk) case (state ) 0: if(a==0)next_state<=1; else next_state<=x; 1:next_state<=x;#C.always@(posedge clk) case (state ) 0: if(state==0)next_state<=1; else next_state<=x; 1:next_state<=x;#D.以上都不对
下列Moore型状态机采用Verilog语言主控时序部分正确的是:A.always@(posedge clk or negedge reset) begin if(!reset) current_state<=s0; else current_state<=next_state; endB.always@(posedge clk ) begin if(!reset) current_state<=s0; else current_state<=next_state; endC.always@(posedge clk t) if(reset) current_state<=s0; else current_state<=next_state;D.always@(posedge clk or negedge reset) if(reset) current_state<=s0; else current_state<=next_state;
定义状态机当前状态为state ,次态为next _state; 输入a,输出b, 则下列为Mealy状态机的写法是:A.always@(posedge clk) case (state ) 0:next_state<=1; 1:next_state<=x;#B.always@(posedge clk) case (state ) 0: if(a==0)next_state<=1; else next_state<=x; 1:next_state<=x;#C.always@(posedge clk) case (state ) 0: if(state==0)next_state<=1; else next_state<=x; 1:next_state<=x;#D.以上都正确