Windows Developer Interview Questions and Answers - 1

Question: 1

List the three kinds of operations performed by the button control?

To close a dialog with a state (e.g. ok, cancel button)

To perform an action on data entered on a dialog (e.g. clicking search after entering some criteria)

To open another dialog application.

Question: 2

List the tasks performed by the Server Explorer?

The following are some of tasks performed using the server explorer.

Open the data connections and commands.

Log on to servers; display the databases and system services, including event logs, message queue and SQL databases.

View information about available web services and methods.

Make data connections to SQL servers and other data bases.

Drag nodes from server explorer into your visual studio projects.

Question: 3

How can you save the desired properties of Windows Forms application?

.config files in .NET are supported through the API to allow storing and retrieving information.

They are nothing more than simple XML files, sort of like what .ini files were before for Win 32 apps.

Question: 4

What is tree view?

It is a control which displays nodes hierarchically in a tree. A tree is a collection of nodes, usually organized in a hierarchical manner. The first node of a tree is the root node.

Question: 5

What is the use of tree node editor?

It has buttons to create a root and to add or delete a node.

Related Questions