Hello Developers, Here is Article to Create Website in C# ASP.NET. Here i am using Microsoft Visual Studio and Microsoft SQL server. Let’s Follow some important steps. step 1 : Open Visual Studio.Go to File Tab –>Project –>Web –>ASP.NET Web Application–>Select Empty –>Check Web Forms and MVC–>OK. (project name = LoginTest). step 2 : Right […]
Tag: software engineering
count even and odd numbers in an array in C#
C# Program to Count Even and Odd Numbers in an Array Hi programmers,here is the article to Count even and odd numbers in an array using the for loop in c# console application the logic of the program .user enter any n values in the array.if we divide values with 2 then remainder returns zero […]
How to Use Comparer Class in C#
Hi Programmers,here is the article for comparer class in c#.It Performs a case-sensitive comparison of two objects of the same type and returns a value indicating whether one is less than, equal to, or greater. Here a,b are two objects.It return Zero when a equals b.Less than zero when a is less than b. Greater […]
10 Free Software 2020
Best Free Software of 2020.Let’s Follow the all given Details. 1.Photo & Picture Viewer Light Weight Software that’s use to view picture quickly. 2. AutoDesk Sketchbook Sketchbook is used to create your amazing artwork.It has beautiful interface that maximize the drawing space. Its work on MAC , WIN(64 BIT) and you can use it on […]
How to use this keyword in C#
this keyword in C# eliminates naming conflict.It indicates current instance.when two variable sometimes have same identifier, we should use this keyword to remove any confusion. output screen Code Explanation : step 1 : if you debug/run the program then control go to Main method thereafter that goes inside of the Main. step 2 : Program […]
Java Program to Left Rotate Elements of Array
Hello guy’s. here is the post to move array elements into left or right direction. the result can be achieve by loops. we can use any loops like for , for-each,while etc… let’s see the program. Output Screen Code Explanation : step 1 : if you debug/run the program then control goes to main method […]
Swap Adjacent Characters of Strings in Java
Hi Friends, this article in Java Program to swap adjacent characters of a string or words. the program is below. Code explanation if you debug the program then control goes to main Method then it starts processing block of main method. inside main method i created object sc of Scanner class using new keyword and […]
Celsius to Fahrenheit in C#
Write C#.Net program to enter Celsius from keyboard and convert temperature from Celsius to Fahrenheit. how to convert Celsius to Fahrenheit in C# Example : Input : Enter temperature in Celsius = 50 Output :Temperature in Fahrenheit = 122 Basic Conversion Formula F = C * (9/5) + 32; or F = C * 1.8 […]
C# program to find product of digits
product of digits means digit multiplication of given number.example : digit multiplication of 234 is solved as 2 * 3 * 4 = 24. we can do Multiply of digits of a number using while loop , for loop , do while loop or recursive function. Example 1 : product of digits of a number […]
C# program to find sum of digits
sum of digits means digit sum of given number.example : digit sum 0f 234 is solved as 2 + 3 + 4 = 9. we can do Sum of digits of a number using while loop , for loop , do while loop or recursive function. Example 1 : Sum of digits of a number […]