Dr Ruqaiya Khanam has Published 14 Articles

How to make Density Plot in Python with Altair?

Dr Ruqaiya Khanam

Dr Ruqaiya Khanam

Updated on 28-Aug-2023 14:25:02

166 Views

Altair is a kind of statistical visualization library in Python. This library is based on vega and vega-lite javascript libraries. Moreover, we can visualize the data distribution in the form of a density plot in Python. These plots are useful whether we need to compare the variable distribution across the ... Read More

Python Program to Generate One-Time Password (OTP)

Dr Ruqaiya Khanam

Dr Ruqaiya Khanam

Updated on 28-Aug-2023 14:21:42

2K+ Views

In this article, we will discuss how to generate a random one-time password (OTP). We will be using two modules in Python, namely the random and string modules, to accomplish this task. The random module provides relevant functions for generating random numbers, while the string module consists of numerous appropriate ... Read More

Python program to find XOR of array elements which are divisible by given number

Dr Ruqaiya Khanam

Dr Ruqaiya Khanam

Updated on 28-Aug-2023 14:16:51

96 Views

In this article, we will discuss how to compute the XOR of array elements that are divisible by a given number. The XOR (exclusive OR) is a binary operation that compares the bits of two operands. If the bits are different then it will return 1 whereas it returns 0 ... Read More

Python Program to find Jumbo GCD Subarray

Dr Ruqaiya Khanam

Dr Ruqaiya Khanam

Updated on 28-Aug-2023 14:12:05

51 Views

Jumbo GCD can be referred to find the Greatest Common Divisor (GCD) of a subarray with the maximum length of an array. The GCD is a set of positive integer numbers that divides all the numbers without having a remainder. We can find out the jumbo GCD subarray using two ... Read More

Advertisements