Output :  

 

Output : Explanation : Actually here we are printing the ASCII smbol of 3 . Which gives a love symbol. you can also print directly by writing the following code.  Console.Write(Convert.ToChar(3))  or  Console.Write(ChrW(3))  

  Sample Output :

Lets suppose Database Name is MYDB and TABLE1, TABLE2, TABLE3 are tables in MYDB databaseSql query to retrieve all the column names in a table : select COLUMN_NAME from MYDB.INFORMATION_SCHEMA.COLUMNS where TABLE_NAME = ‘TABLE1’Sql query to get common Columns in two tables in Sql Server : select COLUMN_NAME from MYDB.INFORMATION_SCHEMA.COLUMNS where TABLE_NAME = ‘TABLE1’ intersect select COLUMN_NAME from MYDB.INFORMATION_SCHEMA.COLUMNS where TABLE_NAME… Continue Reading Sql query to get common Columns in multiple tables in Sql Server

Sample Output :  

 

Sample Output: 

Sample Output:   

 

  Sample Output:

 

  Sample Output:    

.NET  is a platform independent but not fully platform independent. why because, the code written in any of the .NET Languages are compiled into MSIL code ( microsoft intermediate language code) . The MSIL code is platform independent. Hence to Run a .NET application on any machine we need to install .NET Framework.… Continue Reading IS .NET PLATFORM DEPENDENT OR PLATFORM INDEPENDENT ?

 

VB.NET PROGRAM TO ADD TWO NUMBERS / INTEGERS USING FUNCTION

Sample Output:

Program :

Sample Output : Explanation : In the above program the method static public int Add(int a,int b) , we are declaring method Sum method as Static because Main method is static and we are calling Sum method in Main method without creating object. C# is a Object Oriented Programming Language. And… Continue Reading C# PROGRAM TO ADD TWO NUMBERS / INTEGERS USING METHOD

C PROGRAM TO ADD TWO NUMBERS / INTEGERS USING FUNCTION

  Sample Output :

C# PROGRAM TO ADD TWO NUMBERS / INTEGERS  

Sample Output : original post link

C PROGRAM TO PRINT NUMBERS 1 TO N WITHOUT USING LOOPS

Sample Output :  

C PROGRAM TO PRINT THE ELEMENTS OF ARRAY IN REVERSE ORDER

Sample Output :

C PROGRAM TO FIND LARGEST AND SMALLEST NUMBER IN AN ARRAY original post

Sample Output :