In a modular architecture for a calculator class, the appropriate attributes would generally be the values that the class operates on rather than the operations themselves. Therefore, the most fitting attribute from your list would be:
number 1
This would represent one of the operands that the calculator might use for its calculations. The other options (subtraction, calculate, addition) are more aligned with methods or functions you would implement within the class rather than attributes.