Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Profinch Solutions Team. If you also belong to the team, you can get access from here

Profinch Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Profinch Solutions Technical Architect Interview Questions and Answers

Updated 29 Sep 2021

Profinch Solutions Technical Architect Interview Experiences

1 interview found

I applied via Referral and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. It was all technical related to the domain and the technology. The interviewers stick to the areas mentioned on the resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume cautiously so that there should not be anything which you don't know. Have your basics clear related to your Domain and Technology.
Try to be true throughout your interview process. The more true you will be the Easy the interview will be.

Interview questions from similar companies

I applied via Company Website and was interviewed in Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basics of Data structures
  • Q2. Basics on oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on Data Structures and oops concept in depth

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 mins
Round difficulty - Hard

There were questions related to DP and DFS.

 

  • Q1. 

    Trapping Rain Water Problem Statement

    You are given a long type array/list ARR of size N, representing an elevation map. The value ARR[i] denotes the elevation of the ith bar. Your task is to determine th...

  • Ans. 

    Calculate the total amount of rainwater that can be trapped between given elevations in an array.

    • Iterate through the array and calculate the maximum height on the left and right of each bar.

    • Calculate the amount of water that can be trapped at each bar by taking the minimum of the maximum heights on the left and right.

    • Sum up the trapped water at each bar to get the total trapped water for the entire array.

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 mins
Round difficulty - Medium

At first, I was asked about the different projects that I have done so far. We had a detailed discussion on the same.
He also checked my OOP concepts

  • Q1. Can you describe the process of designing an LRU Cache from scratch during your System Design Round?
  • Ans. 

    Designing an LRU Cache involves implementing a data structure that stores a fixed number of items and removes the least recently used item when full.

    • Start by defining the data structure for the cache, typically using a combination of a hashmap and a doubly linked list.

    • Implement methods for getting and setting key-value pairs in the cache.

    • When a new item is added to the cache, check if it exceeds the maximum capacity. I...

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a Singly Linked List of integers, your task is to reverse the Linked List by altering the links between the nodes.

    Input:

    The first line of input is an intege...
  • Ans. 

    Reverse a singly linked list by altering the links between nodes.

    • Iterate through the linked list and reverse the links between nodes

    • Use three pointers to keep track of the current, previous, and next nodes

    • Update the links between nodes to reverse the list

    • Return the head of the reversed linked list

  • Answered by AI
  • Q3. 

    Middle of a Linked List

    You are given the head node of a singly linked list. Your task is to return a pointer pointing to the middle of the linked list.

    If there is an odd number of elements, return the ...

  • Ans. 

    Return the middle element of a singly linked list, or the one farther from the head if there are even elements.

    • Traverse the linked list with two pointers, one moving twice as fast as the other

    • When the fast pointer reaches the end, the slow pointer will be at the middle

    • If there are even elements, return the one that is farther from the head node

    • Handle edge cases like linked list of size 1 or empty list

  • Answered by AI
Round 3 - Video Call 

Round duration - 60 mins
Round difficulty - Medium

It is HR + Technical round
asked about the Behavioural questions and how you justify yourself in an argument .questions related to current technology.
They gave me feedback on how well I had performed so far and gave me suggestions on what more can I do to further improve myself.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaGood ProjectsRazorpay interview preparation:Topics to prepare for the interview - Projects, Development, NoSQL, Data Structure, OOPS, DBMS, Algorithm.Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Be thorough about your projects
Tip 2 : Prepare Ds and Algo and Practice all standard questions 
Tip 3 : Know the complexities of the code that you’ve written.

Application resume tips for other job seekers

