Look at the following lines of code. What will the variable a hold?

int a = 5;
int b = a;
int c = a + 2;
5
  • 7
  • 2
  • We don't have enough information to determine what value 'a' will hold.

There are no hints for this question