close
Arrow icon
What is Branching Within a Program?
Pencil icon
Alan Leal
Calendar icon
2019-08-12

In computer science, “branching” is a set of instructions. You’re basically asking the computer to execute various parts of your program instead of executing it one-by-one and in order.

In high-level languages, you can implement branching through control flow statements:

  • If Statements
  • Goto Statements
  • While Loops
  • For Loops

You can even implement branching to the computer’s bare metal, such as its CPU. However, these instructions are much simpler in scope than those in high-level languages.

LinkedInTwitterFacebookEmail

Did you enjoy the read?
Share
ArrowPrevious
NextArrow