c#

C# program to convert Fahrenheit to Celsius

C# program to convert fahrenheit to celsius. The program will take the fahrenheit value as input from the user, convert it to celsius value and print the result to the user.

Read
c#

C# program to convert Celsius to Fahrenheit

C# program to convert celsius to fahrenheit value. The program will take the celsius value as the input from the user and print out the fahrenheit value to the user.

Read
typescript

TypeScript string replace() method explanation with example

Typescript string replace() method explanation with example. This method is used to replace a substring in a string. This post will show how to use replace with example.

Read
javascript

JavaScript program to convert Celsius to Fahrenheit

JavaScript program to convert a celsius value to fahrenheit. This program will use HTML, CSS and JavaScript to get the celsius input from the user and to convert it.

Read
python

Selection sort in python explanation with example

Python program to implement selection sort. This post will show you how to implement selection sort in python with example. Selection sort is similar to insertion sort.

Read
C++

C++ STL find() explanation with example

C++ STL find function is used to find a value in a range. In this post, we will learn how to use find with different examples. We can use algorithm header to use this function.

Read
C++

C++ program to find the largest of four numbers using class

C++ program to find the largest of four numbers using a class. The program will use a class and a function to find the largest of four different numbers.

Read
python

How to implement insertion sort in python

Python program to implement insertion sort. This python program will take an array of unsorted numbers and sort them using insertion sort.

Read
python

How to check the Numpy version in linux, mac and windows

Learn how we can check the numpy version in linux, mac and windows. This post will show you two different ways to check the numpy version.

Read
C++

C++ to find the factorial of a number using class

C++ program to find the factorial of a number using a class in two different ways. We will learn how to find the factorial of a number with a static method and with a non-static method in C++ with examples.

Read