All Basic Articles
Regardless of any job profile or any company – ‘Tell Me About Yourself’, is undeniably the very first question that you often face in every… Read More
XLSX is a format/file extension for Open XML Spreadsheet file format used by Microsoft Excel. Transforming xlsx to csv (comma-separated file) is easy via command… Read More
Every operating system provides a feature of multiple user accounts. Linux-based operating systems have some commands or functionalities to check user accounts’ details and change… Read More
Python is one of the most loved programming languages today. Shockingly, Python has overtaken Java in the list of top programming languages and is now… Read More
This app will convert a Decimal Number into a Binary Number. Some people may also have written a java program to convert a Decimal Number… Read More
Sometimes we need to move an entire directory or maybe there is a list of such directories say A along with its sub-content, files, and… Read More
Given a string and two substrings, write a Python program to extract the string between the found two substrings. In Python we have multiple methods… Read More
In this article, we are going to see how to execute a script in SQLite using Python. Here we are executing create table and insert… Read More
In this article, we will discuss how to list all the tables in the SQLite database using Python. Here, we will use the already created… Read More
In this article, we’ll learn how to import data from a CSV file and store it in a table in the SQLite database using Python.… Read More
In this article, we are going to see how to count total changes since the SQLite database connection is open using Python. To get the… Read More
In this article, we will discuss how to create an empty vector and add elements into a vector in R Programming Language. An empty vector… Read More
In this article, we will learn how to convert a dataframe into a list of vectors, such that we can use columns of the dataframes… Read More
In this article, we are going to discuss cursor objects in sqlite3 module of Python. Cursor Object It is an object that is used to… Read More
Maybe you messed up with your current installation of Android Studio or maybe some nasty error came in even after restarting it several times, well,… Read More
The Android Interface Definition Language (AIDL) is analogous to other IDLs you would possibly have worked with. It allows you to define the programming interface… Read More
Bitwise logical operations are used to perform logical operations bit by bit in a number. This article discusses how bitwise logical operators are used in… Read More
To run a macro automatically when the workbook opens one must enable the developer’s tools in Microsoft Excel. What is a Macro in Excel Macros… Read More
In this article, we will discuss the difference between #define and #undef pre-processor in C language. What are Pre-Processor Directives? Pre-processor is a program that… Read More
DRY is simply an approach, or we can say, a different perspective to programmers. DRY stands for Don’t Repeat Yourself. In Java, it means don’t… Read More