Saved Bookmarks
| 1. |
What is the use of modules? |
|
Answer» We use modules to break down large programs into small manageable and organized files. Furthermore, modules provide reusability of code. We can define our most used functions in a module and import it, instead of copying their definitions into different programs. |
|