Logo

System-verilog Questions Set 12:

Quiz Mode

Find the output of the following Verilog code:

1
2
3
4

Solution:

Which of the following is not a Verilog Primitive?

1
2
3
4

Solution:

Who designed and developed Verilog?

1
2
3
4

Solution:

Which of the following is not a valid identifier?

1
2
3
4
5

Solution:

What type of assignment does the code snippet wire out=a & b; describe?

1
2
3
4

Solution:

Which of the following statements about constructors in SystemVerilog is not true?

1
2
3
4

Solution:

Which design methodology involves breaking down the top-level block or design into sub-blocks and further into leaf cells?

1
2
3
4

Solution:

Given two AND gates a1 and a2, the output 'p' of the first AND gate (a1) is given as input to the second AND gate (a2).

The inputs to a1 are a and b, and the inputs to a2 are p and c. The output 'out' of a2 is available after how many time units?

1
2
3
4
5

Solution:

Match the format specifiers in List 1 with the corresponding display statements in List 2.


List 1:

  1. %m
  2. %v
  3. %o
  4. %f

List 2:

  1. Displays hierarchical name.
  2. Displays strength.
  3. Displays octal value.
  4. Displays real number in decimal format.

1
2
3
4

Solution:

Choose the correct Module Declaration syntax used in Verilog Programming.

1
2
3
4

Solution: