All Hard Articles
NODE-RED is a stream based advancement instrument for visual programming and basically its main focus on visual apparatus for wiring the Internet of Things. This… Read More
1. Hard Copy : Hard copy refers to the digital document file which is printed on paper or other material like transparency. In hard copy the… Read More
Given N items with weights W[0..n-1], values V[0..n-1] and a knapsack with capacity C, select the items such that:   The sum of weights taken into… Read More
Indexing is a technique used to reduce access cost or I/O cost, now the question arrives what is access cost? Access cost is defined as… Read More
Given two N-ary trees having M nodes each. Also, given their edges and their roots respectively. The task is to check if they are isomorphic… Read More
Computational graphs are a type of graph that can be used to represent mathematical expressions. This is similar to descriptive language in the case of… Read More
Given an array arr[] and an integer K, the task is to find the minimum number of operations required to change an array B of… Read More
Binary Space Partitioning is implemented for recursively subdividing a space into two convex sets by using hyperplanes as partitions. This process of subdividing gives rise… Read More
Given a starting string X of 3 characters, finishing string Y of 3 characters and an array of forbidden strings. The task is to find… Read More
In order to hack a password, we have to try a lot of passwords to get the right one. When an attacker uses thousands or… Read More
Given a string htmlCode which is HTML code of a webpage, the task is to find the missing end tag in the HTML code.Examples:  Input:… Read More
Given string str that represents a number. The task is to find all possible ways to split the given string such that each segment is… Read More
Given an integer N, the task is to find the N-th Fibonacci numbers.Examples:  Input: N = 3 Output: 2 Explanation: F(1) = 1, F(2) = 1 F(3) = F(1)… Read More
Given the data for Hotel management and User:Hotel Data:  Hotel Name Room Available Location Rating Price per RoomH1 4 Bangalore 5 100H2 5 Bangalore 5… Read More
Given a grid of size N*M consists of 0 and 1 only, the task is to find the length of longest connected 1s in the… Read More
The Pentanacci series is a generalization of the Fibonacci sequence where each term is the sum of the five preceding terms. The first few Pentanacci… Read More
Monolithic applications are built using different layers, a user interface  layer, a business layer, and a persistence layer. A central idea of a microservices architecture… Read More
Given an array arr[] of size N containing integers. The task is to find the length of the longest sub-array having sum equal to the… Read More
Given an integer N, the task is to determine whether it is possible to obtain the value N from 1 by repetitively multiplying by 10… Read More