Reverse a String
Previous Next In this example, we will create a program using JavaScript and HTML to reverse a given string and display the output. The JavaScript… Read More »Reverse a String
Previous Next In this example, we will create a program using JavaScript and HTML to reverse a given string and display the output. The JavaScript… Read More »Reverse a String
Previous Next The factorial is a popular mathematical concept or algorithms and very useful in computer science. In this example, we are going to accept… Read More »Find Factorial Of A Number
Previous Next In this example , we will test a simple algorithms to convert temperature in Celsius to Fahrenheit and display on a HTML page.… Read More »Celsius To Fahrenheit
In this article, you will learn about a Int() function.The int() function will change any double or real number into integer and drop the real… Read More »VB 6 – Int() Function
In this article, you will learn about Log() function. The Log function takes the Logex of a number x. To know the correct log value… Read More »VB 6 – Log() Function
The VB6 random number function is Rnd(). It generates a random number. In the following program we will use this function to generate a random… Read More »VB 6 – Rnd() Function
In VB 6, the sqr() function gives the square root of any number. The argument for the sqr() function must be a Double mean a… Read More »VB 6 – Sqr() Function
The Exp() function is antilogarithm. Suppose there is a number 1000 which is 103 and its log value is 3. The the anti-log value of… Read More »VB 6 – Exp () Function
The Cos function in VB 6 returns the cosine value of a degree. When you enter a degree value in the program, it gives you… Read More »VB 6 – Cos Function
In this example, we will use Abs() math function of Visual Basic 6 to find absolute value of a number. Program Code: Abs( ) Function… Read More »VB 6 – Abs() Function