Posts

Showing posts from November, 2018

ADO.Net

Image
ADO.NET ADO stands for Activex Data Object. It is Database Technologies of .Net basically it is used for connecting your application to your database server.  We can Say it is a part of .Net Framework. ADO.NET consist of classes to handle data access The ADO.NET architecture is basically divided into 2 parts. Data Provider (connected objects or can say connection oriented objects). Data Set (Disconnected Objects or connection less objects).  ADO.NET Architecture   Data Providers(Connected Objects) 1)     SQLServer: -    a. Namespace used: - using system.Data.SqlClient.                               Example: - sqlserver 2008, 2012, and etc.                               2)     OLEDB             ...

Fundamental of OOPS From Scratch to End

Image
Module 1:- [Fundamental] OOPS: -     Oops stands for object-oriented programing structure/system.       Before OOPS we had (POP) Procedure oriented programming structure/system.   In POP all the work was processing in a sequence process. It became quite complex when the number of Lines of Code became large. When process increases, then the functionality of code also increases. The complexity also increases in POP. So, in OOPs all the stuff divided into small modules known as the object.   Another thing you have to understand that the concept of object-oriented programing is derived from the Real world. The main concept of OOPS is Class and Object. So, let’s see what is class: - Class: - The class is a collection of Data Member and Member Function. Data member are the variables which we declare into the program and Member functions are the functions or method which we declare into the program. Quite confused... ...

Basic of C#

Image
Basics of c# C#: -  It is a high-level programing language. It is Very Flexible. Pure Object Oriented Programing Language. Cross-platform support. High productivity. The most powerful programming language for the .NET Framework. W.A.P to even and odd numbers from 1 to 50. W.A.P. To find The Given Number is Even or ODD.? W.A.P. to find the maximum of 3 numbers. W.A.P.  of simple arithmetic Operation. W.A.P.  of simple switch case the user enters number 1 to 7. as per the selected number day should be printed. if the user enters the wrong day (other than 1 to 7) response should be the Wrong day selected. W.A.P.  of Arithmetic Operation using the switch case. the arithmetic operation should depend on the user. W.A.P. of simple do...while statement. W.A.P. of While loop and do...while loop (Understand the different) W.A.P. of simple enum keyword. ...