Data Encapsulation in C++

By Lakshya Narain

In this tutorial, we will explain what encapsulation is in C++ with the help of examples. C++ is an object-oriented programming language and has support for various properties, wit.... Read More

Linear algebra using numpy in Python

By Priya Bhowmick

The Numpy library in Python has a lot of built-in functions to implement linear algebra over any Numpy array or vector. These functions help to perform complex algebraic operations.... Read More

any() and all() in Python

By Priya Bhowmick

Today we will discuss two functions in Python, ‘any’ and ‘all’ and their different examples. Python provides two built-in functions ‘any()’ and .... Read More

What is close() and quit() commands in Selenium Webdriver?

By Priya Bhowmick

When we work with Selenium Webdriver multiple browsers with multiple tabs open up. In order to close these tabs, we have two different web driver commands, close() and quit(). We w.... Read More

Design a Program to evaluate simple expressions in Python

By Ronak Jethava

So, guys today we will learn How to design a Program to evaluate simple expressions in Python. Let’s do it together. We are basically supposed to evaluate the simple expressions .... Read More

Calculate Derivative Functions in C++

By Ronak Jethava

So, guys today we will learn How to calculate the Derivative of a Function in C++. Let’s do it together. The topic is basically to find the derivative of an equation. The deriva.... Read More

Get common elements between two arrays in Swift

Get common elements between two arrays in Swift

By Faruque Ahamed Mollick | July 3, 2022

After this Swift tutorial, you will be able to learn how to get common elements from two different arrays. Finding common items between two arrays is quite an easy task. Let’s see the code below: let homeDevices = ["Macbook", "Doorbell", "Smartphone", "TV", "Refrigerator"] let officeDevices = ["Air Conditioner", "Macbook", "Mouse", "Refrigerator", "CPU"] // Create new [&h Read More

Login to a website automatically using Python

By Sumit Chhirush

Hello programmers, in this tutorial we will learn how to log in to a website using Python. This can be done with the help of the Selenium Python library. Selenium: Selenium is a Py.... Read More

Related Posts