All Medium Articles
Given two integers A and B representing coordinates of a point in the first quadrant, the task is to find the minimum number of steps… Read More
Quicksort: Quick sort is an Divide Conquer algorithm and the fastest sorting algorithm. In quick sort, it creates two empty arrays to hold elements less… Read More
In this article, we are going to build a grocery application in android using android studio. Many times we forget to purchase things that we… Read More
The provider package is an easy to use package which is basically a wrapper around the InheritedWidgets that makes it easier to use and manage.… Read More
Given an array arr[] of size N, the task is to find the minimum count of adjacent swaps required to rearrange the array elements such… Read More
Question 1. Integrate the following integrals with respect to x:(i) ∫ x4 dx Solution:   ∫ x4 dx = x4+1/(4+1) + Constant = x5/5 +… Read More
Given three positive integers N, M, and A, the task is to count the number of rectangles with area equal to A present in an… Read More
Generally, one can not do inline styling with media queries because React doesn’t allow us to use media queries in inline styling. We can use… Read More
I contacted a recruiter at Intuit through email, sharing my resume and soon I got information about the further steps. The process consisted of 1… Read More
Online test Three questions were there(Difficulty level – Easy , medium). Ques1 – based on arrays Ques2 – based on strings Ques3 – based on… Read More
Accenture Conducted an Off Campus Drive in the month of December 2020. (Direct Hiring 2021) Virtual Recruitment Accenture offered two roles:1. Application Development Associate2. Application… Read More
Full Creative, Chennai visited our Campus for full-time recruitment and internships. It happened in the month of December. There were totally 4 rounds.Round 1 –… Read More
Screening round: This round includes 30 aptitude questions followed by 4 coding questions. The time duration for 30 aptitude questions was 30 minutes( you have… Read More
Given an array arr[] consisting of N integers, representing the length of the sticks, the task is to find the maximum sum possible of all… Read More
Given an array arr[] consisting of first N natural numbers, construct an undirected graph using the array elements such that for any array element, connect… Read More
Given a matrix of size M x N consisting of integers, the task is to print the matrix elements using Breadth-First Search traversal. Examples: Input:… Read More
Given two arrays arr1[] and arr2[] of equal length, the task is to find the maximum sum of any subset possible by selecting elements from… Read More
The basic foundation of a data communication system for the internet is HTTP (Hypertext Transfer Protocol) which is an application layer protocol, distributive and collaborative,… Read More
VList is a data structure that combines fast indexing of arrays with the easy extension of singly-linked lists. VList generally supports the following functions. Insert… Read More
We can set Parent State from Children Component in ReactJs using the following approach. Prerequisite: State introduction in ReactJS We will actually set the state… Read More