All Medium Articles
On Feb 5 2021 Deloitte visited our campus for virtual recruitment for batch 2021(For Both M.Tech and B.Tech). This whole process comprised 3 rounds (1Aptitude,… Read More
Round 1(Online Assessment and Coding Challenge–90 minutes): This assessment consisted of two different online programmatic sets of coding challenges and both are important and have… Read More
Given two strings S and T of length N and M respectively, the task is to find the smallest string that is divisible by both… Read More
In this article, we will learn how to run the same function in parallel with different parameters. We can run the same function in parallel… Read More
Everyone found an easy way for pattern printing in other programming languages. But its a tough task using R language . This article focuses on… Read More
CSV stands for ‘Comma-Separated Values‘. It means the data(values) in a CSV file are separated by a delimiter i.e., comma. Data in a CSV file… Read More
GUI(Graphical User Interface) helps users with better understanding programs. In this article, we will visualize Merge Sort using JavaScript. We will see how the arrays… Read More
React JS is a powerful JavaScript library for building user interfaces, and it provides a flexible and efficient way to create reusable components. One common… Read More
Constant variable the name itself says that it is constant. We have to define a constant variable at the time of declaration. After that, we… Read More
Prerequisites: Beautifulsoup Beautifulsoup is a Python library used for web scraping. BeautifulSoup object is provided by Beautiful Soup which is a web scraping framework for… Read More
In general terms, SQLi is the most prevalent and dangerous code insertion technique.  An SQLi attack is meant to send malicious SQL commands to the… Read More
CSV file stores tabular data (numbers and text) in plain text. Each line of the file is a data record. Each record consists of one… Read More
Prerequisites: Matplotlib Matplotlib has many built-in Colormaps. Colormaps are nothing but the dictionary which maps the integer data/numbers into colors. Colormaps are used to differentiate… Read More
Meteogram is also known as Meteorogram which is a graphical representation of one or more meteorological variables with respect to time, whether observed or forecast… Read More
Selenium is a tool that provides APIs to automate a web application to aid in its testing. In this article, we discuss the use of… Read More
Prerequisite: Python GUI – tkinter Python provides a standard GUI framework Tkinter which is used to develop fast and easy GUI applications. Here we will… Read More
Prerequisites: Numpy  NumPy is a general-purpose array-processing package. It provides a high-performance multidimensional array object and tools for working with these arrays. This article depicts… Read More
The JavaScript Date setTime() Function is a built-in Function in Javascript that is used to get a date object by adding given milliseconds to the… Read More
Prerequisites: Pandas A header of the CSV file is an array of values assigned to each of the columns. It acts as a row header… Read More
In Java, the Stream interface has a map() and flatmap() methods and both have intermediate stream operation and return another stream as method output. Both… Read More