All Medium Articles
Pre-requisite: Vectors in C++Slicing a vector means to make a subvector from a given vector. Given N integers in a vector arr and to positive numbers… Read More
  I’am pursuing 3rd year in electronics and communication engineering.  Round 1:  First we had a coding round online which was conducted in hackerrank platform… Read More
Prerequisites: Turtle Programming in Python Turtle is a Python feature like a drawing board, which let us command a turtle to draw all over it!… Read More
Prerequisite – Addressing Modes 1. Implied Addressing Mode : In implied addressing mode, the operands are specified implicitly in the definition of the instruction. All the instructions… Read More
Prerequisite – Relational Algebra 1. Selection : This operation chooses the subset of tuples from the relation that satisfies the given condition mentioned in the… Read More
Food Ordering System is actually a type of software that allows the manager of restaurants to manage and accept the placed orders over the Internet… Read More
1. Spatial Data Mining : Spatial data mining is the process of discovering interesting and previously unknown, but potentially useful patterns from spatial databases. In… Read More
Data Model is an abstract model that represents the data objects, data flow between these data objects, and the interrelationship between these data objects. It… Read More
Prerequisite – Job Control Language (JCL) In RDBMS, SQL JOIN clause is used to join tables and perform multiple operations on it. To perform operations… Read More
Given a binary tree, the task is to traverse the Binary Tree in level order fashion.Examples:   Input: 1 / \ 2 3 Output: 1 2… Read More
Given a binary string S, and an integer K, the task is to find the minimum number of flips required such that every substring of… Read More
The Timers module in Node.js contains various functions that allow us to execute a block of code or a function after a set period of… Read More
Given 5 integers say A, B, C, D, and E which represents the cubic equation , the task is to find the integral solution for this… Read More
Given a number N, the task is to write C program to count the number of 0s and 1s in the binary representation of N.… Read More
Job Control Language(JCL) is a scripting language that describe jobs, to the Operating System that runs in the IBM large server(Mainframe) computers. JCL acts as… Read More
Given binary string str, the task is to build a DFA that accepts the string if the string either starts with “01” or ends with… Read More
The SVG Pattern element in HTML is used for drawing the different graphical designs or patterns. The patterns represent a graphical object which is used… Read More
Given string str, the task is to check whether the given string is a valid GUID (Globally Unique Identifier) or not by using Regular Expression.The… Read More
Readline Module in Node.js allows the reading of input stream line by line. This module wraps up the process standard output and process standard input… Read More
Introduction Here, we will be explaining the (keyup) event and options that can be used with (keyup) in Angular2. There are various options that can… Read More