(Translated by https://www.hiragana.jp/)
Paytm Interview Experience | Set 18 (For 2 Years Experienced) - GeeksforGeeks
Open In App

Paytm Interview Experience | Set 18 (For 2 Years Experienced)

Last Updated : 29 May, 2019
Comments
Improve
Suggest changes
Like Article
Like
Save
Share
Report

Hi all, below are the questions asked in paytm interview for 2yr experienced guy in java technology. I could remember these much only, although there were more questions.

  • Round 1:
    • Explained previous projects.
    • Interfaces vs abstract class
      interface i1 : void fun()
      interface i2 : int fun()
      interface i3 : Object fun(int x)
      class implementing all these interfaces has to implement all methods or one?

      interface i1 : void fun()
      interface i2 : void fun()
      interface i3 : void fun()
      now what will be the behavior if a class implement all interfaces?

    • Given m*n matrix containing 0s and 1s in sorted order. count the row with a maximum number of 1s.
    • Given a rod of length d. there is a price associated with every piece of rod. the buyer wishes to buy a rod of length n where there can be any number of cuts in it. find the no. of cuts required to get rod of length n with minimum cost to be paid.
    • Last question of the round with a choice to attempt only 1.
      • Given 8 balls out of which 1 is unequal. find it in a minimum number of comparisons.
        or

      • Given some integers. there can be only 3 operations to be performed on the integers i.e., add, subtract and concat. find minimum no. of operations to get number x (100).
  • Round 2:
    • Static synchronized and synchronized method, will both of them executed parallelly if called by different threads at the same time?
    • Set, hashmap implementations, linkedhashmap how it works. what is the threshold value of hashmap, load factor?
    • How to resize happens in hashmap.
    • When java structures the linked list entry buckets in a hashmap to tree? what kind of tree does it maintain? avl or rbtree?
    • What are the properties of the two trees?
    • Remote method invokation (rmi), socket?
    • Find nth largest from stream of integers. Hint: use partition algo to identify nth largest, loop till pivot is not equal to n.
    • C: what does printf return? what does scanf return?
    • Optimistic locking.
    • Thread pool executor. concurrent packages.
    • What is hibernate? why do we use it?
    • spring ioc, di.
    • Design patterns.
    • Given a 2-d plane with 3 coordinates which forms a triangle. given a point tell whether it is present inside triangle or not.
    • Thread states? difference between blocked and waiting state?
    • Java is pass by value or pass by reference?
    • Asked about previous projects.
  • Round 3:
    • Design a car parking system. there are slots, return the best slot for vehicle arrived, APIs, DB, classes etc. Also telling best slot should be less than o(n).
    • What all interfaces are there in collections? their implementations?
    • Stack queue in what package?
    • Singleton class, what if two threads access singleton at same time, what if constructor made accessible by reflection?
    • Asked about previous projects.
    • Heap implementations.
    • Implement arraylist using a data structure.
    • Heapsort methods with each taking how much time?

Didn’t got selected, attitude of the interviewers was like whatever they asked has to be answered and are god as know more than you. Although it taught a lot in the end.
Best of luck 🙂



Previous Article
Next Article

Similar Reads

PayTm Interview Experience | Set 23 (For 2 Years Experienced)
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 sa
2 min read
Paytm interview experience | Set 24 (1.5 years experienced)
I was interviewed at Paytm office, Noida for Backend Developer role in March 2018. Round 1: Discussion on current work and projects mentioned in the resume Given an array of n-2 elements. The range of elements is n and 2 elements are missing. Find them and write a code for the same Round 2: What are process and thread. Difference between the two. P
1 min read
Paytm Interview Experience | Set 11 (For 2 Years Experienced)
Round 1: Brief intro Discussion about Projects and work ex. Why are you using aerospike? Given a matrix sorted only row-wise, search a number in it. (Complexity O(log(m+n))). Round 2: Brief intro Discussion about project Why are you using aerospike? Design a hashmap. Relationship between equals() and hashcode(). Find a loop in linked list Given a s
2 min read
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 view. Round-2 [1 hr] Brief Introduction Given an
1 min read
Paytm Interview Experience (5 Years Experienced)
Round 1(Coding): Find the depth of JSON object. Given weight X, collect maximum stones from weight 1 to X, where don't repeat the stones which already available with you. Eg. X=10 and stones already available (1, 2, 5), then only two stones can be picked. (3, 4), (3, 6), (4, 6) Round 2: Given a 2D array find the sum of subarray on O(1) given the st
1 min read
Paytm Interview Experience For Experienced (2.5 years)
Round 1: Online Coding Round. There were two programming question which were supposed to be solved in 1 hour. Given two input String a, String b, return a string array which consists of word recommendation from string a that matches with string b in it. For example -> String a = "this is the best way to get the best knowledge out there." String
3 min read
Paytm Interview Experience (For 2 -3 years Experienced)
Recently I got a call from the Paytm Money HR team through one Job portal where I have put my profile. Feb 2021 There were total 4 rounds (online test+2 technical on Google Meet +HR) 1. Online Test: There were 2 coding questions asked and 1.5 hrs. Time was given to solve both the problems on the Mettl test platform. I had to implement alt+tab funct
4 min read
Paytm Interview Experience for Senior Software Engineer | 4 Years Experienced
Technical Round(1 hr): Asked about my current company projects and techstack usedwhat is thread? Synchronized keyword? Diff. ways of creating threads in java, which one is better? difference b/w multithreading & multiprogrammingWhat is txn in DBMS? ACID propertiesInternal implementation of map. How put of HashMap works? https://www.javatpoint.c
2 min read
Paytm Interview Experience for iOS Developer | 2 Years Experienced
Paytm - iOS Developer Round 1(Online Coding Round): 1 DSA question + 15 iOS basics questions DSA Question - Find the Longest palindrome in the given string iOS Questions - Queues, access specifiers, memory management, the output of the code, reference count ARC, closures, etc. Round 2(DSA + iOS Intermediate): What is the auto layout, when should we
1 min read
Paytm Interview Experience for Data Engineer ( 2 Years Experienced)
Round 1(Technical) [1hr]: IntroductionDiscussion on Project.Some SQL questions are easy to difficult level. likeRemove duplicates from the table.nth height item in each partition.In one table IPL team's name give and you have to find a combination of matches to be played between them with some conditions. = use self joinRunning aggregation on table
3 min read
Practice Tags :
three90RightbarBannerImg