A. show bgp group
B. show bgp status
C. show bgp summary
D. show bgp neighbor
E. show protocols bgp
第1题:
Despite the wonderful acting and well-developed plot the _________ movie could not hold our attention.
A) three-hours B) three-hour
C) three-hours’ D) three-hour’s
选B
用破折号连接的作形容词不用复数.
第2题:
( ) – Is Miss White __________ English teacher, Maria?
– No, she teaches __________ geography.
A.your;my
B.you;mine
C.you;us
D.your;us
第3题:
下列Moore型状态机采用Verilog语言主控时序部分正确的是:
A.always@(posedge clk or negedge reset) begin if(!reset) current_state<=s0; else current_state<=next_state; end
B.always@(posedge clk ) begin if(!reset) current_state<=s0; else current_state<=next_state; end
C.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;
第4题:
A.Using’diagmenu’command,setfcs1toDefined.
B.Using’oem_setup_env’and’rmdev-R’commands,setfcs1adapterto’Defined’state.
C.Using’diagmenu’command,setthefcs1statetoDefined
D.Using’oem_setup_env’and’rmdev-dl’commands,setthestateoffcs1toDefined
第5题:
下列关于5状态的状态机说明部分的程序是否正确 parameter [2:0] s0=0, s1=1,s2=2,s3=3,s4=4; reg [2:0] current_state, next_state;
第6题:
下列Moore型状态机采用Verilog语言说明部分正确的是:
A.parameter [2:0] s0=0, s1=1,s2=2,s3=3,s4=4; reg [2:0] current_state, next_state;
B.parameter [1:0] s0=0, s1=1,s2=2,s3=3,s4=4; reg [1:0] current_state, next_state;
C.TYPE FSM_ST IS (s0, s1,s2,s3,s4); SIGNAL current_state, next_state: FSM_ST;
D.typedef enum {s0, s1,s2,s3,s4} type_user; type_user current_state, next_state