Browsing category

Check value

Java program to separate even and odd numbers from an array

Java program to separate even and odd numbers from an array In this tutorial, we will discuss the concept of the Java program to separate even and odd numbers from an array In this post, we are going to learn how to separate the even and odd numbers from the given array. First, we must…

C program to separate Odd and Even numbers from an array

C program to separate Odd and Even numbers from an array In this tutorial, we will discuss the C program to separate Odd and Even numbers from an array In this post, we are going to learn how to separate the even and odd numbers from the given array First, we must understand how to…

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)…

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…