Upload Button Icon Add office photos

Fino Payments Bank

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Fino Payments Bank SQL Database Administrator Interview Questions and Answers

Updated 6 Aug 2022

Fino Payments Bank SQL Database Administrator Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jul 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 - Technical 

(2 Questions)

  • Q1. 1.backup type 2.recover type 3.recovery and no recovery mode 4.user management 5.log shipping steps 6.lsn misstatements
  • Q2. 1. replication types and jobs 2. Transitional replication how it's work and which job run and what's is important
  • Ans. 

    Replication types and jobs, and how transactional replication works

    • Replication types include snapshot, transactional, and merge

    • Snapshot replication copies the entire database at a specific point in time

    • Transactional replication copies changes as they occur

    • Merge replication combines changes from multiple sources

    • Transactional replication uses a distributor to send changes to subscribers

    • Important jobs for transactional re...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. 1. Dr dill steps on log shipping 2. Performance tuning
  • Ans. 

    Log shipping and performance tuning are important aspects of SQL Database Administration.

    • Log shipping is a process of automating the backup of transaction log files on a primary database server and then restoring them onto a secondary server.

    • Performance tuning involves identifying and resolving performance issues in a database system, such as slow queries or inefficient indexing.

    • Techniques for performance tuning includ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1.Pump yourself up and stay positive.
2 Focus on log shipping and replication
3.Dr drill process

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

All about coding and solving questions

Round 2 - Technical 

(2 Questions)

  • Q1. All about coding questions in depth and follow up questions
  • Q2. Be good in coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Very supportive interviewer. Helps in between to make you comfortable

Interview Questionnaire 

2 Questions

  • Q1. DSA asked overall
  • Q2. Practise all dsa questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Not that hard can be solved with practise

I applied via AngelList and was interviewed before Oct 2021. There were 2 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 

(2 Questions)

  • Q1. What's your name? Previously working details
  • Q2. Your long term goals?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare hard guys they are much more expertise in their field

I applied via Referral and was interviewed in Feb 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Why you want to switch in same Industry.

Interview Preparation Tips

Interview preparation tips for other job seekers - For growth opportunity which I assume that PayU would provide me.
I want to grow in the same Industry and still explore myself.

I was interviewed in Jun 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Contained mix of coding, oops and general programming questions

Coding was live coding round
It was around 12pm
They used their own coding environment, I coded in java

  • Q1. 

    Maximum Subarray Sum Problem Statement

    Given an array arr of length N consisting of integers, find the sum of the subarray (including empty subarray) with the maximum sum among all subarrays.

    Explanation...

  • Ans. 

    Find the sum of the subarray with the maximum sum among all subarrays in an array of integers.

    • Iterate through the array and keep track of the maximum sum subarray seen so far.

    • Use Kadane's algorithm to efficiently find the maximum subarray sum.

    • Consider the case where all elements in the array are negative.

    • Handle the case where the array contains only one element.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 90 Minutes
Round difficulty - Hard

It was a collection of HLD AND LLD
Was around 12pm
This was conducted on bluejeans

  • Q1. Design a URL shortener with a database and all necessary components.
  • Ans. 

    Design a URL shortener with database and necessary components

    • Use a unique identifier for each URL to generate short links

    • Store the original URL and corresponding short link in a database

    • Implement a redirect mechanism to redirect short links to original URLs

    • Consider implementing analytics to track usage and performance

    • Ensure scalability and reliability of the system

  • Answered by AI
Round 3 - Video Call 

Round duration - 60 Minutes
Round difficulty - Easy

It was a friendly managerial round with director of my team, he was very for me to come on board and explained truthfully how payu is.

Round 4 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

Just a normal HR discussion, he informed me that I've been selected and we discussed about the salary part

  • Q1. Can you describe your experience working in a corporate environment?

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in BangaloreEligibility criteria2 years of job experiencePayU interview preparation:Topics to prepare for the interview - Data structure, Algorithm, HLD, LLD, Dynamic programming, GraphsTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : have strong grasp of graph based algorithms
Tip 2 : have strong knowledge of data structure 
Tip 3 : should be able to find where to use appropriate design pattern

Application resume tips for other job seekers

Tip 1 : keep it short and simple 
Tip 2 : focus more on design/architecture of project

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Dec 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Time - afternoon. 
Interviewer jumped straight into interview, formal and comfortable environment. 
1. Interviewer introduction 
2. Interviewee introduction
3. Coding question 1 - difficulty medium, topic - arrays
- explain approach, write code (pseudo code is fine), dry run on given TCS. 
4. Coding question 2 - same as above, only question was different. Slightly more difficult but on arrays only. 
5. Questions on Python & Django - difficulty medium - write code related to queryset on django objects
6. SQL question to code - 10th highest salary.

  • Q1. 

    Reverse Only Letters Problem Statement

    You are given a string S. The task is to reverse the letters of the string while keeping non-alphabet characters in their original position.

    Example:

    Input:
    S = "...
  • Ans. 

    Reverse the letters of a string while keeping non-alphabet characters in their original position.

    • Iterate through the string and store the non-alphabet characters in their original positions

    • Reverse the letters of the string using two pointers technique

    • Combine the reversed letters with the non-alphabet characters to get the final reversed string

  • Answered by AI
  • Q2. 

    Alternate Positive and Negative Numbers

    Given an array arr that contains an equal number of positive and negative elements, rearrange the given array such that positive and negative numbers are arranged a...

  • Ans. 

    Rearrange an array with equal positive and negative numbers alternatively while maintaining relative order.

    • Iterate through the array and separate positive and negative numbers into two separate arrays.

    • Merge the two arrays alternatively into the original array.

    • Ensure the relative order of positive and negative numbers is maintained.

  • Answered by AI
Round 2 - Face to Face 

Round duration - 60 Minutes
Round difficulty - Medium

1. Intro of interviewer
2. Intro of interviewee
3. Questions on Python - decorators, static method, class methods
4. Principal of coding, best practices
5. Question on DB - What is indexing, how to improve, best use of indexing.
6. Questions on django - what is django ORM, What is sandbox, Django models, Django queries.
7. Previous job, what do you do, stack you work on.

Very friendly environment, very pleasing person, loved it.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in PuneEligibility criteria0-1 year experience.PayU interview preparation:Topics to prepare for the interview - Python, Django, Dynamic Programming, Arrays, Graphs, OS, CN, DBMS, SQL, System DesignTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Good at coding (solving, explaining), especially Dynamic Programming questions like knapsack. Focus 70% time on coding
Tip 2 : Apply to jobs through referral not on company site. Very important. 
Tip 3 : Prepare good projects with how to explain in interview.
Tip 4 : Sound very energetic, competitive and some one with eager to learn, so they select you thinking you can be taught things as you have good attitude.
Remember : Good attitude in good coder > Bad attitude in expert coder.

Application resume tips for other job seekers

Tip 1 : Max three, projects, which are interesting to talk about, and you have won something for it. 
Tip 2 : Leave lot of white space, keep content small and in one page

Final outcome of the interviewSelected
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. DSA round containing 2 coding questions along with some Java Questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Design Round along with some puzzles
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial Round
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 

There was a Hackerearth test with two questions

Round 3 - Technical 

(2 Questions)

  • Q1. Some standard data structures question on array
  • Q2. Standard question on trees

Interview Preparation Tips

Interview preparation tips for other job seekers - Revise on the standard data structures questions and a bit on api design and system design
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Anagram question
  • Q2. Sql join questions

Fino Payments Bank Interview FAQs

How many rounds are there in Fino Payments Bank SQL Database Administrator interview?
Fino Payments Bank interview process usually has 3 rounds. The most common rounds in the Fino Payments Bank interview process are Technical and Resume Shortlist.
What are the top questions asked in Fino Payments Bank SQL Database Administrator interview?

Some of the top questions asked at the Fino Payments Bank SQL Database Administrator interview -

  1. 1. replication types and jobs 2. Transitional replication how it's work and wh...read more
  2. 1. Dr dill steps on log shipping 2. Performance tun...read more
  3. 1.backup type 2.recover type 3.recovery and no recovery mode 4.user management...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

PhonePe Interview Questions
4.0
 • 300 Interviews
DBS Bank Interview Questions
3.8
 • 157 Interviews
City Union Bank Interview Questions
3.2
 • 88 Interviews
CSB Bank Interview Questions
3.2
 • 75 Interviews
View all
Assistant Manager
324 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Cluster Head
153 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Territory Sales Manager
152 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
135 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Officer
125 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Fino Payments Bank with

Paytm Payments Bank

3.8
Compare

Airtel Payments Bank

4.0
Compare

India Post Payments Bank

4.1
Compare

Jio Payments Bank

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