No.
Variables declared in Globals have the same lifecycle as the Activity where they were declared.
Valiables declared in Process_Globals (in any Activity module) are accessible from all other activities, but need to have, in other modules, as a prefix the module name where they were declared.
Example variable declared in Main:
In the Main module
MyVariable = 10
In any other module
Main.MyVariable = 10
Best regards.