Logo

System-verilog Questions Set 6:

Quiz Mode

If X = 8'b10101101.

Find ^X.


Solution:

What are the results of -7 % 2 and 7 % -2 in Verilog?

1
2
3
4

Solution:

assign out = a ? (b ? i3 : i2) : (b ? i1 : i0)

What will be the value of "out" when a = 0 and b = 1?

1
2
3
4

Solution:

Which type of shift operator does the following represent?
"<<<"

1
2
3
4

Solution:

___ are used to connect between hardware entities like logic gates and hence do not store any value on their own.

1
2
3
4

Solution:

Which of the following is the correct way to model 1KB memory in Verilog?

1
2
3
4

Solution:

Which of the following variable declarations is correct in Verilog?

Given that the variable is a 16-bit net called "Sum"

1
2
3
4

Solution:

Why is coverage important in constrained random verification?

1
2
3
4

Solution:

Which of the following statements about static methods is not true?

1
2
3
4

Solution:

Which of the following statements about Verilog's always_comb and always blocks is not true?

1
2
3
4

Solution: