Starting a Sequence

In reply to yasaswi93:

You cannot always run a sequence without setting the sequencer. If a sequence sq_a is instantiated inside another sequencer sq_b, only then you can call sq_a.start(); inside body method of sq_b. sq_a will now run on the same sequencer on which sq_b is running.

experts of this forum please correct me if I am wrong.