Logo

System-verilog Questions Set 4:

Quiz Mode

Which of the following are the 'equality' operators in Verilog?

1
2
3
4
5

Solution:

In the code given above, the task is used to convert the units of _________.

1
2
3
4

Solution:

Which type of ROM can be easily erased even when positioned inside the computer?

1
2
3
4

Solution:

Which of the following cannot be used while implementing a program using tasks and functions?

1
2
3
4

Solution:

The Verilog code given below describes the function of a D-Latch using behavioral description.

1
2
3
4

Solution:

 Which of the following variable declaration is correct in Verilog? 

Given that the variable is a memory “Mem” of size 64x16

1
2
3
4

Solution:

Which of the following statements about blocking assignment statements is false?

1
2
3
4

Solution:

What is the difference between 'wire' and 'reg' data types in Verilog?

1
2
3
4

Solution:

Which of the following statement(s) is/are true about parameters in Verilog?

1
2
3
4
5

Solution:

What is the order of execution of the following Verilog code?

initial begin

  x = 0;

 #0 y = 0;

 #0 z = 1;

end

1
2
3
4

Solution: