Program

Identify whether the number is Even or Odd in Python

If any number is exactly divisible by 2 then it’s an even number else it’s an odd number. In this tutorial we’ll see how to check whether the provided number is even or odd number using Modulo(%).

A Program to display factorial of specified number using for loop in JAVA

A Program to display factorial of specified number using for loop in JAVA.

A Program to display factorial of specified number using while loop in JAVA

A Program to display factorial of specified number using while loop in JAVA.

A Program to display sum of 1 to 10 numbers using for loop in JAVA

A Program to display sum of 1 to 10 numbers using for loop in JAVA.

A Program to display sum of 1 to 10 numbers using while loop in JAVA

A Program to display sum of 1 to 10 numbers using while loop in JAVA.

Different ways to create an objects in JavaScript

In this article we would list, how you can create an objects in different ways in JavaScript

Identify whether the number is Even or Odd in C-language

If any number is exactly divisible by 2 then it’s an even number else it’s an odd number. In this tutorial we’ll see how to check whether the provided number is even or odd number using Modulo(%).

Display the multiplication table in Python

In this article, we'll see a program or source to display multiplication table in Python programming language using loop and `range()` function.

Generate a Random number in Python

In this article, we'll see how to generate random number in Python programming language.

How to check if a variable is an integer in Python

In this article, we'll see different ways to check if a variable is an integer. Using `type()` function and `isinstance()` function.

Swapping Variable Values in Python

In this article, we'll see different ways to swap variables including shorter single line way. Swapping variable values also referred as swapping variables.

Find the length of a string using len() function in Python

In this article, we explain a way to find length of a string using built-in len() function, for e.g, length of "Earth is a beautiful planet in Solar System" is 43 (including space).