Say we wanted to create a static method called addUp() that returns an int. What would the method signature look like?

public static int addUp()
  • public int static addUp()
  • public int addUp is static()
  • static public addUp()

There are no hints for this question