197k views
1 vote
Namespaces are guaranteed to be unique.

True

False

User Pleft
by
7.9k points

1 Answer

3 votes

Answer:

True

Step-by-step explanation:

Some collection of classes or library functions grouped as one name space. A class which belongs to one namespace is different from the class which belongs to another namespace. we can identify a class uniquely with it's namespace .

for ex:

in c#.net

using system;

System.IO;

here System is the namespace which contains class IO

namespace contains any number of classes . In one namespace we can't define two classes with same Name. We can define two classes with same name in different namespaces

User Steve Elmer
by
8.3k points

Related questions

asked Jul 3, 2024 177k views
Gromo asked Jul 3, 2024
by Gromo
8.1k points
1 answer
3 votes
177k views
asked Mar 12, 2024 78.2k views
Vdua asked Mar 12, 2024
by Vdua
7.8k points
1 answer
4 votes
78.2k views