Parameterization

what is advantage of parameterized sequence and driver class.

is it for to drive one type of sequence item through it we do or some other reason we do?

In reply to suman_vip:

The question is what you mean with ‘parameterized’.
Do you mean
class my_driver extends uvm_driver #(my_item);?
If so, the parameter means this driver can process seq_items of type my_item.
In case of the sequence it means the sequence will generate seq_items of type my_item.

In reply to chr_sue:

thanks…