String Anagram Program in Python

Anagram Program in Python

In this tutorial, you will learn the writing python program to check given two strings are anagrams or not. Creating an anagram checker program in Python involves comparing two strings to check if they are anagrams of each other, means if one string can be rearranged to form the other. An anagram is a word … Read more

Java Program to find Prime Factor of a given number

Find Prime Factor Of A Given Number in java

In this tutorial you will learn writing Java program to find prime factor of a given program. Before moving on writing program lets know what is prime factor? Read This: Prime factor program in C How this Java program will behave? The prime factor calculation program will take a number as a input and in … Read more

Java Program to Swap two number without using third Variable

Sum The Digits Of a Number Using Recursion in java

In this tutorial you will see Java program to swap two number without using temp variable. This is also a important program which commonly asked in interview. Read This: C program to swap two number without using third variable. In Swapping operation basically we change value of variable. Suppose assigned value of variable ‘a’ is … Read more

What is database management system? Write its capabilities.

Ans: Before the database management system, we should know about the data and the database. There are two very confusing terms. Difference between data and information is as follows: Data: Data is the raw and isolated facts about an entity or record. For example text, audio, image, map, etc. Information: Information is processed, meaningful and … Read more

Perfect number program in Java

Perfect Number Program in java

In this tutorial you will learn how to write a program in Java to check a given number is perfect or not. Read This: What is Perfect Number? Write a program in C for Perfect Number. What is Perfect Number? A perfect number is a positive integer that is equal to the sum of its … Read more

Java Program to add two numbers without addition operator

Add two numbers without addition operator

In this tutorial you will learn writing program to add two numbers without using addition operator in Java. Read This:  Write a program in C to add two number without using third variable. How this Java program will behave? This program will take two number as a Input. And After performing some operation as per … Read more

Java Program to Swap two number using third Variable

Swap Two Number Using Third Variable in java

In this tutorial you will learn swapping of two numbers using third variable Java in  programming language. This is also a most important program which commonly asked in interview. Before directly moving on writing the program lets understand what is our aim to achieve in this program. Basically Swapping of number means  Suppose variable a … Read more