In this tutorial, we will learn how to reverse a vector using c++. Here we will use the STL(standard template library) library. Here STL is a set of c++ template classes. Using the.... Read More
In this session, we are going to learn how we can convert a given image into its negative form. How to convert an image into its negative image in Python Negatives image means brig.... Read More
This program is used to convert a decimal number into a hexadecimal number in Java. A Decimal number employs 10 as a base and represents any number using 10 digits [0-9]. While A H.... Read More
In this article, we will discuss how to create a zip file and how to compress data items in it. Firstly, we have to understand what exactly a zip file is. What is a zip file? A zi.... Read More
This program is used to remove words which are repeated in a sentence in order to reduce the duplicate words and reduce the sentence length. Duplicate words add redundancy to the s.... Read More
In this tutorial, we are going to learn about How to concatenate string with integer in python. concatenate a string with an integer in Python In python, concatenation of two stri.... Read More
Ever wondered about converting a user input string into a variable name in Python? In this tutorial, we are going to learn how to Convert a User Input String into a Variable name u.... Read More
In this tutorial, we are going to learn about the topic of termination of the loop in c++. For the execution of a block of statements repeatedly we use the loop. What is terminatio.... Read More