All Basic Articles
There is a set of generic APIs in UNIX which is used to manipulate files. One of these APIs is the open API. The open… Read More
In this article, we will discuss the unsigned long long int data type in C++. It is the largest (64 bit) integer data type in… Read More
Given two integers X and Y, representing Bitwise XOR and Bitwise AND of two positive integers, the task is to calculate the Bitwise OR value… Read More
1. Array in C : An array is collection of similar data items accessed by a common name stored at continuous memory locations. The elements of… Read More
Type Casting is the method to convert the Python variable datatype into a certain data type in order to perform the required operation by users.… Read More
ArrayList of arrays can be created just like any other objects using ArrayList constructor. In 2D arrays, it might happen that most of the part… Read More
Given an Octal number as input, the task is to convert that number into its Binary equivalent number. Example: Input: Octal Number = 513 Output:… Read More
Write a program that generates a random number and asks the user to guess what the number is. If the user’s guess is higher than… Read More
A Palindrome String is a string whose reversed string is equal to the original string. In this Java Program, we are going to see the… Read More
Have you ever encountered a scenario where you wanted your Python application to pause or run for a predetermined amount of time? You’re not by… Read More
Prerequisite: Pandas  In this article, we will learn how to add a new column with constant value to a Pandas DataFrame. Before that one must… Read More
Prerequisites: Pandas A bar chart represents categorical data with corresponding data values as rectangular bars. Usually, the x-axis represents categorical values and the y-axis represents… Read More
Matplotlib is a library in Python used to create figures and provide tools for customizing it. It allows plotting different types of data, geometrical figures.… Read More
Prerequisites: Python pillow PIL is the Python Imaging Library which provides the python interpreter with an in-depth file format support, an efficient internal representation, and… Read More
Prerequisite:  Python GUI – tkinter Python provides a Tkinter module for GUI (Graphical User Interface). In this article, we are going to see how to… Read More
The limitations of the Superscalar processor are prominent as the difficulty of scheduling instruction becomes complex. The intrinsic parallelism in the instruction stream, complexity, cost,… Read More
LTRIM() : This function in MySQL is used to remove leading spaces from a string. Syntax : LTRIM(str) Parameter : It accepts one parameter as… Read More
<i> Tag is like putting something in italics just for looks, while <em> Tag is for adding real emphasis or importance to the text, indicating… Read More
Introduction : In a microprocessor system, there are two methods of interfacing input/output (I/O) devices: memory-mapped I/O and I/O mapped I/O. In memory-mapped I/O, input/output… Read More
While loop arises into play where beforehand there is no conclusive evidence that how many times a loop is to be executed. This is the… Read More