A.is
B.are
C.was
D.be
第1题:
以下代码描述的是Moore型状态机: always @(in or state) case (state) zero: begin out = 0; if (in) next_state = one; else next_state = zero; end …………
第2题:
创建students对象,_______语句可以选出第二个同学的身高。 students数据如下: age height weight 1 19 170 68 2 20 165 65 3 18 175 65
A.students[1,'height']
B.students.loc[2,'height']
C.students.iloc[1, 1]
D.students['height'][3]
第3题:
下列描述中采用时钟clk正边沿触发且rst异步低电平复位的代码描述是
A.always @ (posedge clk, negedge rst) if (rst)
B.always @ (posedge clk, rst) if (!rst)
C.always @ (posedge clk, negedge rst) if (!rst)
D.always @ (negedge clk, posedge rst) if (rst)
第4题:
声明并创建一个学生类Student的对象s,下列语法格式正确的是()。
A.Student s = Student();
B.Student s;
C.Student s = new Student();
D.Student s = new ();
第5题:
3、下列哪一个表述是正确:
A.always@(posedge CLK or RST)
B.always@(posedge CLK or negedge RST or A)
C.always@(posedge CLK or D or Q)
D.always@(posedge CLK or negedge RST)
第6题:
创建students对象,_______语句可以选出第二个同学的身高。 students数据如下: age height weight 1 19 170 68 2 20 165 65 3 18 175 65
A.students.loc[2,'height']
B.students.iloc[1, 1]
C.students[1,'height']
D.students['height'][3]