Skip to main content

WCF, WPF, Silverlight, LINQ, Azure and EF 4.0 interview question and answers

WCF, WPF, Silverlight, LINQ, Azure and EF 4.0 interview question and answers
·         What is SOA, Services and Messages ?
·         What is the difference between Service and Component?
·         What are basic steps to create a WCF service ?
·         What are endpoints, address, contracts and bindings?
·         What are various ways of hosting WCF service?
·         What is the difference of hosting a WCF service on IIS and Self hosting?
·         What is the difference between BasicHttpBinding and WsHttpBinding?
·         How can we do debugging and tracing in WCF?
·         Can you explain transactions in WCF (theory)?
·         How can we self host WCF service ?
·         What are the different ways of implementing WCF Security?
·         How can we implement SSL security on WCF(Transport Security)?
·         How can we implement transport security plus message security in WCF ?
·         How can we do WCF instancing ?
·         How Can we do WCF Concurency and throttling?
·         Can you explain the architecture of Silverlight ?
·         What are the basic things needed to make a silverlight application ?
·         How can we do transformations in SilverLight ?
·         Can you explain animation fundamentals in SilverLight?
·         What are the different layout methodologies in SilverLight?
·         Can you explain one way , two way and one time bindings?
·         How can we consume WCF service in SilverLight?
·         How can we connect databases using SilverLight?
·         What is LINQ and can you explain same with example?
·         Can you explain a simple example of LINQ to SQL?
·         How can we define relationships using LINQ to SQL?
·         How can we optimize LINQ relationships queries using ‘DataLoadOptions’?
·         Can we see a simple example of how we can do CRUD using LINQ to SQL?
·         How can we call a stored procedure using LINQ?
·         What is the need of WPF when we had GDI, GDI+ and DirectX?
·         Can you explain how we can make a simple WPF application?
·         Can you explain the three rendering modes i.e. Tier 0 , Tier 1 and Tier 2?
·         Can you explain the Architecture of WPF?
·         What is Azure?
·         Can you explain Azure Costing?
·         Can we see a simple Azure sample program?
·         What are the different steps to create a simple Worker application?
·         Can we understand Blobs in steps, Tables & Queues ?
·         Can we see a simple example for Azure tables?
·         What is Package and One click deploy(Deployment Part - 1) ?
·         What is Web.config transformation (Deployment Part-2)?
·         What is MEF and how can we implement the same?
·         How is MEF different from DIIOC?

·         Can you show us a simple implementation of MEF in Silverlight ?

Comments

Popular posts from this blog

.NET Core API With Dapper, Repository And UnitOfWork

  Introduction In this tutorial, you will use ASP.NET Core Web API to create a web API that returns a list of brands. This article focuses on creating web API using dapper, repository pattern, and UnitOfWork pattern in .NET 8. I will guide you through the steps by step to create web API. HTTP is not just for serving up web pages. HTTP is also a powerful platform for building APIs that expose services and data. HTTP is simple, flexible, and ubiquitous. Almost any platform that you can think of has an HTTP library, so HTTP services can reach a broad range of clients, including browsers, mobile devices, and traditional desktop applications. ASP.NET Core Web API is a framework for building web APIs on top of the .NET Framework. Creating a New Project in Visual Studio Launch Visual Studio and select Create a New Project. Creating a Core Web API Start Visual Studio and choose Create a new project. In the Create a new project dialog, select ASP.NET Core Web API Click Next. Configuring You...

.Net framework interview questions

What is the .NET Framework? The .NET Framework is a set of technologies that form an integral part of the .NET Platform. It is Microsoft’s managed code programming model for building applications. The .NET Framework has two main components: Common Language Runtime (CLR): The CLR is one of the foundation in the .NET framework and provides a common set of services for applications developed on Microsoft .Net Technologies. .NET Framework class library: The .NET framework class library is a collection of reusable types and exposes features of the runtime. It contains of a set of classes that is used to access common functionality. What is CTS (Common Type System)? The common type system (CTS) defines how types are declared, used, and managed in the runtime, and is also an important part of the runtime’s support for cross-language integration. The common type system performs the following functions: ·          Establishes a framework that...

Move Selected Gridview Rows to Another Gridview in Asp.net

Introduction :  Here I will explain how to move or transfer selected checkbox gridview rows to another  grid v iew in asp.net using c#, vb.net or copy one gridview row to another gridview in asp.net using c#, vb.net. Description :  In previous posts I explained Display images in gridview from database in asp.net, Enable/Disable checkbox in gridview based on condition,  asp.net gridview examples  and  bind data to textbox control in gridview ,  Bind data to dropdownlist  in gridview  and many articles relating to  asp.net,  c#, vb.net, c#,vb.net. Now I will explain how to move selected rows from one gridview to another gridview in asp.netusing c#, vb.net. To implement this first we need to write the code in aspx page like this  < html   xmlns ="http://www.w3.org/1999/xhtml"> < head > ...