Browsing category

Find elements

Java code to check a number is even or odd using Method

Java code to check a number is even or odd using Method In this program, we will discuss the Java code to check a number is even or odd using Method In this program, we are going to learn about how to find  odd or even number from given number using the method in the…

C function to check a number is even or odd

C function to check a number is even or odd In this tutorial, we will discuss the C function to check a number is even or odd In this program, we are going to learn about how to find  odd or even number from given number using function in C language First, we must understand…

Python program to check a number is even or odd using function

Python program to check a number is even or odd using function In this tutorial, we will discuss the Python program to check a number is even or odd using the function In this program, we are going to learn about how to find the odd or even number from given number using function in…

Cpp program to check a number is even or odd using function

Cpp program to check a number is even or odd using function In this tutorial, we will discuss the Cpp program  to check a number is even or odd using function In this program, we are going to learn about how to find the odd or even number from given number using function in Cpp…

Python program find factorial of a number using recursion

Python program find factorial of a number using recursion In this tutorial, we will discuss Python program find factorial of a number using recursion. Factorial is a product of all positive descending integer begins with a specified number (n) and calculates up to one   Factorial is not defined for negative numbers Factorial of zero(0)…

Find Factorial:Python program to using function

Python program to find factorial using function In this tutorial, we will discuss the Python program to find factorial using function In this program, we are going to learn about how to find  factorial using  the function in Python language Factorial is a product of all positive descending integer begins with a specified number (n) and…

Python program to check whether a number is even or odd

Python program to check whether a number is even or odd In this tutorial, we will discuss the Python program to check whether a number is even or odd. In this program, we are going to learn about how to find  odd or even number from given number using if else statements in Python programming…

Java code to check whether a number is even or odd

Java code to check whether a number is even or odd In this tutorial, we will discuss a simple concept of Java code to check whether a number is even or odd In this post, we are going to learn about how to find  odd or even number from given number using if else statements in…

C program to find factorial using function

C program to find factorial using function In this tutorial, we will discuss the concept of C program to find factorial using function Factorial is a product of all positive descending integer begins with a specified number (n) and calculates up to one   Example factorial of 5 is 5!=5*4*3*2*1=120   factorial of 4 is…