All Medium Articles
Machine Coding Round: 1.5 hours Design a Ride Sharing Application where drivers can offer rides (origin, destination, no of seats), riders can request rides (… Read More
The id attribute is a unique identifier which is used to specify a document. The id attribute is used using #(hash) symbol followed by id.… Read More
What is White Hat SEO? White hat SEO (Search Engine Optimization) aims to furnish search engines with relevant information about the content on the site… Read More
Bootstrap allows us to align elements by using the utility class float. As we want to align the button to the right side of the… Read More
Have you ever wondered how one can send creative colorful email templates? In this article, we will create a basic email template using HTML and… Read More
Given an array arr[] of N non-negative integers. The task is to count the number of triplets (i, j, k) where 0 ? i <… Read More
Given an integer N, the task is to print the first N terms whose sum of digits is a multiple of 10. First few terms… Read More
Given three integers a, b and N where a and b are the first two terms of the XOR Fibonacci series and the task is… Read More
Online Coding Round: The online test for Salesforce was quite simple there were 3 very simple questions Q1) You were given a matrix and check… Read More
Given an undirected unweighted graph. The task is to find the length of the shortest cycle in the given graph. If no cycle exists print… Read More
There are a total of 4 rounds Round 1: Least common ancestor Contiguous subarray with maximum sum (Kadane’s algo) Round 2: Design google sheets with… Read More
Given an array arr[] of integers, the task is to find the count of permutation of the array such that the permutation is in increasing… Read More
Pointers in Go programming language or Golang is a variable which is used to store the memory address of another variable. Pointers in Golang are… Read More
The each_with_index function in Ruby is used to Iterate over the object with its index and returns value of the given object. Syntax: A.each_with_index Here,… Read More
When a relation in the relational model is not appropriate normal form then the decomposition of a relation is required. In a database, breaking down… Read More
The console.warn() function from console class of Node.js is used to display the warning messages on the console. It prints to stderr with newline. Note:… Read More
Sometimes, while working with Python lists, we might have a problem in which we need to find that a list is a Matrix or a… Read More
Round 1: Three coding questions based on basic programming logic. I did two questions completely. Few test cases for third questions passed. I cleared the… Read More
Pre-requisite: Majority Element, Majority Element | Set-2 (Hashing)Given an array of size N, find the majority element. The majority element is the element that appears… Read More
The String hashCode() method returns the hashcode value of this String as an Integer. Syntax: public int hashCode() For Example: import java.io.*;    class GFG… Read More