Tip 1 : Mention at least 2 projects.
Tip 2 : Don't make any silly spelling mistakes on resume

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 9 PM. Platform was not good. Platform was very lagging so overall it was bad experience.

  • Q1. 

    Find the Third Greatest Element

    Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.

    Input:

    The first line contains a single integer 'T' representing the numb...
  • Ans. 

    Find the third largest element in an array of distinct integers.

    • Sort the array in descending order and return the element at index 2.

    • Handle cases where the array has less than 3 elements separately.

    • Use a set to store distinct elements for efficient processing.

  • Answered by AI
  • Q2. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The task is to find the longest palindromic substring within STR. If there are several palindromic substring...

  • Ans. 

    Find the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found so far

    • Return the longest palindromic substring

  • Answered by AI
  • Q3. 

    Ninja and Geometry Problem Statement

    In this problem, Ninja is provided with two lines on a 2D plane. The first line 'AB' is determined by two points A and B. The second line 'PQ' is determined by two poi...

  • Ans. 

    Calculate the intersection point of two lines on a 2D plane with precision up to six decimal places.

    • Implement a function to calculate the intersection point of two lines on a 2D plane

    • Handle precision up to six decimal places in the output

    • Return -1.000000 -1.000000 if the lines do not intersect

    • Ensure the lines 'AB' and 'PQ' are distinct

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Do a course from Coding Ninjas.

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Add skills iff you are sure

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 9 PM. Platform was not good. Platform was very lagging so overall it was bad experience.

  • Q1. 

    Find the Third Greatest Element

    Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.

    Input:

    The first line contains a single integer 'T' representing the numb...
  • Ans. 

    Find the third largest element in an array of distinct integers.

    • Sort the array in descending order and return the element at index 2.

    • Handle cases where there are less than 3 elements in the array.

    • Consider edge cases like negative integers and duplicates.

  • Answered by AI
  • Q2. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Identify the longest palindromic substring in a given string.

    • Iterate through each character in the string and expand around it to find palindromes

    • Keep track of the longest palindrome found so far

    • Return the longest palindromic substring with the smallest start index

  • Answered by AI
  • Q3. 

    Ninja and Geometry Problem Statement

    In this problem, Ninja is provided with two lines on a 2D plane. The first line 'AB' is determined by two points A and B. The second line 'PQ' is determined by two poi...

  • Ans. 

    Calculate the intersection point of two lines on a 2D plane with precision up to six decimal places.

    • Implement a function to calculate the intersection point of two lines on a 2D plane

    • Handle precision up to six decimal places in the output

    • Return -1.000000 -1.000000 if the lines do not intersect

    • Ensure the lines 'AB' and 'PQ' are distinct

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 7 CGPAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Do a course from Coding Ninjas.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Timing was 9 PM. Platform was not good. Platform was very lagging so overall it was bad experience.

  • Q1. 

    Find the Third Greatest Element

    Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.

    Input:

    The first line contains a single integer 'T' representing the numb...
  • Ans. 

    Find the third largest element in an array of distinct integers.

    • Sort the array in descending order and return the element at index 2.

    • Handle cases where the array has less than 3 elements separately.

    • Consider using a set to ensure distinct elements in the array.

  • Answered by AI
  • Q2. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Identify the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found

    • Return the longest palindromic substring with the smallest start index

  • Answered by AI
  • Q3. 

    Ninja and Geometry Problem Statement

    In this problem, Ninja is provided with two lines on a 2D plane. The first line 'AB' is determined by two points A and B. The second line 'PQ' is determined by two poi...

  • Ans. 

    Calculate the intersection point of two lines on a 2D plane with precision up to six decimal places.

    • Use the formula for finding the intersection point of two lines in 2D space.

    • Handle precision issues that may arise due to floating-point arithmetic.

    • Return -1.000000 -1.000000 if the lines do not intersect.

    • Ensure the lines 'AB' and 'PQ' are distinct.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Do a course from Coding Ninjas.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Dec 2021.

Round 1 - Video Call 

Round duration - 90 Minutes
Round difficulty - Easy

Problem solving using SQL questions

Round 2 - Video Call 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Easy

