All Easy Articles
We can Decrypt any PDF using Java by using the external library PDFBox. We can Decrypt and remove the Access Permission from any PDF using… Read More
Encryption is the process of converting information or data into a secrete code, especially to prevent unauthorized access. In these cases also we will do… Read More
Abstraction by Parameterization and specification both are important methods in Java. We do this in hope of simplifying our analysis by separating attributes and details… Read More
Java Concurrency package covers concurrency, multithreading, and parallelism on the Java platform. Concurrency is the ability to run several or multi programs or applications in… Read More
Java offers a lot of Operators and one such operator is the Ternary Operator. It is a linear replacement for an if-else statement. Thus, it… Read More
As the name suggests where there is an execution to be operated required to deal with digits of the number, the modulo operator plays a… Read More
A File is an abstract path, it has no physical existence. It is only when “using” that File that the underlying physical storage is hit.… Read More
Collection is a set of objects that hold references to other objects in the program. In doing the same we already have studied a data… Read More
Reverse Polish ‘Notation is postfix notation which in terms of mathematical notion signifies operators following operands. Let’s take a problem statement to implement RPN Problem… Read More
Given a string S of valid parentheses “(“ and “)”, the task is to print the string obtained by removing the outermost parentheses of every… Read More
Given an array of strings arr[], the task is to count the number of distinct strings that can be generated from the given array by… Read More
It may sometimes seem easier to go through a set of data points and build insights from it but usually this process may not yield… Read More
Python offers multiple options for developing a GUI (Graphical User Interface). Out of all the GUI methods, tkinter is the most commonly used method. It… Read More
Pre-requisite – Introduction to Servlet Servlets are the Java programs that run on the Java-enabled web server or application server. They are used to handle… Read More
Given a string str of length N and a substring pattern of length M, the task is to find the frequency of occurrences of pattern… Read More
Round 1: TCS conducted an aptitude and verbal reasoning test on 3rd Oct 2020. The next day on 4th Oct, a coding round was conducted.… Read More
Given a 2D array houses[][] consisting of N 2D coordinates {x, y} where each coordinate represents the location of each house, the task is to… Read More
Given two integers L, R, and an integer K, the task is to print all the pairs of Prime Numbers from the given range whose… Read More
Tarjan’s Algorithm: The Tarjan’s Algorithm is an efficient graph algorithm that is used to find the Strongly Connected Component(SCC) in a directed graph by using… Read More
In this article, we will discuss Time-Space Trade-Off in Algorithms. A tradeoff is a situation where one thing increases and another thing decreases. It is… Read More