Answer Posted / narender vadhava
Modularity means to divide a program into smaller units
into modules as we do in c to make functions.
It help us to write a large program, easily to handle a
complex problem by dividing into modules.
it is also helpful to give a good and easy look to our
lengthy program
| Is This Answer Correct ? | 18 Yes | 3 No |
Post New Answer View All Answers
What do you mean by variable?
What is property in oops?
Why do we need polymorphism in c#?
Question: Write a program that prints a paycheck. Ask the program user for the name of the employee, the hourly rate, and the number of hours worked. If the number of hours exceeds 40, the employee is paid “time and a half”, that is, 150 percent of the hourly rate on the hours exceeding 40. Be sure to use stepwi se refine ment and break your solution into several functions. Use the int_name function to print the dollar amount of the check.
What are two types of polymorphism?
What do you mean by overloading?
What are the benefits of interface?
What is Difference Between Inheritance and creating object and getting data? means Class A extends B{ B.getMethod();} (OR) Class A{ b obj=new B(); obj.getMethod(); }
what is difference between class template and template class?
Where You Can Use Interface in your Project
How do you achieve polymorphism?
What is the purpose of enum?
Why is there no multiple inheritance?
What is inheritance and how many types of inheritance?
Can main method override?