How to write your own atoi function in C++

By Rahul Ranjan

Hello Friends, Today we are going to learn how to write atoi function in C++. First, understand about atoi function then we will see an example and then we will see the implementat.... Read More

Super keyword in Java with examples

By Ranjeet V

Hello everyone, in this tutorial, we will talk about the super keyword in Java. The super keyword in Java is used as a reference variable. It can be used to refer to the parent cla.... Read More

The Javascript Prototype in action: Creating your own classes

By Abhishek Swaminathan

In my previous post, I had briefly introduced the concept of the Prototype in Javascript. In this post, we are going to learn how to use it with a practical example. We are going t.... Read More

Check for the standard password in Python using Sets

By HIMANSHU ZAVERI

In this post also we will check whether the password is in standard format or not in Python. But unlike the previous post, this time we will use sets and their in-built functions. .... Read More

Generating first ten numbers of Pell series in Python

By Souhardya Ganguly

In this tutorial, you will learn about Pell SeriesĀ and how to generate them in Python. Let’s get started! What are Pell series? Pell Series is a series where subsequent numb.... Read More

YouTube Video To Audio Downloader using Python

By Karan Trehan

We often try to download YouTube Videos as Audios alone and for that, we generally end up searching websites that would assist us in doing the same. Subsequently, we find websites .... Read More

An introduction to Javascript Functions

By Abhishek Swaminathan

This post is a basic introduction to functions in Javascript. It demonstrates how functions in Javascript can be used like objects. What is a function in Javascript? A Javascript f.... Read More

Converting integer to roman numeral in C++

By Prayas Sambhare

In this tutorial, we are going to learn about converting an integer into its corresponding roman numeral. We will use C++ for this task. Roman numerals are something which we are f.... Read More