Tag Archives: Csharp interview questions

3 things to avoid during Job Interviews By Questpond.

First and foremost avoid the below three things:- Avoid saying negative about your previous organization because that would send wrong message to the interviewer. Do not create a pessimistic image before the interviewer.On the contrary if you start with positive … Continue reading

Posted in Uncategorized | Tagged , , , , , , , , | Leave a comment

QuestPond’s Interview Questions & Answers on (SSIS, SSAS and SSRS)MSBI

What are partitions in SSAS? SSAS let us create cube. Cube is a multi-dimensional database. Data will be stored inside cube as dimensions and Fact Tables. By default in order to store Fact tables (measure group tables) partitions will be … Continue reading

Posted in Uncategorized | Tagged , , , , , , , , | Leave a comment

QuestPond’s Interview Questions & Answers on ASP.NET MVC (Model View Controller)

Why MVC (Model View Controller) is loosely coupled? In order to answer this question, first let’s understand what’s the difference between loosely coupling and tightly coupling is. Look at the following pic. When we talk about human body, body parts … Continue reading

Posted in Uncategorized | Tagged , , , , , , , | Leave a comment

QuestPond’s Interview Questions & Answers on ADO.NET

What is the use of Command objects? Command object helps to execute SQL statements. Following are the methods provided by command object:- ExecuteNonQuery: – Executes insert, update and delete SQL commands. Returns an Integer indicating the number of rows affected … Continue reading

Posted in Uncategorized | Tagged , , , , , , , , | Leave a comment

QuestPond’s Interview Questions & Answers on .NET

What is a Class and structure’s? Structures are value types and classes are reference types.. When to use Structures and When to use classes? You will use structures when: – Point 1:- If you want to represent a custom value … Continue reading

Posted in Uncategorized | Tagged , , , , , , , | Leave a comment

QuestPond’s Interview Questions & Answers on ADO.NET

How is stored procedure different from functions? Function cannot affect the state of the database which means we cannot perform CRUD operation on the database. Stored Procedure can affect the state of the database by using CRUD operations. Store Procedure … Continue reading

Posted in Uncategorized | Tagged , , , , , , , , , | Leave a comment

ASP.NET Interview questions around Web.config

Can ASP.NET project run with out a Web.config file ? Yes. Can we have two Web.config file in a project ? Yes we can , look at the below video which explain’s why we need two web.config files. Differentiate between … Continue reading

Posted in Uncategorized | Tagged , , , , | Leave a comment

QuestPond’s Interview Questions & Answers on ASP.NET

How many types of validation controls are provided by ASP.NET? There are six main types of validation controls:- RequiredFieldValidator It checks whether the control have any value. It is used when you want the control should not be empty. RangeValidator … Continue reading

Posted in Uncategorized | Tagged , , , , , , | Leave a comment

QuestPond’s Interview Questions & Answers on OOP(Object Oriented Programming) in .NET

What is operator overloading? Operator overloading is a concept of polymorphism where you can redefine operators like +, – , * etc with additional functionalities. For instance we can redefine the + functionalities to add objects like obj1 + obj2. … Continue reading

Posted in Uncategorized | Tagged , , , , , , , , , , , , , | Leave a comment

QuestPond’s Interview Questions & Answers on encrypting web.config files in ASP.NET

Encryption can be done in ASP.NET using the “aspnet_regiis.exe” tool. There are two encryption options provided by ASP.NET: – Windows Data Protection API (DPAPI) Provider (DataProtectionConfigurationProvider) – this provider uses the built-in cryptography capabilities of Windows to encrypt and decrypt … Continue reading

Posted in Uncategorized | Tagged , , , , , , , , , | Leave a comment