C++ program to sort an array of strings alphabetically

By Sakshi Gupta

In this tutorial, we are going to learn to sort an array of strings given in C++ in alphabetical order.MOSTLY, we need to sort the array of strings in lexicographical order(in alph.... Read More

Most frequent words in a text file in Python

By Daruvuri phanith

Hello python learners!  In this session, we will be learning how to find the most frequent words in a text read from a file.  Instead of doing on normal text let us do this on a .... Read More

How to swap two numbers without using third variable in Python

By Omkar Mukhesh

Given problem statement is to “Swap two numbers without using any other third variable in Python“. Swap two numbers without using amy third variable in Python There are.... Read More

Structures in C++

By Zeeshan Alam

In this tutorial, we will learn about the Structures in C+ +. we will learn about how to declare the structure declaration of a structure variable and accessing of structure member.... Read More

Radix Sort in C++

By Vishal Kumar

In this tutorial, we are going to learn Radix Sort in C++ and its implementation. Let us first understand what is Radix Sort? In Radix Sort, first, sort the elements based on the .... Read More

How to Reverse a number in C++

By Manisha Rathore

In this tutorial, we will learn how to reverse a number in c++. The Reverse of a number means to reverse the position of all digits of any number and storing the digits in reverse .... Read More

Get The Current Time In Java

By Shubham Kumar

In this tutorial, you will know how to get the current time by using java code with a simple example. To know the current time is very important when you need to know the current t.... Read More

Check if a website exists or not in Java

By Vedant Nandkumar

In this Java program, we check whether a URL is valid or not i.e whether the website exists or not. To start the implementation, we follow the following steps: We input the URL whi.... Read More