Skip to main content

Posts

Quest Global -C# developer experienced

Quest Global C# interview experienced Quest Global C# interview experienced 1,What is GAC 2,Delay signing in C# 3,What is strong names in assembly 4,What is CLR. Explain 5,What is the difference between Tier and layer in application architecture 6,Is it possible to declare a variable inside a Interface in c#. 7,What is reflection in c# 8,What is delegates and why it is used. 9,Explain anonymous methods in c# 10,Explain extension methods 11,What is the use of static class 12,How does an event in Asp. Net application works. 14,How can we connect an Oracle db with a Dot net application. 15,What is polymorphism. 16,What will happen if a virtual method inside a base class is not overided in the derived class 17,Exception handling in Dot net 18,What is exception stack trace 19,Explain what will be the result if we create 5 objects of a class with one static member function and another normal method. 20,What is the difference between compilation process of C# co...

15 Essential jQuery Interview Questions

15 Essential jQuery Interview Questions 15 Essential jQuery Interview Questions 1,Explain what the following code will do: $( "div#first, div.first, ol#items > [name$='first']" ) Ans:This code performs a query to retrieve any element with the id first, plus all elements with the class first, plus all elements which are children of the element and whose name attribute ends with the string "first". This is an example of using multiple selectors at once. The function will return a jQuery object containing the results of the query. 2,What is wrong with this code, and how can it be fixed to work properly even with buttons that are added later dynamically? // define the click handler for all buttons $( "button" ).bind( "click", function() {     alert( "Button Clicked!" ) }); /* ... some time later ... */ // dynamically add another button to the page $( "html" ).append( " Click...

IBS Interview questions 4-8 year experienced Dot net professional

IBS Interview questions 4-8 year experienced Dot net professional IBS Interview questions 4-8 year experienced Dot net professional 1,what is No SQL 2,Explain $.getjson(); with an example 3,write an SQL query to change the index of a tables primary column. 4,Consider a table with a single column of int data type .write a select query to select largest value without using aggregate functions. 5,Explain jquery filters 6 Write jquery code to give different colours to alternative columns of a list. 7,Write pseudo code for getting the following output   *****   ++++   ***   ++   * 8,Explain prototype in  javascript

HCL Interview questions for Asp Dot Net MVC Experienced

HCL Interview questions for MVC Experienced HCL Interview questions for MVC Experienced 1,Implementing output cache filter in mvc 2,Code for inheriting a base call in a derived class 3,Authorize and Authenticate filters in mvc. Code level implementation 4,How security features are implemented in MVC application 5,Code access security in C# 6,Difference between HTTP and HTTPS and How to implement HTTPS in an MVC application 7,Difference between static class and abstract class 8,What is generics and where it is used 9,Lamda expression to select employees whose ID greater than 3000. 10,Execution plan in sql 11,Clustered and non-clustered index in sql 12,Acid principle 13.Difference between cross join and inner join in sql 14.What is self join in sql 15.Bundling and minification in mvc 16,Access modifiers in c# 17,Difference between protected and internal access modifiers

Gemini software Dot net interview question for experienced

Gemini Interview questions 4-8 year experienced Dot net professional Gemini Interview questions 4-8 year experienced Dot net professional 1,Asp .net mvc request life cycle. 2,How routing works 3,Where codes for routing are written 4,What is attribute based routing in aap.net Mvc 5,Is multiple routes possible on a single action method. 6,What is action filters. 7,what is authentication and authorization filters 8,What are the types of authentication 8,What is the use of data annotation 9,Can we fire data annotation in client side. 10,What is model binding 11,what are Html helpers

Pitt software Dot net Interview questions

PITT software Dot net Interview questions PITT software Dot net Interview questions Pitt software Dot net Interview questions 1,what is MARS in Dot net 2,merge in SQL server 2014 3,How to call two interface with same function name in a class in c# 4,How to call a function under a class in one class library in a function by overriding the function . 5,jquery selectors 6,When does explicit interface is used in c# 7, Difference between read only and constants in c#

Abstract Class in C#

              ABSTRACT CLASS Definition Abstract classes are classes which cannot be instantiated ie. We cannot create object of abstract class. It acts as base class for other class. An abstract class contains abstract as well as non abstract member functions, the abstract member functions are implemented by the derived class. Purpose The purpose of abstract class is to provide basic  or default functionality  as well as common functionality that multiple derived class can share and override. Properties ·          Abstract class cannot be instantiated ·          It can be used as base class only ·          It contains both abstract as well as non abstract member functions. ·          Abstract class is not sealed as sealed  access modifier prevents a cla...