InterviewSolution
Saved Bookmarks
| 1. |
How is it possible to share global variables across various modules? |
|
Answer» In order to SHARE GLOBAL variables ACROSS different MODULES within a single program, you need to create a special module. After that, just import the config module in all of the modules of your application. This will make the module available as a global variable across all the modules. |
|