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

Java program to check if a number is a Carmichael number

By Vaishnavi Penumerthy

Hello all, In this article, you will learn about Carmichael numbers and write a Java program to check if a given number is a Carmichael number or not. Carmichael Number Checker in .... Read More

Pass array to functions in C++

By Sanam Sahoo

Hello, Coders! In this tutorial, we will learn how to pass an Array as an argument to a function in C++. In C++, an array can be passed to the functions just as the variables. We c.... Read More

How to take float input in Python

By ANJANEYULU DEVARASETTY

In this tutorial, we will see how to take a float input in Python. Actually, there is a difference between Python 2 and Python 3 regarding float() input. In Python 2, we use float(.... Read More

Nested Loops in JavaScript with Examples

By Afra

In this tutorial post, we will learn about nested loops in JavaScript.  Nested loops definition. uses or advantages of nested loops. control structure and algorithm to understand .... Read More