Change the size of an image using JavaScript

By CHAWADIMANI SANJANA VIJAY

In this article, I will tell you how to change the size of an image using JavaScript. If we want to change the size of an image, then we will use the function in JavaScript. first .... Read More

How to convert string to hexadecimal in C++

By Himanshu Sharma

In this tutorial, we will learn to convert string to hexadecimal in C++. For this purpose, we will use a manipulator named hex. Hex is an I/O manipulator that takes reference to a.... Read More

Increment (++) and Decrement (–) Operator in JavaScript

By Niwedita Kumari

JavaScript has two important operators, ie, increment and decrement operators. Increment and Decrement Operator in JavaScript increases and decreases the value of any variable by 1.... Read More

Check if user input is a string or number in Python

By ANJANEYULU DEVARASETTY

In this tutorial, we will learn how to check if user input is a string or number in Python. We have some tricks to check user input. Type 1:  type(num) to check input type in Pyth.... Read More

Pointer to the Base Class in C++

By Sanam Sahoo

Hello, Coders! In this tutorial, we will discuss the concept of the base class pointer in C++ and its implementation in the program. Before going to the main topic let’s cove.... Read More

Convert int to string easily in C++

By Sanam Sahoo

Hello, Coders! In this tutorial, we will learn various ways to convert integer to string in C++. Let’s discuss the following conversion methods: stringstream class to_string(.... Read More

Nested for Loop in Python

By ANJANEYULU DEVARASETTY

In this tutorial, we will discuss Nested for Loop in Python programming. Nested Loop: The Nested Loop is Loop that is inside another loop which is called the outer loop. There are .... Read More

Program for reading all emails present in a file in Java

By Niwedita Kumari

In this tutorial, we will learn how to read or fetch all the email ids from a .txt file in Java. Searching and reading emails is a tough task. But, it is even more hectic when we a.... Read More