A marketing campaign is run, how will you decide metrics to be tracked. Techincaly a KPI round

  • Q1. In a marketing campaign, how would you decide which metrics to track?
  • Ans. 

    Metrics selection based on campaign objectives, target audience, and key performance indicators.

    • Identify campaign objectives and goals

    • Consider target audience and their behavior

    • Select key performance indicators (KPIs) relevant to the campaign

    • Track metrics such as conversion rate, click-through rate, ROI, customer acquisition cost

    • Analyze data to measure success and make data-driven decisions

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

Social empathatic fit round

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Data Analyst in BangaloreEligibility criteriaNoJupiter Money interview preparation:Topics to prepare for the interview - SQL, Tablea, Data Visualisation, Key Metrics for a Product, Data Visualisation using PythonTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : SQL logics to be understood completely
Tip 2 : A good running working logic of Python
Tip 3 : Basics of Dashboarding

Application resume tips for other job seekers

Tip 1 : One pager , single column resume which shows all your skills
Tip 2 : Mention all things that make you relevant for the job

Final outcome of the interviewSelected
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2022. There were 6 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 - Aptitude Test 

Basic aptitude test to check the right skill set

Round 3 - Technical 

(1 Question)

  • Q1. Technical knowledge about the role, responsibilities, etc with various situation handling, decision making
Round 4 - One-on-one 

(1 Question)

  • Q1. One on one round with AVP on skill set and knowledge
Round 5 - One-on-one 

(1 Question)

  • Q1. One on one round with the CS head
Round 6 - HR 

(1 Question)

  • Q1. Final discussion on pay package, joining and other stuffs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for unlearn old things and get the new things
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Aug 2023. 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 - Technical 

(1 Question)

  • Q1. 1 - Easy Medium Question. Discuss the approach with interviewer and then implement it. The code should work, thats important.
Round 3 - Technical 

(1 Question)

  • Q1. LLD round to design Chess.
Round 4 - One-on-one 

(1 Question)

  • Q1. Hiring manager round. Grilling on resume and past experience questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic SQL questions are asked in this round Some theory questions are asked as well

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on SQL
practice plenty of SQL and case study problems

Profinch Solutions Interview FAQs

How to prepare for Profinch Solutions Technical Architect 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 Profinch Solutions. The most common topics and skills that interviewers at Profinch Solutions expect are API, AWS, Flexcube, System integration and Weblogic.

Tell us how to improve this page.

Profinch Solutions Technical Architect Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Razorpay Interview Questions
3.6
 • 153 Interviews
Revolut Interview Questions
2.5
 • 99 Interviews
Rupeek Interview Questions
3.7
 • 61 Interviews
ACKO Interview Questions
3.7
 • 49 Interviews
Yubi Interview Questions
3.0
 • 39 Interviews
CRED Interview Questions
3.5
 • 37 Interviews
Slice Interview Questions
3.2
 • 32 Interviews
Kissht Finance Interview Questions
3.9
 • 31 Interviews
Money View Interview Questions
4.3
 • 30 Interviews
View all
Profinch Solutions Technical Architect Salary
based on 110 salaries
₹11 L/yr - ₹37 L/yr
25% less than the average Technical Architect Salary in India
View more details

Profinch Solutions Technical Architect Reviews and Ratings

based on 12 reviews

3.9/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

3.8

Job security

3.9

Company culture

4.1

Promotions

4.1

Work satisfaction

Explore 12 Reviews and Ratings
Software Engineer
178 salaries
unlock blur

₹2.8 L/yr - ₹10.5 L/yr

Technical Architect
110 salaries
unlock blur

₹11 L/yr - ₹37 L/yr

Consultant
100 salaries
unlock blur

₹3.6 L/yr - ₹8.8 L/yr

Senior Software Engineer
59 salaries
unlock blur

₹7.1 L/yr - ₹19 L/yr

Senior Consultant
50 salaries
unlock blur

₹7 L/yr - ₹19 L/yr

Explore more salaries
Compare Profinch Solutions 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