Upload Button Icon Add office photos

Filter interviews by

Unlimint Interview Questions and Answers

Updated 25 Sep 2023

Unlimint Interview Experiences

2 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. HR took all details and experience and domain expertise.
Round 3 - Technical 

(3 Questions)

  • Q1. Technical domain expertise questions
  • Q2. SQL, JAVA AND HTML questions was there.
  • Q3. Expertise in fintech industry and ISO 8583 Protocol

Senior Engineer Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (57)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Coding Test 

Coding test little bit tricky and most of them not able to score marks in this round and got rejected. Recommended to try hacker rank coding test.

Round 3 - Technical 

(1 Question)

  • Q1. Technical questions was good and related to my domain and profile. It covers linux, database and ISO protocol. Little bit related to APIs
Round 4 - HR 

(1 Question)

  • Q1. Good and it's upto us how much we can negotiate.

Interview Preparation Tips

Interview preparation tips for other job seekers - Try hacker rank coding samples and try to read basics linux and good hands-on database basic

Senior Engineer Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (57)

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Spring and SpringBoot
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Binary search using Java 8
  • Ans. 

    Binary search is a fast search algorithm that finds the position of a target value within a sorted array.

    • Ensure the array is sorted before performing binary search.

    • Compare the target value with the middle element of the array.

    • If the target value is less than the middle element, search the left half of the array. If greater, search the right half.

    • Repeat the process until the target value is found or the subarray is empt

  • Answered by AI
  • Q2. Merge sort and it's implementation
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts them, and then merges them back together.

    • Divide the array into two halves recursively

    • Sort each half separately

    • Merge the sorted halves back together

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain microservices architecture in your project
  • Q2. Explain Zuul and filters
Round 2 - HR 

(2 Questions)

  • Q1. Why do you want to join TCS
  • Q2. What is your salary Expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well your resume

I applied via Referral and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Python programming questions
Python oops concepts based questions

Interview Preparation Tips

Topics to prepare for TCS Senior Engineer interview:
  • Python
  • Artificial Intelligence
  • Machine Learning
Interview preparation tips for other job seekers - Belive in yourself. Hardwork never fails at all
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. About your pacakge
  • Q2. About your family

Interview Preparation Tips

Interview preparation tips for other job seekers - Br prepared

I applied via Job Fair and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. We will face the questions relevant to our resume. Also my suggestion is to go with basics on your particular technology and general interview questions& answers from google before attempting interview.th...
Round 3 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Why are you looking for a change?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare more on basics and general interviews and answers on particular technology. If you prepare above things, I hope u may crack 60-70% easily. Thanks

I applied via Referral and was interviewed before Sep 2021. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Explain about past projects.
  • Q2. Technology on which you worked.
  • Ans. 

    I have worked on various technologies including Java, Python, AWS, and Docker.

    • Developed RESTful APIs using Java and Spring framework

    • Implemented machine learning models using Python and scikit-learn library

    • Deployed applications on AWS using EC2, S3, and RDS

    • Containerized applications using Docker for easy deployment and scaling

  • Answered by AI
  • Q3. C language basic but important concepts related to Data type, pointer, etc.
  • Q4. Python knowledge check.

Interview Preparation Tips

Interview preparation tips for other job seekers - Not too much hard. Most of the questions was related to past project.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Exceptions in plsql
  • Ans. 

    PL/SQL exceptions handle errors and manage control flow in Oracle databases, ensuring robust application behavior.

    • PL/SQL has predefined exceptions like NO_DATA_FOUND and ZERO_DIVIDE.

    • Custom exceptions can be defined using the EXCEPTION keyword.

    • Use the RAISE statement to trigger an exception manually.

    • Example: BEGIN SELECT salary INTO v_salary FROM employees WHERE emp_id = 100; EXCEPTION WHEN NO_DATA_FOUND THEN DBMS_OUTPU...

  • Answered by AI
  • Q2. How many types of triggers in plsql
  • Ans. 

    PL/SQL triggers are special procedures that automatically execute in response to certain events on a database table or view.

    • 1. DML Triggers: Execute on Data Manipulation Language events (INSERT, UPDATE, DELETE). Example: AFTER INSERT trigger to log changes.

    • 2. INSTEAD OF Triggers: Used on views to perform actions instead of the triggering action. Example: INSTEAD OF DELETE on a view.

    • 3. System Triggers: Triggered by syst...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What is the salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - Not to join as a fresher ..having some experienced mininimum 10 then switch in this company

Unlimint Interview FAQs

How many rounds are there in Unlimint interview?
Unlimint interview process usually has 3-4 rounds. The most common rounds in the Unlimint interview process are Resume Shortlist, Technical and HR.
How to prepare for Unlimint interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Unlimint. The most common topics and skills that interviewers at Unlimint expect are Financial Services, Payment Processing, Recruitment, Finance and JIRA.
What are the top questions asked in Unlimint interview?

Some of the top questions asked at the Unlimint interview -

  1. Technical questions was good and related to my domain and profile. It covers li...read more
  2. Good and it's upto us how much we can negotia...read more
  3. Expertise in fintech industry and ISO 8583 Proto...read more

Tell us how to improve this page.

Unlimint Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Paytm Interview Questions
3.3
 • 752 Interviews
PhonePe Interview Questions
4.0
 • 300 Interviews
PayPal Interview Questions
3.9
 • 207 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Mobikwik Interview Questions
3.7
 • 47 Interviews
BillDesk Interview Questions
3.2
 • 14 Interviews
Amazon Pay Interview Questions
4.1
 • 13 Interviews
Instamojo Interview Questions
3.6
 • 7 Interviews
View all

Unlimint Reviews and Ratings

based on 6 reviews

1.5/5

Rating in categories

1.6

Skill development

2.1

Work-life balance

2.8

Salary

1.4

Job security

1.4

Company culture

1.4

Promotions

1.4

Work satisfaction

Explore 6 Reviews and Ratings
Marketing
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Marketing Manager
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Unlimint with

Payed

2.7
Compare

Razorpay

3.6
Compare

Paytm

3.3
Compare

Mobikwik

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview