All Basic Articles
Given an integer l and a tree represented as an undirected graph rooted at vertex 0. The task is to print the number of nodes… Read More
Consider the following C program: #include<stdio.h>    int r(){  int static num=7;  return num--; }    int main() {         for(r();r();r()) {   printf("%d ",r());   };… Read More
In 16-bit 2’s complement representation, the decimal number −28 is: (A) 1111 1111 0001 1100 (B) 0000 0000 1110 0100 (C) 1111 1111 1110 0100… Read More
In the given diagram, teachers are represented in the triangle, researchers in the circle and administrators in the rectangle. Out of the total number of… Read More
“A recent High Court judgement has sought to dispel the idea of begging as a disease – which leads to its stigmatization and criminalization –… Read More
Given an array, a[] consists of only 0 and 1. The task is to check if it is possible to transform the array such that… Read More
As defined by C standards, the for loop syntax is: for (initialisation; condition; increment/decrement) ... Syntactically, there should be two semicolons, one opening parenthesis, one… Read More
The function that is called with the varying number of arguments is known as variadic function. Or in other words, a user is allowed to… Read More
Lex is a computer program that generates lexical analyzers and was written by Mike Lesk and Eric Schmidt. Lex reads an input stream specifying the… Read More
Given a string, write a Python program to split the characters of the given string into a list using Python. In this article, we will… Read More
Edge Technology aims at making Internet Of Things (IOT) with 100 thousand of sensors in next decade, with the increased usage and manipulation of large… Read More
In this post, we are going to discuss several approaches on how to drop rows from the dataframe based on certain conditions applied to a… Read More
Reader’s View: Reader’s View is a feature that removes all the unnecessary things from the webpage like buttons, ads etc and changes the layout of… Read More
The <php is used to identify the start of a PHP document. In PHP whenever it reads a PHP document, It looks for: <?php ?>… Read More
Pandas series is a One-dimensional ndarray with axis labels. The labels need not be unique but must be a hashable type. The object supports both… Read More
The Input Range Object in HTML DOM is used to represent the HTML < input > element with type=”range”.  This object is used to access… Read More
scanf() It is used to read the input(character, string, numeric data) from the standard input(keyboard). It is used to read the input until it encounters… Read More
Plugin in WordPress is a component to add or extend functionality that can be enabled or disabled as required and makes no interference with the… Read More
Given an array A of N elements. Find the frequency of the smallest value in the array. Examples:  Input : N = 5, arr[] =… Read More
Given two string A and B which represents two integers, the task is to print the maximized value of A after replacing 0 or more… Read More