All Basic Articles
The stat is a  command which gives information about the file and filesystem. Stat command gives information such as the size of the file, access… Read More
In this article, we will learn how to iterate through a list of dictionaries.  List of dictionaries in use: [{‘Python’: ‘Machine Learning’, ‘R’: ‘Machine learning’}, … Read More
Working with dates and times is a common task in programming, and Python offers a powerful datetime module to handle date and time-related operations. In… Read More
In this article, we will discuss how to create a duplicate of the existing file in Python. Below are the source and destination folders, before… Read More
OpenVAS, an endpoint scanning application and web application used to identify and detect vulnerabilities. It is widely used by companies as part of their risk… Read More
Given an input string, our task is to write a program to sort the words in alphabetic order using Python. Examples: Input : “geeks for… Read More
JavaScript library is pre-written collection of code snippets, objects, and functions so that we can reuse the functions, objects, and code snippets to perform a… Read More
Animations in React Native: React Native has an Animated API that handles animations in the app. It has various functions to create most types of… Read More
AQUATONE is a set of tools used for performing reconnaissance, scanning, and discovery o domain names. AQUATONE can discover subdomains on a given target domain… Read More
In this article, we are going to convert timestamps to datetime using the to_datetime() method from the pandas package. A timestamp is encoded information or… Read More
Garuda Linux is a rolling distribution that is based on the Arch Linux operating system, except, like Arch Linux, Garuda Linux comes with a graphical… Read More
The total_seconds() function is used to return the total number of seconds covered for the specified duration of time instance. This function is used in… Read More
The weekday() of datetime.date class function is used to return the integer value corresponding to the specified day of the week. Syntax: weekday() Parameters: This… Read More
Sparse matrices are those matrices that have the most of their elements as zeroes. scipy.sparse is SciPy 2-D sparse matrix package for numeric data. It… Read More
The Dumbbell Plot shows the change between two points in our dataset. It is named so because of its Dumbbell shape. It helps us to… Read More
Using Fused Location API to Retrieve Current Location Have you ever seen the movement of taxis on the roads while on their way to your… Read More
In this article, we are going to learn to place an image on the touched coordinates on the screen. We can insert multiple images on… Read More
Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is… Read More
The advantages of using strict mode in javascript are (A) Strict mode eliminates some JavaScript silent errors by changing them to throw errors. (B) It… Read More
What will be the output of the following code snippet let data=’false’; data?console.log(‘first statement’):console.log(‘second statement’); (A) first statement (B) Second statement (C) Can’t say (D)… Read More