All Basic Articles
Wait command is one of the process management commands. There are different process commands in Linux mainly 5 commands are widely used which are ps,… Read More
Yuki Chan is a free and open-source tool available on GitHub. Yuki Chan is an Automated Penetration Testing tool. This tool is very useful for… Read More
ATSCAN stands for Advance Web Application Scanner. ATSCAN is a free and open-source tool available on GitHub. ATSCAN is a vulnerability scanner tool. This tool… Read More
Query in SQL is like a statement that performs a task. Here, we need to write a query that will find the number of employees… Read More
File reading is quite an important task in a Programmer’s life as it makes some tasks quite comfortable and automates certain repetitive and time-consuming things.… Read More
In this article, we will discuss how to import an excel file in the R Programming Language. There two different types of approaches to import… Read More
Image transformation is a process to change the original values of image pixels to a set of new values. One type of transformation that we… Read More
In this article, we will discuss how to convert a DataFrame column to vector in R Programming Language. To extract a single vector from a… Read More
URLConnection Class in Java is an abstract class that represents a connection of a resource as specified by the corresponding URL. It is imported by… Read More
Whenever we are writing our classes we have to provide some information about our classes to the JVM like whether this class can be accessible… Read More
If two threads are waiting for each other forever such type of infinite waiting is called deadlock in java. Synchronized keyword is the only reason… Read More
Pygame window is a simple window like any other window, in which we display our game screen. It is the first task we do so… Read More
In this article, we will see how to replace specific values in a column of DataFrame in R Programming Language.  To replace specific values in… Read More
In this article, we are going to find the index of the elements present in a Numpy array. Using where() Method where() method is used… Read More
In this article, we will discuss how we get the number of elements in a Python list. Example Input: [1,2,3,4,5]Output: 5Explanation: No of elements in… Read More
Visualizing data can help gather insights from it that descriptive statistics can’t. Anscombe’s Quartet shows us how those statistics could be misleading, hence it becomes… Read More
SQLite is a C-language-based library that provides a portable and serverless SQL database engine. It has a file-based architecture; hence it reads and writes to… Read More
In this article, we will discuss how to Find the number of months between two dates in the R programming language.  Example: Input: Date_1 =… Read More
It is a frequent requirement to save our dataframe for portability after working on it on the auxiliary memory of the computer system using R… Read More
In this article, we are going to see how to create an empty vector in R Programming Language. There are five ways of creating an… Read More