InterviewSolution
Saved Bookmarks
| 1. |
Can you describe any design for a text editor? Call to describe the classes or interfaces that are required? |
|
Answer» Text EDITORS are software programs that enable the USER to develop and edit the text files also it refers to a source code that includes a number of features for writing or editing the code. Using the inheritance for subclassing in object-oriented programming makes good sense for REUSABILITY or extendibility. With the help of design patterns, for example, model view controller, listener, observer for singleton pattern can be a good option. the most prominent text editors which are frequently used by PROGRAMMERS today are Vim, Eclipse, visual studio, Vmacs and many more. |
|