Logo

Vhdl Questions Set 13:

Quiz Mode

RECORD in VHDL is similar to ________ in C.

1
2
3
4

Solution:

Which of the following can be the name of an entity?

1
2
3
4

Solution:

What is a collection of Packages in VHDL?

1
2
3
4

Solution:

Thin gate oxide in a CMOS process is preferably grown using dry oxidation.

1
2
3
4

Solution:

The conditional assignment statement is a _________ assignment.

1
2
3
4

Solution:

Which of the following is the correct way to declare a constant in VHDL?

1
2
3
4

Solution:

What is the primary use of the FOR generation construct?

1
2
3
4

Solution:

What is the need for VHDL?

1
2
3
4

Solution:

Which of the following is the correct syntax for component instantiation in VHDL?

1
2
3
4

Solution:

In the VHDL code given below, what will be the values of y and z?

VARIABLE x : BIT_VECTOR(3 DOWNTO 0) := 1001;
VARIABLE y : BIT_VECTOR(3 DOWNTO 0) := 0000;
VARIABLE z : BIT_VECTOR(3 DOWNTO 0) := 0000;
...
y := x ROR 2;
z := y ROL 2;
...

1
2
3
4

Solution: