In this ASP.NET Interview Questions Series, so far we have covered questions related to the core of ASP.NET technology. In this part-6 of ASP.NET Tutorial series, we will cover top 10 interview questions related to ASP.NET Web API framework.What we have covered so far can be summarized as follows:
- Part 1 – Interview Questions on State Management and ASP.NET Controls.
- Part 2 – ASP.NET Interview Questions on Globalization and Localization, Culture etc.
- Part 3 – Interview Questions on Cache Management & Security in ASP.NET.
- Part 4 – ASP.NET Interview Questions on Security in Detail.
- Part 5 – Top 10 ASP.NET AJAX Interview Questions
ASP.NET Interview Questions List – Part 1
- What is ASP.NET Web API?
- What are the advantages of using ASP.NET Web API?
- What new features are introduced in ASP.NET Web API 2.0?
- WCF Vs ASP.NET Web API?
- Is it true that ASP.NET Web API has replaced WCF?
- MVC Vs ASP.NET Web API?
- How to return View from ASP.NET Web API method?
- How to restrict access to Web API method to specific HTTP Verb?
- Can we use Web API with ASP.NET Web Form?
- How we can provide an alias name for ASP.NET Web API action?
What is ASP.NET Web API?
ASP.NET Web API is a framework that simplifies building HTTP services for broader range of clients (including browsers as well as mobile devices) on top of .NET Framework. Using ASP.NET Web API we can create non-SOAP based services like plain XML or JSON strings etc. with many other advantages including:
- Create resource-oriented services using the full features of HTTP.
- Exposing services to a variety of clients easily like browsers or mobile devices etc.
Using ASP.NET Web API has a number of advantages, but core of the advantages are:
- It works the HTTP way using standard HTTP verbs like GET, POST, PUT, DELETE etc for all CRUD operations.
- Complete support for routing.
- Response generated in JSON or XML format using MediaTypeFormatter.
- It has the ability to be hosted in IIS as well as self-host outside of IIS.
- Supports Model binding and Validation.
- Support for OData.
- and more….

More new features introduced in ASP.NET Web API framework v2.0 are as follows:
- Attribute Routing
- External Authentication
- CORS (Cross-Origin Resource Sharing)
- OWIN (Open Web Interface for .NET) Self Hosting
- IHttpActionResult
- Web API OData
You can follow a good Web API new feature details on Top 5 New Features in ASP.NET Web API 2 here.
Actually, Windows Communication Foundation is designed to exchange standard SOAP-based messages using variety of transport protocols like HTTP, TCP, NamedPipes or MSMQ etc. On the other hand, ASP.NET API is a framework for building non-SOAP based services over HTTP only. For more details, please follow here.
Back to top
Is it true that ASP.NET Web API has replaced WCF?
- If we intended to use transport other than HTTP e.g. TCP, UDP or Named Pipes.
- Messag Queuing scenario using MSMQ.
- One-way communication or Duplex communication
For ASP.NET MVC Interview Questions, follow the link.
Back to top
How to return View from ASP.NET Web API method?
(A tricky Interview Question) No, we can’t return view from ASP.NET Web API Method. As we discussed in earlier interview question about difference between ASP.NET MVC and Web API that ASP.NET Web API creates HTTP services that renders raw data. Although, it’s quite possible in ASP.NET MVC application.
Back to top

Can we use Web API with ASP.NET Web Form?
Yes, ASP.NET Web API is bundled with ASP.NET MVC framework but still it can be used with ASP.NET Web Form. It can be done in three simple steps as follows:
- Create a Web API Controller.
- Add a routing table to Application_Start method of Global.asax.
- Make a jQuery AJAX Call to Web API method and get data.
How we can provide an alias name for ASP.NET Web API action?
We can provide an alias name for ASP.NET Web API action same as in case of ASP.NET MVC by using “ActionName” attribute as follows:
In this ASP.NET Tutorial, we covered most important Interview Questions on ASP.NET Web API framework. Hopefully, it will be helpful for Web API developer Interview but along with these questions, do the practical implementation as much as you can. In Practical guide to ASP.NET Web API, you can find a good step by step approach for understanding and implementing ASP.NET Web API services.
Previous <<< ASP.NET Interview Questions – Part -5
Other Related Articles:
- MVC 3 Vs MVC 4 Vs MVC 5
- ASP.NET MVC Web API Service step by step
- Solution to browser back button event
- WebForms Vs ASP.NET MVC
- What’s new in WCF 4.5
- WCF Tutorial by Example
- Creating your first WCF REST Service
- Practical Guide to ASP.NET Web API
Top 10 Interview Questions and Answers Series:
- Top 10 HTML5 Interview Questions
- Top 10 ASP.NET Interview Questions
- Comprehensive Series of ASP.NET Interview Questions
- Top 10 ASP.NET MVC Interview Questions
- Top 10 ASP.NET Web API Interview Questions
- Top 10 ASP.NET AJAX Interview Questions
- Top 10 WCF Interview Questions
- Comprehensive Series of WCF Interview Questions
The post Top 10 ASP.NET Web API Interview Questions appeared first on Web Development Tutorial.