PayTm Interview Experience | Set 23 (For 2 Years Experienced) Last Updated : 11 Mar, 2018 Comments Improve Suggest changes Like Article Like Report Round 1: First round was taken on mettl, online judge. There was two questions and that required to be done in 1hr 1. A paragraph which contained some dates in format DD-MM-YYYY, find number of distinct years in the paragraph. For e.g Some random words with date 12-01-1990 and some more words with date 12-12-2017 and again some random words with same date 12-05-1990 Output will be: 2 Since two different years (1990 and 2017) 2. Given an array containing positive integers. Find count of magic numbers in the array. A magic number is that number which can be expressed as sum of two numbers and those two numbers should be reverse of each other. For e.g 22 is magic number which can be expressed as 11+11, 121 is magic number which can be expressed as 29+92 Input: [4, 22, 121, 13] Output: 3 Round 2: Round 2 was F2F. 1. Write a function to clone a link list with random pointers. Expected complexity was O(N) with O(1) space 2. What are MySQL engines ? 3. What is load balancer ? 4. What is session and cookies ? How sessions are maintained and how these values are passed from client to server ? 5. How to handle high request per second (distributed systems)? 6. Write mysql query to find 2nd highest salary. Round 3: In this round there were discussions on current employment and the projects. Discussion on DB designs and some modules. Some questions on AngularJS(I have experience in that, thats why) 1. Given a long string and an array of words. Find the minimum window in the string where all the words in given array are present in that window. For e.g if string is A B B A C E Y I J A B Array is [ B, I, Y ] So the output will be 7, 11 Where 7 is starting index and 11 is end index of window. Comment More infoAdvertise with us Next Article Paytm Interview Experience | Set 13 (For Experienced) Anonymous Improve Article Tags : Interview Experiences Experienced Experiences Paytm Practice Tags : Paytm Similar Reads Paytm Interview Experience | Set 12 (For 1.5 Years Experienced) I want to share my interview experience with Paytm with all of you. Round-1 [1.5 hr] Brief introduction Discussion about project why are you using Fluentd(EFK) in place of Logstash(ELK) Question on Elastic Search [Based on my project] Given a binary tree, write a function to print its top and bottom 1 min read Oyo Interview Experience | 3 years Experienced for SDE-2 Shared my resume on LinkedIn with HR. 4th round was Behavioural round. Round 1: Design bookmyshow. Round 2: Given inorder and post order traversals, construct the binary tree. Find first missing positive integer from a given array. Round 3: Make leaves of binary tree, doubly linked list and remove f 1 min read Paytm Interview Experience | Set 13 (For Experienced) 1st Round : Machine Coding Round It was machine coding round having two coding questions. Based on tree. (Solved using Brute force, didn't pass all test case.) Array and HashMap related problem. Solved in O(n) passed all test case. 2nd Round: Tech Interview Reverse linked list and some basic algorit 2 min read Paytm interview experience | Set 26 (Experienced) Round 1: Excel sheet column number representation Max profit in buy sell stock. Acid property of databases Hashmap implementation Swap linkedlist in pair of k Clustered indexes Isolation levels in SQL server Diff between hashing and encryption Round 2: Design notification system Sort array of 0s and 1 min read PayU Interview Experience | 2+ Years Experienced I received an email from a recruiter to schedule the virtual interviews. The recruiter informed me that each round would be an elimination round, meaning that if I did not perform well, they would not proceed to the next round. Three rounds were planned in total. [2 technical + 1 (Technical + Manage 2 min read Paytm Interview Experience | Set 28 (For Software Developer) Round 1: The first round was a coding round with 2 questions on mettl: Write a program to find sum of first largest k elements from a given array of integers.GeeksforGeeks Link  You have to make a necklace with pearls. Minimum number of pearls that can be used is 1 and maximum is n. Each pearl has a 2 min read Like