All Medium Articles
Question 10:Find the output of the following program: Which of these about a dictionary is false? (A) The values of a dictionary can be accessed… Read More
Question 1:Find the output of the following program: D = dict()  for x in enumerate(range(2)):      D[x[0]] = x[1]      D[x[1]+7] = x[0]  print(D)  (A) {0: 1,… Read More
An exploit is a bit of programming, a piece of information, or a grouping of commands that exploits a bug or weakness to make unintended… Read More
Lodash _.merge() method is used to merge two or more objects starting with the left-most to the right-most to create a parent mapping object. When… Read More
SUBSTRING_INDEX() function in MySQL is used to return a substring from a string before a specified number of occurrences of the delimiter. Syntax : SUBSTRING_INDEX(… Read More
Round 1: Mcqs and 2 coding. I ran all the test cases for one code and 10/19 test cases for the other one. Platform was… Read More
Flipkart visited our campus(virtually 🙂 ) in September for the Campus Hiring Program (the SDE intern class of 2021). The process continued over the period… Read More
Given an integer N, the task is to find the number of ways to get the sum N by repeatedly throwing a dice. Examples: Input:… Read More
Given two numbers A and B, the task is to print the string of the smallest possible length which evaluates to the product of the… Read More
Given an integer N, the task is to find the number of prime numbers up to N that can be expressed as a sum of… Read More
Given an integer N, the task is to write Java Program to print the first N natural numbers in increasing order using two threads. Prerequisite:… Read More
Given a string S of valid parentheses sequence of length N and an even integer K, the task is to find the valid parentheses sequence… Read More
Given a binary tree and an integer K, the task is to count the possible pairs of leaf nodes from the given binary tree such… Read More
Given two integers N and X, the task is to find the count of all possible N digit numbers whose every single digit is a… Read More
Given two matrices mat1[][] and mat2[][] of size NxN. The task is to find if the given two matrices are mirror images of one another.… Read More
HTML:  HTML stands for Hyper Text  Markup Language. It is used to design web pages using a markup language. HTML is a combination of Hypertext… Read More
In this article, we will create the guess the number game. In which the computer will select a random number between 1 and 20 and… Read More
Round 1: This round had 3 questions. The questions were modifications of the below problems Given a set of N strings is said to be… Read More
Round 1: Two questions were asked in this round. It was an online round. Questions were modifications of the problem- LCS of 2 strings using… Read More