This is a pretty dumb question, and googling gave me conflicting answers.
In a if statement, say if(a < b && c > d), would this be considered 1 or 2 branches in java? I’m mainly confused on if the statement is considered a branch, or if each compare expression are branches. I understand only one gets evaluated at a time leading me to believe there are 2 branches, but I would like to be reassured by someone.