PayPal Interview Experience SE 2 Last Updated : 31 Aug, 2021 Comments Improve Suggest changes Like Article Like Report I got the opportunity to attend the interview through one of my closest friends' referral for a vacant position in his team. Round 1(1 hour): This was a DS and Algorithms round conducted by one of the SDE3s. Remove nth duplicate element from the given linked list. Eg: 1 -> 2 -> 3 -> 1 -> 2 -> 3 ->1 ->2 ->3, n=2 Here the nth(2nd) duplicate element in this list is 2. So return, 1 -> 3 -> 1 -> 3 -> 1 -> 3 Write a program to read all the files in the given directory and returns a dictionary (JSON-like structure) that contains occurrences of every word in each of its respective file names. JavaScript //Eg: { "hello" : { "file1.txt": 2, "file2.txt": 6 }, "world" : { "file2.txt": 3, "file10.txt": 7 }, } How do message queues work (Focused on Kafka and Zookeeper) and their uses with a real-time example? Explain one of the projects that you have worked on in your previous company. Some basic questions on Python (Available inbuilt data structures, default debugger module available, etc). PS: This hiring was specifically for Engineers skilled in Python Django, ReactJS, and Java. Though I don't know Django, the interviewer was fine. Round 2(1 hour): This round was conducted by one of the Engineering Lead members from the US office. This round was like pair programming which was to basically design (Low Level) a payments application with the following use cases. I was not paired with any other candidate. The interviewer himself acted as my pair and helped me whenever I got stuck in the middle. Users can add credit cards.Check if it is a valid credit cardMake transactions/transfers from one user to another.Check if the balance is available from the source account and then allow to transfer money to others who have linked their cards. Proper logging and error handling. He expected a full working code with proper test cases. Round 3(10 minutes): This was conducted by the Hiring Manager. Why are you looking for a job change?Discussions on my work with previous projects in previous companies. Comment More infoAdvertise with us Next Article Paytm Interview Experience | Set 16 N Nikhilesh Subramania Follow Improve Article Tags : Interview Experiences Experiences PayPal Marketing Practice Tags : PayPal Similar Reads PayPal Interview Experience for SE 2 Round 1: Online Coding Challenge It was held in HackerRank platform with 2 questionsEasy question with 50 Mark & Hard question with 100 markOne of the questions was Beautiful Numbers and I don't remember the other question. https://www.hackerearth.com/problem/algorithm/beautiful-numbers-05de0f51 2 min read PayPal Interview Experience for SDE-3 There was a total of 3 rounds of interviews. Round 1(Online Test): I got a Hacker earth test link. There were 3 questions of easy and medium. The problem in this test is we need to get input, parse it and then write the code logic. I spent more time on getting the input and parsing it rather than wo 1 min read PayU Interview Experience | Set 8 Round 1: It was a coding round held in our campus. There were 30 Java MCQ's on OOPs concepts and spring framework. There were some questions on Java Beans too. Additionally, There were 5 coding questions. 2-3 coding questions were enough to be selected for further round. Round 2: Round 2 and 3 were 1 min read PayU Interview Experience | Set 8 Round 1: It was a coding round held in our campus. There were 30 Java MCQ's on OOPs concepts and spring framework. There were some questions on Java Beans too. Additionally, There were 5 coding questions. 2-3 coding questions were enough to be selected for further round. Round 2: Round 2 and 3 were 1 min read Paytm Interview Experience | Set 16 I was contacted by the HR on LinkedIn about the opening of Full Stack Developer at PayTM Noida. 1st Round (Duration - 2 hours) Tell me about yourself. Discussions on the projects in my current organization. What were my roles and responsibilities? In depth discussion on the project architecture, dat 2 min read Paytm Interview Experience | Set 30 Round 1: Online Coding Round First round is an online programming round with 2 questions.Given an array of elements and change the array in such a way that all the elements on the array are distinct. if you are replacing a value, then the replacing value should be great than the previous value and a 2 min read Like