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 |
Write a c++ program to display pass and fail for three student using static member function
sir plz send me a set of questions that been frequently held in written examination during campus selection.
Why is destructor used?
IS IT NECESSARY TO INITIALIZE VARIABLE? WHAT IF THE INSTANCE VARIABLE IS DECLARED final ? IS IT NECESSARY TO INITIALIZE THE final VARIABLE AT THE TIME OF THEIR DECLARATION?
What are objects in oop?
How to use CMutex, CSemaphore in VC++ MFC
WHY FUCTION OVERLOADING DOSENOT RETURN A RETEN TYPE
advantage and disadvantage in c++>>oops and what are the questions ask for interview in c++>>oops. could you tell me or reply me
What are the 4 main oop principles?
#include <iostream> using namespace std; int main() { int a = 2; int c[5][5]; for (int x=0;x<5;x++) { for (int y=0;y<5;y++) { c[x][y] = x*y; } } cout << c[a][c[1][4]]; }
what is function overloading..?
How to execute business logic for only once ..?even though user clicks submit button multiple times by mistake..? (i disabled JavaScript)