Doubt on conditional break point question

Hi expert
Kindly help on given screenshot questions and explain how it’s correct as I know answer is 4 but how

@aleem.rpa07

simple

consition is count mod 2 =0

1st iteration 0 mod 2 is 0 so 1 time it displays and breakpoint count is 1
2nd iteration 1 mod 2 is not 0 so 2ned time displays but breakpoint count is still 1
3rd iteration 2 mod 2 is 0 so 3 times display and breapoint count is 2 now
4th iteration 3 mod 2 is not 0 so 4th time display but breakpoint count is still 2
5th iteration 4 mod 2 is 0 so before diplsay breakpoint count is 3 which is the limit and as breakpoint arrives it wont display till you continue

so 4 times it displays

cheers