srinivas endra


{ City } hyderabad
< Country > india
* Profession * software engineer
User No # 5287
Total Questions Posted # 0
Total Answers Posted # 5

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 92
Users Marked my Answers as Wrong # 8
Questions / { srinivas endra }
Questions Answers Category Views Company eMail




Answers / { srinivas endra }

Question { Usl India, 38969 }

What?s the difference between Modal and Modeless Dialog?


Answer

Example for Model Dialog is Save, Save As Dialog in MS -
Word. while it is opening you can't do any thing in the
application until you close that window
Example for Modeless Dialog is Find,Replace dialogs. You
can use Find Dialog, same time you can also work in that
word application.

Is This Answer Correct ?    60 Yes 4 No

Question { 15387 }

What is the difference between ASSERT and VERIFY?


Answer

The main difference between ASSERT and VERIFY is when you
compile the release build of the program.

ASSERT will not be present in the release build version of
the executables/dlls, and its expression that would have
been evaluated will be deleted.

VERIFY will be present in the release build version of the
executables/dlls but its expression that would have been
evaluated will be left intact.

Is This Answer Correct ?    2 Yes 1 No


Question { Microsoft, 16313 }

If i derive a new class from CObject what are the basic
features my derived wil get ?


Answer

You can choose from four levels of functionality when
deriving a class from CObject:
• Basic functionality: No support for run-time class
information or serialization but includes diagnostic memory
management.
• Basic functionality plus support for run-time class
information.
• Basic functionality plus support for run-time class
information and dynamic creation.
• Basic functionality plus support for run-time class
information, dynamic creation, and serialization

Is This Answer Correct ?    5 Yes 1 No

Question { 9721 }

Does the application have more than one object? If no, then
what is the reason?


Answer

No, One application does not contain more than one
application object.
Since, the program can defines a single global application
object, which can represent only one application.

One Application cannot have more than one object and can
represent more than one application. I can say, this cann't
happen and opposite to behavior.

Is This Answer Correct ?    3 Yes 1 No

Question { Huawei, 24727 }

Explain Doc/View architecture


Answer

Document/View Architecture represents pure Windows(SDI/MDI)
application, which is based on Mode View Control(MVC)
pattern. This Doc/View architecture separates the data from
view. One of the use of this Doc/View architecture is, we
can see multiple forms of the data.
Example. Two Charts(Pie chart, Bar char) for one common data.

Is This Answer Correct ?    22 Yes 1 No