Print maximum number of A’s using given four keys in C++

By Tanu Kumari

Learn how to solve the “print maximum numbers of ‘A’ using four keys” problem in C++ in a very simple way. Here in this program, we will try to print the ma.... Read More

How to sort a stack using recursion in C++

By Tanu Kumari

Learn how to sort a stack using a recursion problem using C++. Here, We will write program code to sort a given unsorted stack into ascending order with the help of recursion. Firs.... Read More

Generate random numbers except a particular number in a Python list

By Ranjeet V

Hello everyone, in this tutorial, we will learn to generate random numbers except a particular number in a Python list. We are going to use random.choice() method with the list com.... Read More

Shadowing of static methods in Java

By Ranjeet V

In this post, we will discuss the shadowing of static methods in Java. Suppose, we have two classes such that one of them is child class and another is parent class. Now, if a func.... Read More

Holidays library in Python: Examples

By Ranjeet V

This Python tutorial talks about the holidays library. This library helps us find out efficiently whether a specific date is a holiday or not. Install it using the following comman.... Read More

Introspection of the Python code

By Ranjeet V

In this tutorial, we will learn about the introspection of the Python code. Introspection refers to the ability to determine the properties related to objects at runtime. We will d.... Read More

Python help() function with example

By Ranjeet V

This tutorial will teach you about the Python help() function. The help() function displays the documentation of an object. This is a built-in function and prints a help page when .... Read More

getpass() and getuser() functions in python

By Ranjeet V

Hello guys, in this tutorial, we are going to learn about getpass() and getuser() functions in Python. Both of these functions are present in the getpass module of Python. These fu.... Read More