Logo

System-verilog Questions Set 18:

Quiz Mode

Which of the following operators is binary and also unary?

1
2
3
4

Solution:

Which of the following is the data storage unit in Verilog programming?

1
2
3
4

Solution:

Which of the following loop types does not exist in Verilog HDL?

1
2
3
4

Solution:

What is the stimulus block in Verilog commonly known as?

1
2
3
4
5

Solution:

Which of the following is the correct syntax for defining a Sequential Block in Verilog?

1
2
3
4

Solution:

The contents of the queue after executing the following code is:

integer queue[$] = {0,1,2};

initial begin

queue = {7,queue};

queue.insert(2,6);

end

1
2
3
4

Solution:

Given that $display is the main system task for displaying the values of variables or strings or expressions, the format specifier %s or %S displays:

1
2
3
4

Solution:

The size and base format of the variable "a" is:

1
2
3
4

Solution:

System Verilog is primarily a hardware description language and hardware verification language.

1
2
3
4

Solution:

Which of the following statements about immediate and concurrent assertions is true?

1
2
3
4
5

Solution: