InterviewSolution
Saved Bookmarks
| 1. |
Can You Explain About Namespace? |
|
Answer» Namespaces are logical GROUPINGS of names used WITHIN a PROGRAM. There may be multiple namespaces in a single application code, grouped based on the identifiers’ use. The name of any given IDENTIFIER must appear only once in its namespace. Namespaces are logical groupings of names used within a program. There may be multiple namespaces in a single application code, grouped based on the identifiers’ use. The name of any given identifier must appear only once in its namespace. |
|