HTML Block Elements

By Ankit

In this tutorial, we will learn about HTML block elements. By default, Block-level takes up the full width available. It always starts on a new line. It also takes up as much horiz.... Read More

Upcasting and Downcasting in C++

By Lakshya Narain

In this tutorial, we will learn about upcasting and downcasting in C++. Upcasting and downcasting are an important part of C++ and enable the possibility of object-oriented program.... Read More

numpy.char.find() function for string operations in Python

By Priya Bhowmick

The numpy.core.defchararray.find() function is used to return the lowest index for the substring ‘sub’ i.e found in each component of the string in the specified range..... Read More

Maximize or Minimize a browser window using Selenium Python

By Varun Bhattacharya

Hello programmers, in this tutorial we will see how to maximize or minimize a browser window using Selenium Python. Selenium is a tool that is used in the automation of browsers. T.... Read More

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

Related Posts