Concept Flow - String comparison
Start
Create two strings
Compare strings using equals()
If true
→Print "Strings are equal"
If false
→Print "Strings are not equal"
Compare strings using ==
If true
→Print "References are equal"
If false
→Print "References are not equal"
End
This flow shows creating two strings, comparing their content with equals(), then comparing their references with ==, and printing results accordingly.
