Reverse individual words in a string or sentence in Java.

By Shakshi Parekh

In this context, we are going to learn how to reverse individual words in a string or sentence in Java. So the user has to Enter the Input eg: Java is object oriented language so t.... Read More

How to count the number of commas in a given string in Java

By Yanamandra Valli

In this tutorial, we will learn how to count the number of commas in the given string in Java. Now we know that in Java, a string is a combination of alphabets, numbers, special ch.... Read More

Find Union of Two Arrays in C++

By Pritam Hande

In this tutorial, we will learn how to find the union of two unsorted arrays in C++. Before that let’s first understand what is array. Array: is a derived data type that c.... Read More

Morris Inorder Tree Traversal in C++

By Pritam Hande

In this tutorial, we will learn Morris inorder tree traversal in C++. For learning morris inorder tree traversal first we should know about what is inorder tree traversal. Inorder .... Read More

Ternary search in C++

By Pritam Hande

In this tutorial, we will learn about the ternary search and its implementation in C++. Ternary Search: It is a divide and conquer algorithm that is used to find an element in an a.... Read More

Remove Duplicates from array in Java using collection

By Zeyan Ansari

In this tutorial, we will learn how to remove duplicates from an array in Java using collection. we will use list interface in java. It is a child interface of collection. It is an.... Read More

How to calculate age from date of birth in Java

By Krishna Lakhi

Hey Everyone! In this tutorial, we will learn how to calculate age from Date of Birth in Java provided by the user as input. For this tutorial please consider using Java version 8 .... Read More

Java program to display number in words

By Shakshi Parekh

In this context, we are going to learn how to write a program in Java to display the number in words. Input: If user initializes n=24 it will print Twenty Four and if n=268 Two Six.... Read More

Related Posts