Thanks. I don't know, but don't want to rotate the servo motor in setup procedure. If the servo motor is in 120 degree in idle state, it will keep 120 degree after power up.
There is no way for the Arduino to know what angle a servo is at before the Arduino issues a servo.write() command.
Perhaps you could have a formal shut-down function that ensures the servos go to known positions. If you had sent the servo to 120deg before shutdown you could use servo.write(120) in setup() to ensure the initial position was maintained.
However there is no guarantee that a human hand won't move the servos while the Arduino is off.