what is inheritance ? The method of constructing one class from another is called Inheritance.The derived class inherits all the propertie...
Read More
Home / Archive for May 2016
Most Frequently asked Program in Companies system-test Round perform CRUD operations using grid-view in c#
CRUD Operations also called(Create,Read,Update,Delete) Today I will explain how to perform CRUD operations in easy way. Add the following ...
Read More
SQL-SERVER INDEX INTERVIEW QUESTIONS AND ANSWERS FOR FRESHERS
What is an Index? Indexes of SQL Server are similar to the indexes in books. They help SQL Server retrieve the data quicker. Index is ...
Read More
Top 10 SqlServer Stored Procedure Interview Questions Answers For Freshers
1). What is Stored Procedure? Ans: A stored procedure is a named group of SQL statements that have been previously created and stored i...
Read More
Basic SQL Queries Asked in Interviews for Freshers
Get all employee detail from EmployeeDetail table whose "EmployeName" start with any single character between 'd-m' S...
Read More
Difference between Stored Procedures and Functions in SQL Server
Stored Procedures are pre-compiled objects which are compiled for first time and its compile format is saved which gets executed whenever ...
Read More
C# Program to calculate the length of the string
C# Program to calculate the length of the string using System; class Program { static void Main() { string s1 = "Compu...
Read More
Difference Between ExecuteNonQuery and ExecuteScalar ADO.NET
ExecuteNonQuery() It Returns the count of Rows Effected by the Query. Int in Return Type. ExecuteNonQuery() works Queries only. Create,Alt...
Read More
Difference between Constant and Readonly in C#
Constant Constant variables must be assigned value at compile time. Once the value is assigned it cannot be changed. It is static by...
Read More
Difference between Abstract Class and Interface in C#
Abstract Class Abstract class is inherited. We cannot create an object of abstract class. Abstract class does not support multiple in...
Read More
Difference Between DataSet and DataTable in SQL Server
DataSet: DataSet can fetch multiple TableRows at a time. A DataSet is like structure which has collection of DataTables. DataSet, D...
Read More
Difference Between String And StringBuilder in C#
String It is Immutable. String Using System NameSpaces. Once Create String Object We Cannot Modify. String Cannot Append Keyw...
Read More
Difference between DataReader and DataAdapter in SQL Server
DataReader 1.Can Access one table at a Time. 2.Handles DataBase Tables. 3.Only READ Operation. 4.DataBase Connection M...
Read More
How to Create Stored procedure in SQL Server
Insert procedure CREATE PROCEDURE sp_insert @name varchar(50), @password nvarchar(12) AS begin insert into tbl_login...
Read More
Difference Between For Loop and ForEach Loop
Difference Between For Loop and ForEach Loop For Loop: For Loop Variable Always int Only. For loop Iterates a Statement or a Block...
Read More
Subscribe to:
Posts
(
Atom
)