All Medium Articles
Given an array and two numbers M and K. We need to find the max sum of sums of M subarrays of size K (non-overlapping)… Read More
This article will give you information about the company, its recruitment process, sample questions that have been asked previously, lots of experiences shared by other… Read More
In this article, we are going to see Pre-trained Word embedding using Word2Vec in NLP models using Python. What is Word Embedding? Word Embedding is… Read More
Prerequisite – Counters Problem – Design synchronous counter for sequence: 0 → 1 → 3 → 4 → 5 → 7 → 0, using T… Read More
For the given length n, find all n-length Strobogrammatic numbers. Strobogrammatic Number is a number whose numeral is rotationally symmetric so that it appears the… Read More
Prerequisite: Distance Vector Routing, Dijkstra algorithm Unicast means the transmission from a single sender to a single receiver. It is a point-to-point communication between the… Read More
An employee( alumnus of our college ) had taken CVs of interested students from CSE and IT department. A few students were shortlisted for the… Read More
Given two values n1 and n2 (where n1 < n2) and a root pointer to a Binary Search Tree. Print all the keys of tree… Read More
Problem – Write an assembly language program in 8086 microprocessor to find average of n eight bit numbers. Example – Algorithm – Assign value 500… Read More
Introduction: The 8255 microprocessor is an input/output (I/O) device that can be used to interface with various peripheral devices. It has three operating modes: mode… Read More
Given a string, the task is to find all the palindromic sub-strings from the given string.In Set – 1, another approach has been already discussed… Read More
Comments are used for explaining the code and are used in a similar manner as in Java, C or C++. Compilers ignore the comment entries… Read More
What is Arrow Function ? Arrow function {()=>} is concise way of writing JavaScript functions in shorter way. Arrow functions were introduced in the ES6… Read More
Given an array, the task is to compute the sum of all possible maximum area rectangles which can be formed from the array elements. Also,… Read More
Round 1:(45 minutes) There are 30 MCQs (no negative marking) was asked and focus on following topics (cocubes platform): Data Structures and Algorithms Operating System… Read More
Round 1:  First round was on HackerEarth consisting of MCQ’s (technical and aptitude both) with 2 coding questions. https://www.geeksforgeeks.org/given-an-array-of-numbers-arrange-the-numbers-to-form-the-biggest-number/ I don’t remember. 12 students were… Read More
Prerequisite – PL/SQL introductionA prime number is a whole number greater than 1, which is only divisible by 1 and itself. First few prime numbers… Read More
8086 Microprocessor 8086 Microprocessor is an advanced version of 8085 Microprocessor, designed by Intel in 1976. The number 8086 denotes the IC number of this… Read More
Given a number made of single digits, find its square. It may be assumed that the single digits are 3, 6 and 9. Numbers can… Read More
Given an unweighted directed graph, can be cyclic or acyclic. Print the number of shortest paths from a given vertex to each of the vertices.… Read More