How to reverse a vector in c++

By Manisha Rathore

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

Plot negative of an image in Python

By Prakash Raj

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

Java program to convert Decimal into Hexadecimal

By Vedant Nandkumar

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

Compress and create a zip file in PHP

By Ujwal Kumar Sahoo

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

Remove Duplicate words in a sentence using Java

By Vedant Nandkumar

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

How to concatenate string with integer in Python

By Omkar Mukhesh

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

Convert String into Variable name in Python

By Shalini Gupta

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

How to Terminate a Loop in C++?

By Yogender Narayan

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