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 |
A file pointer always contains the __________ of the file
Explain polymorphism? What r the types of polymorphism? pls give examples?
What is DeadlyDiamondDeathProblem ?
What is coupling in oop?
#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]]; }
How is the using() pattern useful? What is IDisposable? How does it support deterministic finalization?
sir i want to know which posting to apply since i am BE CSE.. also want to know what are the rounds there for my interview...Expecting for ur valuable answer....
what about you? wahat is your object? introduce your self?
1 Answers Ajmal Perfumes, TCS,
What are virtual functions?
what is difference between thread and programme.
What are the types of abstraction?
What is abstraction in oop with example?