Google News
logo
CPP - Quiz(MCQ)
What does modularity mean in C++?
A)
Subdividing program into small independent parts
B)
Wrapping things into single unit
C)
Overriding parts of program
D)
Hiding part of program

Correct Answer :   Subdividing program into small independent parts


Explanation : Modularity means dividing a program into independent sub programs so that it can be invoked from other parts of the same program or any other program.

Advertisement