All Medium Articles
Prerequisites: Image Processing in Java – Read and Write Image Processing In Java – Get and Set Pixels Image Processing in Java – Colored Image… Read More
Java.util.zip.DeflaterInputStream class in Java This class implements an output stream filter for compressing data in the “deflate” compression format. It is also used as the… Read More
A PrintStream adds functionality to another output stream, namely the ability to print representations of various data values conveniently. Unlike other output streams, a PrintStream… Read More
Java.io.PrintWriter class in Java | Set 1 More methods: PrintWriter printf(Locale l, String format, Object… args) : A convenience method to write a formatted string… Read More
Java PrintWriter class gives Prints formatted representations of objects to a text-output stream. It implements all of the print methods found in PrintStream. It does… Read More
  A process can be of two types: Independent process. Co-operating process. An independent process is not affected by the execution of other processes while… Read More
Given a number n. The task is to find the smallest number whose factorial contains at least n digits.Examples:   Input : n = 1 Output… Read More
Given a number n, find the last non-zero digit in n!.Examples:   Input : n = 5 Output : 2 5! = 5 * 4 *… Read More
It was really good experience at Qualcomm. I was interviewed for Associate Software Engineer and have an experience of an year, first by telephonic round… Read More
Given a directed Eulerian graph, print an Euler circuit. Euler circuit is a path that traverses every edge of a graph, and the path ends… Read More
The classical Sieve of Eratosthenes algorithm takes O(N log (log N)) time to find all prime numbers less than N. In this article, a modified… Read More
Given two arrays of positive integers of size m and n where m > n. We need to maximize the dot product by inserting zeros… Read More
Given a Binary tree and a sum S, print all the paths, starting from root, that sums upto the given sum. Note that this problem… Read More
I recently applied for the position of an intern as a software developer. Here is my interview experience in brief: The whole interview was classified… Read More
I would like to share my GS interview experience with the prospect of helping upcoming batches. Round 1 – Resume based shortlisting – Basically add… Read More
The complex library implements the complex class to contain complex numbers in cartesian form and several functions and overloads to operate with them. real() –… Read More
  Recently ShopClues came to our college for Software Developer Position. Here I am sharing my interview experience. There was 1 online round and 4… Read More
Given a plain-text message and a numeric key, cipher/de-cipher the given text using Rail Fence algorithm. The rail fence cipher (also called a zigzag cipher) is… Read More
Given a positive integer n. Find the minimum number which divide n to make it a perfect square.Examples:   Input : n = 50 Output :… Read More
Reverse words in a given string Number Formation Overlapping rectangles Ugly Numbers Column name from a given column number Stock buy and sell Non Repeating… Read More