.NET - Application Deployment

Why should I learn to solve .NET: Application Deployment technical interview questions?

Learn and practise solving .NET: Application Deployment technical interview questions and answers to enhance your skills for clearing technical interviews, HR interviews, campus interviews, and placement tests.

Where can I get technical .NET: Application Deployment technical interview questions and answers with explanations?

IndiaBIX provides you with lots of fully solved .NET: Application Deployment technical interview questions and answers with a short answer description. You can download .NET: Application Deployment technical interview questions and answers as PDF files or e-books.

How do I answer .NET: Application Deployment technical interview questions from various companies?

You can answer all kinds of .NET: Application Deployment technical interview questions by practising the given exercises (short answer type). You can also find the frequently asked .NET: Application Deployment technical interview questions with answers from various companies, such as TCS, Wipro, Infosys, CTS, IBM, etc.

1.
What is deployment?
Deployment refers to the distribution of an application among various end-users. It is a process that makes software available for use by just installing it on the client computer.

2.
List different ways of deployment that are supported by .NET Framework 4.0.
  • Windows Installer
  • ClickOnce
  • XCOPY
  • Copy Web Site
  • Publish Web Site tool

3.
What is XCOPY?
XCOPY enables you to deploy an application by copying the application directory and all subdirectories to the target computer and then executing the application on the client. The application starts executing on the target computer by using its assembly file, which is a self-description file that contains all the information about the application. The XCOPY deployment does not make any impact on the target system while configuring the components and registering entries, and is therefore known as zero-impact installation.

4.
Does XCOPY copy the hidden and system files?
No. By default, XCOPY excludes the hidden and system files. However, you can include the hidden and system files using the /h switch.