All Easy Articles
Solidity is a brand-new programming language created by Ethereum which is the second-largest market of cryptocurrency by capitalization, released in the year 2015 and led… Read More
In Dart programming, the List data type is similar to arrays in other programming languages. A list is used to represent a collection of objects.… Read More
Service generally includes set of various primitives. A primitive simply means Operations. A Service is specified by set of primitives that are available and given… Read More
Dart was traditionally designed to create single-page applications. And we also know that most computers, even mobile platforms, have multi-core CPUs. To take advantage of… Read More
QR code is a way of storing data in the form of two-dimensional representation. It is also a form of a barcode. Developed in 1994,… Read More
Sets in Dart is a special case in List where all the inputs are unique i.e it doesn’t contain any repeated input. It can also… Read More
Given an array A[ ] consisting of N positive integers, the task is to find the number of triplets A[i], A[j] & A[k] in the… Read More
ChemPy is a python package designed mainly to solve problems in analytical, physical and inorganic Chemistry. It is a free, open-source Python toolkit for chemistry,… Read More
Given a string S in the form of a sentence, the task is to find the word from the text with the maximum number of… Read More
Given a string in camel case, the task is to write a Java program to convert the given string from camel case to snake case… Read More
Testing Coding problems can sometimes become hectic. Here are some tips to use while testing Algorithmic Programming Problems. There are generally four major categories of… Read More
PUZZLE: Given a Circle and Six Straight Lines. What is the maximum number of pieces that one can cut the circle using these six straight… Read More
The collection Module in Python provides different types of containers. A Container is an object that is used to store different objects and provide a… Read More
From a mathematical foundation viewpoint, it can be said that the three pillars for data science that we need to understand quite well are Linear… Read More
The HTTP POST method is employed by the World Wide Web to send data to a server. This request method is characterized by the inclusion… Read More
PL/pgSQL is a block-structured language, therefore, a PL/pgSQL function or store procedure is organized into blocks. Syntax: [ <<label>> ] [ DECLARE declarations ] BEGIN… Read More
In Dart, one class can inherit another class i.e dart can create a new class from an existing class. We make use of extend keyword… Read More
CGI stands for Common Gateway Interface in Python which is a set of standards that explains how information or data is exchanged between the web… Read More
Given a Binary Tree, the task is to count all paths from root to leaf which forms an Arithmetic Progression. Examples:  Input:   Output: 2 Explanation: The paths… Read More
The auto keyword in C++ specifies that the type of the variable that is being declared will be automatically deducted from its initializer. In case… Read More