31.What are the entities of Service Locator pattern? Following are the entities of this type of design pattern. Service – Actual Service which will process the request. Reference of such …
Interview Questions and Answers
- Design PatternInterview Questions and AnswersTechnical Interview Questions and Answers
- Design PatternInterview Questions and AnswersTechnical Interview Questions and Answers
Design Pattern Interview Questions and Answers Part-3
by Sby S21.What is Composite pattern? Composite pattern is used where we need to treat a group of objects in similar way as a single object. Composite pattern composes objects in term …
- Design PatternInterview Questions and AnswersTechnical Interview Questions and Answers
Design Patterns Interview Qustions and Answers Part-1
by Sby S1.What are Design Patterns? Design patterns represent the best practices used by experienced object-oriented software developers. Design patterns are solutions to general problems that software developers faced during software development. …
- DB2Interview Questions and AnswersTechnical Interview Questions and Answers
DB2 Interview Questions and Answers For Freshers Part-5
by Sby S41.Write a query to delete a table from database.? DROP TABLE table-name is the syntax to delete a table from database.
- DB2Interview Questions and AnswersTechnical Interview Questions and Answers
DB2 Interview Questions and Answers For Freshers Part-4
by Sby S31.When you will face SQLCODE -911? At the time of deadlock or timeout you will face SQLCODE -911.
- DB2Interview Questions and AnswersTechnical Interview Questions and Answers
DB2 Interview Questions and Answers For Freshers Part-3
by Sby S21.When you will face SQLCODE -922? If a user is not authorized to access DB2 objects, he will face SQLCODE -922.
- DB2Interview Questions and AnswersTechnical Interview Questions and Answers
DB2 Interview Questions and Answers For Freshers Part-2
by Sby S11.In a COBOL-DB2 program all SQL statements must be coded in Area A. State whether true or false? This statement is incorrect as SQL statements must be coded in Area …
- DB2Interview Questions and AnswersTechnical Interview Questions and Answers
DB2 Interview Questions and Answers For Freshers Part-1
by Sby S1.What is the picture clause of Null Indicator variable? S9(4) COMP is the picture clause of a null indicator.
- C#Interview Questions and AnswersTechnical Interview Questions and Answers
CSharp Interview Questions and Answers For Freshers Part-5
by Sby S41.What is polymorphism? The word polymorphism means having many forms. In object-oriented programming paradigm, polymorphism is often expressed as ‘one interface, multiple functions’.
- C#Interview Questions and AnswersTechnical Interview Questions and Answers
CSharp Interview Questions and Answers For Freshers Part-4
by Sby S31.How to sort an array in C#? Using Array.sort(array) function. It sorts the elements in an entire one-dimensional Array using the IComparable implementation of each element of the Array.