Design a program to input a date from user in the form
day/month/year (e.g. 2/6/2000) and report whether it’s a
valid date or not. The program should take account of leap
years. You will need to know that a leap year is a year that
is exactly divisible by 4, except that century years are
only leap years if they are divisible by 400.
Answer Posted / jkl
Design pattern is a general repeatable solution to a
commonly occurring problem . A design pattern is not a
finished design that can be transformed directly into code.
It is a description or template for how to solve a problem
that can be used in many different situations.
Object-oriented design patterns typically show
relationships and interactions between classes or objects,
without specifying the final application classes or objects
that are involved.
Design patterns deal specifically with problems at the
level of software design.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Define a constructor - what it is and how it might be called (2 methods)?
What is implicit pointer in c++?
Define copy constructor.
What are iterators in c++?
What is the use of vtable?
What is c++ w3school?
What is a Default constructor?
What function initalizes variables in a class: a) Destructor b) Constitutor c) Constructor
Write a program using merge () function to combine the elements of array x[ ] and y[ ] into array z[ ].
Can you please explain the difference between static and dynamic binding of functions?
What are c++ stream classes?
What is virtual destructor? What is its use?
What is #include iostream h in c++?
What is c++ try block?
What are the 4 types of library?