Explian following terms: Constraint Rules, Design by
contract.
Answer Posted / debalina
Design by contract :Design by contract, DBC or Programming
by contract is an approach to designing computer software.
It prescribes that software designers should define precise
verifiable interface specifications for software components
based upon the theory of abstract data types and the
conceptual metaphor of a business contract.Because "Design
by Contract" is a trademark of Eiffel Software, the
maintainers of Eiffel, many developers will refer to it
only as programming by contract or contract-first
development. The principal idea of Design by Contract (DBC)
is that a class and its clients have a contract with each
other: The client must guarantee certain conditions before
calling a method specialized on the class (the
preconditions), the class guarantees certain properties
after the call (the postconditions). If the pre- and
postconditions are included in a form that the compiler can
check, then any violation of the contract between caller
and class can be detected immediately.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Explain what a method is?
Can you use virtual, override or abstract keywords on an accessor of a static property?
Explain about encapsulation?
What is meant by overloading functions and operators?
What is the best tool for modeling and ORM framework
Can we have default method with same name and signature in the derived interface as the static method in base interface and vice versa?
What is the order of call of constructors in inheritiance?
What is the difference between oop and sop?
Write about abstract base classes?
Explain the implementation phase with respect to oop?
What are a base class, subclass, and superclass?
What are the types of polymorphism?
What are the access modifiers?
Can you create an instance for an abstract class?
Why do we use oops concepts? What is its advantage?