Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Open Financial Technologies Private Limited Team. If you also belong to the team, you can get access from here

Filter interviews by

Open Financial Technologies Private Limited Interview Questions, Process, and Tips

Updated 5 Feb 2025

Top Open Financial Technologies Private Limited Interview Questions and Answers

View all 15 questions

Open Financial Technologies Private Limited Interview Experiences

Popular Designations

27 interviews found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 22 Aug 2022

I applied via LinkedIn and was interviewed in Jul 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic Testing question
  • Q2. Api testing questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Architecture of 3 tier app
  • Ans. 

    A 3 tier app has a presentation layer, application layer, and database layer.

    • Presentation layer handles user interface and input/output

    • Application layer processes logic and business rules

    • Database layer stores and retrieves data

    • Each layer communicates with the layer above and below it

    • Example: Web app with front-end (presentation), server-side code (application), and database (data)

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Frame work question related to test automation

Interview Preparation Tips

Interview preparation tips for other job seekers - Know ur basics strong and we ready for real time scenarios

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (9)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Nov 2022.

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 - One-on-one 

(2 Questions)

  • Q1. Abstract and interface difference
  • Ans. 

    Abstract classes are classes that cannot be instantiated and can have both abstract and non-abstract methods. Interfaces are a collection of abstract methods.

    • Abstract classes can have constructors, interfaces cannot

    • A class can implement multiple interfaces, but can only inherit from one abstract class

    • Interfaces can be used to achieve multiple inheritance in Java

    • Abstract classes can have instance variables, interfaces c...

  • Answered by AI
  • Q2. Current project
  • Ans. 

    I am currently working on a project to develop a web-based inventory management system.

    • Developing a user-friendly interface for managing inventory

    • Implementing database functionality to store and retrieve inventory data

    • Integrating with other systems to automate inventory updates

    • Creating reports and analytics to track inventory levels and trends

  • Answered by AI
Round 3 - Coding Test 

Sort array without using any inbuilt method?

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before May 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions on data structures
Round 2 - Behavioral 

(1 Question)

  • Q1. Second round was Managerial Round. The interviewer basically had a conversation with me and asked some hr questions also.
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (219)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Jun 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Scenarios base conding round

Round 2 - Coding Test 

Questions on strings in javascript.
Basic javascript and typescript.

Round 3 - One-on-one 

(1 Question)

  • Q1. Questions on cloud technologies
Round 4 - HR 

(1 Question)

  • Q1. Cultural fit and salary related discussion

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (219)

Open Financial Technologies Private Limited interview questions for popular designations

 Software Engineer

 (4)

 Senior Software Engineer

 (2)

 QA Engineer

 (2)

 Production Manager

 (1)

 Data Analyst

 (1)

 Software Developer

 (1)

 Test Engineer

 (1)

 Team Manager

 (1)

I applied via Job Portal and was interviewed in Apr 2022. There were 5 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 

It was simple program of url shorting for registered and non registered users each request must have unique shortened url.

Round 3 - Technical 

(2 Questions)

  • Q1. Palindrome implementation and run time
  • Ans. 

    A palindrome is a word or phrase that reads the same backward as forward. Implementing it involves comparing the first and last characters and iterating towards the middle.

    • Implement a function that takes a string as input and returns true if it is a palindrome, false otherwise.

    • Use two pointers, one starting from the beginning and the other from the end, and compare the characters at each position.

    • If the characters matc...

  • Answered by AI
  • Q2. DSA and various algorithms and run time
Round 4 - One-on-one 

(1 Question)

  • Q1. This round was one on one with VP of engineering. Basic q and a regarding role and responsibilities
Round 5 - HR 

(1 Question)

  • Q1. Relocation, Reason For job change, future plan, careers objective

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DSA and algorithms
In coding test they asked you explain code and if there is any improvement needed in code.

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (219)

Get interview-ready with Top Open Financial Technologies Private Limited Interview Questions

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 

(2 Questions)

  • Q1. Given integer of array print all the subarray whose s sum equals to k
  • Ans. 

    Print all subarrays whose sum equals to k given an integer array

    • Use a nested loop to iterate through all possible subarrays

    • Calculate the sum of each subarray and compare it with k

    • Print the subarray if the sum equals to k

  • Answered by AI
  • Q2. Basics of Android, Activity Service, Coroutines Fragments, Storage Options

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare from Easy to Medium level question and
basics of android

Skills evaluated in this interview

android Software Engineer Interview Questions asked at other Companies

