Choose the correct option based on this code segment:.
"abracadabra".chars().distinct().peek(ch -> System.out .printf("%c ", ch)).sorted();
d.
a stream pipeline is lazily evaluated.
since there is no terminal operation provided (such as count, forEach, reduce, or collect), this pipeline is not evaluated and hence the peek does not print any output to the console.