Inheritance in C++

By Alankrita Lakshmi

This tutorial will talk in detail about the concept of inheritance in C++. What is inheritance in C++? In C++ language, the concept of inheritance describes the property by which .... Read More

Difference between remove, del and pop in Python list

By Jagannath@cr7

Let’s know the basics of removing items in a list. First of all, let’s discuss how a list looks like. Moreover, it will be helpful because those methods are based on li.... Read More

Encrypt and Decrypt data in Node.js using Crypto module

By Faruque Ahamed Mollick

Today, I am going to let you know, how to encrypt data and then decrypt it back to get the original data in Node.js. I hope you have some idea of encryption and decryption. In brie.... Read More

Java Annotations Tutorial

By Esmail Rahmani

In this tutorial, we will learn what is annotations, how to use it in Java and how to create your own custom annotation. Annotation is a kind of information to provide data from a .... Read More

Bit Masking in C++

By Alankrita Lakshmi

In this tutorial, we will learn Bit masking in C++ with a program. What is a bitmask? We are well aware of the bitwise operators in C++. They are – bitwise and, or, not and e.... Read More

Python program to check if two numbers are Amicable or not

By Shravan Reddy

Hello, In this Lecture, we are going to code a Python program to check if two numbers are Amicable numbers or not. First of all, what is this Amicable? we say two numbers are Amica.... Read More

Encrypt and Decrypt a String in PHP

By Faruque Ahamed Mollick

Encryption and decryption of data is a technique used for security purposes. This technique widely used to keep confidential messages secret and only readable by the receiver of th.... Read More

Converting a List into a Dictionary in Python

By Jagannath@cr7

In this tutorial, we will learn how to convert a list into dictionary in Python. A list is a collection of different data. In Python, a list shows the following features. It is a m.... Read More

Related Posts