Q1. Given integer of array print all the subarray whose s sum equals to k
View answer (1)

Jobs at Open Financial Technologies Private Limited

View all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic to intermediate SQL questions, Monitoring tool search queries, API questions, scenario based questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Scenario based questions and adaptability test
Round 3 - One-on-one 

(1 Question)

  • Q1. Behavioral assessment

Product Support Engineer Interview Questions asked at other Companies

Q1. What is DSP (Demand Side Platform) and SSP ( Sell side platform?
View answer (1)

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 29 Mar 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Intermediate level coding round

Round 2 - Technical 

(2 Questions)

  • Q1. Project explaination
  • Q2. Explain project ind detail
  • Ans. 

    Developed a predictive analytics model to forecast customer churn for a telecommunications company.

    • Collected and cleaned customer data from various sources

    • Performed exploratory data analysis to identify patterns and trends

    • Built a machine learning model using logistic regression to predict customer churn

    • Evaluated the model's performance using metrics such as accuracy, precision, and recall

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Open Financial Technologies Private Limited Data Analyst interview:
  • SQL
  • Python
  • Dashboards
Interview preparation tips for other job seekers - all the best

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)

I applied via Job Portal and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Network in linux and firewall questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good questions were asked
Based on use cases

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the String Problem Statement You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string. Example: Input: STR = "abcde" Output: "edcba" Input: The first line of input cont... read more
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Coding Test 

They have problem of K sorted array and you need to make an sorted array of it.

Round 2 - HR 

(2 Questions)

  • Q1. Your current job role
  • Q2. Software Developer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for the DSA and basic OOPs question.

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Open Financial Technologies Private Limited Interview FAQs

How many rounds are there in Open Financial Technologies Private Limited interview?
Open Financial Technologies Private Limited interview process usually has 2-3 rounds. The most common rounds in the Open Financial Technologies Private Limited interview process are One-on-one Round, Technical and Resume Shortlist.
How to prepare for Open Financial Technologies Private Limited 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 Open Financial Technologies Private Limited. The most common topics and skills that interviewers at Open Financial Technologies Private Limited expect are CRM, ERP Systems, Business Banking, Private Banking and Front End.
What are the top questions asked in Open Financial Technologies Private Limited interview?

Some of the top questions asked at the Open Financial Technologies Private Limited interview -

  1. Given integer of array print all the subarray whose s sum equals t...read more
  2. what is Class and object . explain hierarchial inheriten...read more
  3. How does Laravel request life cycle wor...read more
How long is the Open Financial Technologies Private Limited interview process?

The duration of Open Financial Technologies Private Limited interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Open Financial Technologies Private Limited Interview Process

based on 29 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

Razorpay Interview Questions
3.6
 • 154 Interviews
Revolut Interview Questions
2.5
 • 100 Interviews
Rupeek Interview Questions
3.7
 • 61 Interviews
Freecharge Interview Questions
3.8
 • 53 Interviews
ACKO Interview Questions
3.7
 • 50 Interviews
Yubi Interview Questions
3.0
 • 39 Interviews
Kissht Finance Interview Questions
3.9
 • 33 Interviews
Slice Interview Questions
3.2
 • 32 Interviews
Jupiter Money Interview Questions
3.3
 • 30 Interviews
View all

Fast track your campus placements

View all

Open Financial Technologies Private Limited Reviews and Ratings

based on 165 reviews

3.3/5

Rating in categories

3.1

Skill development

3.6

Work-life balance

3.5

Salary

3.0

Job security

3.3

Company culture

2.9

Promotions

3.1

Work satisfaction

Explore 165 Reviews and Ratings
Business Development Manager

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

Lead KYC and AML Risk Operations

Bangalore / Bengaluru

3-7 Yrs

Not Disclosed

Explore more jobs
Software Engineer
88 salaries
unlock blur

₹4.5 L/yr - ₹16.7 L/yr

Senior Software Engineer
62 salaries
unlock blur

₹11.2 L/yr - ₹31.5 L/yr

Business Development Specialist
24 salaries
unlock blur

₹4 L/yr - ₹10.5 L/yr

Product Support Engineer
23 salaries
unlock blur

₹1.5 L/yr - ₹10 L/yr

Product Manager
22 salaries
unlock blur

₹15 L/yr - ₹32 L/yr

Explore more salaries
Compare Open Financial Technologies Private Limited with

Rupeek

3.7
Compare

Razorpay

3.6
Compare

ACKO

3.7
Compare

Kissht Finance

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