How to print the String value after checking the Boolean variable is true or false without using if activity

Booleans are either True or False, you don’t need to check with “=True” or “=False” so you only need…

If(isVerificationResult,“true message”,“false message”)

Also, the second and third parameters can be literals (as I have here) or they can be variables or they can be expressions.