Requesting clarity on intermediate signals in the sequences

Could anyone explain the difference between the sequences mentioned below ? What does the 1 and 0 exactly mean here? How can I use this concept in writing sequences?

seq1: a ##1 1 ##1 b

seq2: a ##1 0 ##1 b

A SystemVerilog sequence is a temporal ordering of boolean expressions where each expression must be true (non-zero) at a particular clock cycle. The constant expression 1 is always true, while 0 is always false.

seq1 is the same as a ##2 b. Using the constant 1 makes sense when you want to connect a statement in the middle of a sequence a ##1 (1, lval = addr) ##1 b == lval

Having a Boolean expression that is always false doesn’t make much sense. I can’t think of any practical use for it, but perhaps there’s something out there.