How to change font size using JavaScript

By Samim

In this article, I will tell you how to change font size using JavaScript. To change font size in JavaScript, we will use the style property. Also, we will use the getElementById m.... Read More

How to find the last Saturday of the current month in Java

By Smitha S Maganti

In this tutorial, you will learn how to find the last Saturday of the current month. That is, you will find the date on which the last Saturday of the month will fall. You can make.... Read More

How to Detect and Decode QR Code from an image in C++ with OpenCV

By Vishnu Chand

Hello learners, In this tutorial, we will learn how to decode QR Codes in C++ with OpenCV. Before moving to the concept directly, let’s go through some basic terminologies fo.... Read More

How to do Exponents in Java

By Pratiksha Bhandari

Well, Java provides many functions as well as classes for our real-life problems. This question always comes to programmers who are done with some core Java concepts or solving som.... Read More

Nonlocal vs Global Keyword in Python

By ANJANEYULU DEVARASETTY

In this tutorial, we will see the basic purpose and use of nonlocal and global keywords in Python. We will also be able to differentiate them from this article. For Nonlocal and Gl.... Read More

How to use Python Raw Strings

By ANJANEYULU DEVARASETTY

In this tutorial, we will how to use Python Raw Strings with some simple examples. Raw Strings are introduced for not to escape any characters in the string. Actually, Python escap.... Read More

Ternary operator in JavaScript

By Himaja Battina

In this tutorial, we will understand how to use the ternary operator in JavaScipt and its use. We will also learn how it is different and similar to if else conditional statement. .... Read More

ObjectInputStream resolveClass() Method in Java

By Niwedita Kumari

The java.io.ObjectInputStream.resolveClass(ObjectStreamClass desc) method calls the class of the specified object stream class description.ObjectInputStream resolveClass() method .... Read More