Premium Employer

i

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

Metayb Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Metayb Finance Manager Interview Questions and Answers

Updated 22 Apr 2025

Metayb Finance Manager Interview Experiences

1 interview found

Finance Manager Interview Questions & Answers

user image Hariprasad K

posted on 22 Apr 2025

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Can you describe your experience in detail, including the steps of the process and the controls involved?
  • Ans. 

    Experienced Finance Manager with a focus on budgeting, forecasting, and financial controls to ensure accuracy and compliance.

    • Developed annual budgets by collaborating with department heads to align financial goals with strategic objectives.

    • Implemented a monthly forecasting process to track variances and adjust financial plans accordingly.

    • Established internal controls to ensure accuracy in financial reporting, including...

  • Answered by AI
  • Q2. What are your weaknesses?

Top trending discussions

View All
Interview Hub
2w
a team lead
FeedCard Image
Got a question about Metayb?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Valuation of stocks
  • Q2. Financial modelling and analysis

Finance Manager Interview Questions Asked at Other Companies

Q1. What are the major adjustments that need to be made while finaliz ... read more
Q2. While analyzing the performance of a company, what factors will y ... read more
asked in Laurus Labs
Q3. How to calculate overhead rate for Inventory valuation. What is t ... read more
Q4. What do you know about TCS ? Do you know how to file GST/TDS retu ... read more
Q5. What were the major changes in recent budgets?

I applied via Naukri.com and was interviewed in Jun 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About all the testing concepts and python and robot automation questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview Exp was great with Sungard, I said no to that questions for those I had no answer; and explained everything which I had knowledge about.
Total there were 4 round of interview, next round interview was harder than the last one.

Data Analyst Interview Questions & Answers

Ganit Inc user image Harshal Khedkar

posted on 28 Apr 2021

I appeared for an interview in Mar 2021.

Interview Questionnaire 

1 Question

  • Q1. Current Project

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly about projects u did
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

SQL, Python Coding intermediate questions

Round 2 - Coding Test 

Intermediate coding questions

Round 3 - HR 

(2 Questions)

  • Q1. Salary Discussion
  • Q2. Policy Discussion and other perks provided by the company

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared for SQL, Python and Pyspark as its a Data Engineering and Data Analytics organization
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Types of filters
  • Ans. 

    Types of filters include low-pass, high-pass, band-pass, and band-stop filters.

    • Low-pass filter allows frequencies below a certain cutoff frequency to pass through.

    • High-pass filter allows frequencies above a certain cutoff frequency to pass through.

    • Band-pass filter allows a specific range of frequencies to pass through.

    • Band-stop filter blocks a specific range of frequencies from passing through.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Project Details
Be interview-ready. Browse the most asked HR questions.
illustration image
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
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 is your current salary
  • Q2. What is your experience

Interview Preparation Tips

Interview preparation tips for other job seekers - They have no clients, first they will hire you since there is no active client/opportunities you won't be able to perform because of that, then they will start question your performance and once you will complete your probation they will indirectly ask you to leave the company.
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2022. There were 3 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 

General and basic data structure question

Round 3 - Technical 

(4 Questions)

  • Q1. Coding over the video call
  • Q2. Java programs for strings , palindrome etc
  • Ans. 

    Java programs for strings, palindrome, etc.

    • Use the StringBuilder class to manipulate strings efficiently.

    • To check if a string is a palindrome, compare it with its reverse.

    • To count the occurrences of a substring in a string, use the indexOf method in a loop.

    • To split a string into an array of substrings, use the split method.

  • Answered by AI
  • Q3. Projects questions on which you have worked
  • Q4. Explanation skill will also be considered

Interview Preparation Tips

Topics to prepare for Blackbuck Insights Software Engineer interview:
  • Java
  • SQL
  • MySQL
Interview preparation tips for other job seekers - Keep working hard and prepare dsa as much as you could

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic Apti , ex train ,speed work

Round 2 - Coding Test 

From Leetcode questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Related about real time java questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Coding test on java collections

Round 2 - Technical 

(2 Questions)

  • Q1. Sorting a given array
  • Ans. 

    Sorting a given array of strings

    • Use a sorting algorithm like quicksort or mergesort

    • Consider the length of the strings for comparison

    • Use a comparator function to define the sorting order

  • Answered by AI
  • Q2. Database queries. Finding second, thrid highest salary
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find second, third highest salary

    • Use ORDER BY salary DESC to sort salaries in descending order

    • Use LIMIT 1,1 to get the second highest salary

    • Use LIMIT 2,1 to get the third highest salary

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1,1

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 2,1

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to change jobs
  • Q2. Salary negotiations

Skills evaluated in this interview

Metayb Interview FAQs

How to prepare for Metayb Finance Manager 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 Metayb. The most common topics and skills that interviewers at Metayb expect are Budgeting, Forecasting, SQL, Accounting and Analytical Chemistry.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Join Metayb Delivering tech-driven transformation at scale

Interview Questions from Similar Companies

PlaySimple Games Interview Questions
3.3
 • 26 Interviews
Ganit Inc Interview Questions
3.8
 • 26 Interviews
Unify Technologies Interview Questions
3.1
 • 25 Interviews
Thoughtsol Infotech Interview Questions
4.6
 • 21 Interviews
Blackbuck Insights Interview Questions
3.9
 • 16 Interviews
11:11 Systems Interview Questions
3.6
 • 15 Interviews
Devon Software Services Interview Questions
3.9
 • 13 Interviews
Capace Software Interview Questions
4.3
 • 13 Interviews
Agilisium Interview Questions
3.1
 • 13 Interviews
View all
Metayb Finance Manager Salary
based on 4 salaries
₹11 L/yr - ₹22 L/yr
21% less than the average Finance Manager Salary in India
View more details

Metayb Finance Manager Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Power BI Developer
12 salaries
unlock blur

₹3.3 L/yr - ₹10.5 L/yr

Senior Consultant
9 salaries
unlock blur

₹12 L/yr - ₹20 L/yr

Senior Analyst
7 salaries
unlock blur

₹5.7 L/yr - ₹13.6 L/yr

Deputy Manager
7 salaries
unlock blur

₹9.6 L/yr - ₹17 L/yr

Financial Analyst
6 salaries
unlock blur

₹10 L/yr - ₹11.5 L/yr

Explore more salaries
Compare Metayb with

JoulestoWatts Business Solutions

3.1
Compare

Thoughtsol Infotech

4.6
Compare

11:11 Systems

3.6
Compare

Innoplexus

4.1
Compare
write
Share an Interview