What is design patterns in C++?
Answers were Sorted based on User's Feedback
Answer / nupur
design patterns are the solution of a problem which arises
when developing software within particular context.
each pattern describes a problem which occurs over and over
again in our environment,and then describes a core solution
of that problem in such a way that this solution can be
used again millons of times .
category of design patterns:-
creational:-singleton,protype,abstract etc.
structural:-adapter,bridge,composite etc.
behavioural:-interpreter,iterator,command etc.
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / guest
As ex:- Singleton Class is the Class whose you can make only
one object. Dont forget to do googling.
| Is This Answer Correct ? | 3 Yes | 4 No |
What polymorphism means?
Why is abstraction used?
difference between overloading and overridding
What is memory leak and memory corruption?
How can i write a code in c# to take a number from the user and then find all the prime numbers till the number entered by the user.
how much classes are used in c++
What is a class and object?
what is inline function?
What is Difeerence between List obj=new ArrayList(); and ArrayList obj=new ArrayList()?
what is the function of 'this' operator ?
What is this pointer in oop?
What is the outcome of the line of code "cout<<abs(- 16.5);"? 1) 16 2) 17 3) 16.5