Upload Button Icon Add office photos

Filter interviews by

MFXchange Holdings Interview Questions, Process, and Tips

Updated 10 Dec 2022

Top MFXchange Holdings Interview Questions and Answers

MFXchange Holdings Interview Experiences

Popular Designations

3 interviews found

I applied via Company Website and was interviewed in Nov 2022. 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is your role and responsibilities in previous company?
  • Q2. What are the issues you face in your previous organization?

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a good company, they have MNC Client, candidate can learn good enough.

Associate Engineer Interview Questions asked at other Companies

Q1. Count Ways To Reach The N-th Stair Problem Statement You are given a number of stairs, N. Starting at the 0th stair, you need to reach the Nth stair. Each time you can either climb one step or two steps. You have to return the number of dis... read more
View answer (1)

Rate your
company

🤫 100% anonymous

How was your last interview experience?

Share interview

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself
  • Q2. Explain properly you get selected
  • Ans. 

    To get selected, I need to showcase my skills, experience, and enthusiasm for the job.

    • Demonstrate relevant skills and experience

    • Show enthusiasm for the job and the company

    • Be prepared for the interview and answer questions confidently

    • Provide examples of past successes and achievements

    • Follow up with a thank-you note or email

  • Answered by AI

Associate/Senior Associate -(Nontechnical) Interview Questions asked at other Companies

Q1. Tell about procure to pay process from MSDAX point of view
View answer (6)
MFXchange Holdings Interview Questions and Answers for Freshers
illustration image

I applied via Referral and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. How to resolve DNS issue..
  • Ans. 

    DNS issues can be resolved by checking network settings, clearing cache, and flushing DNS.

    • Check network settings to ensure DNS server is correct

    • Clear DNS cache on local machine

    • Flush DNS on local machine

    • Check firewall settings to ensure DNS traffic is allowed

    • Try using a different DNS server

    • Restart DNS server if necessary

  • Answered by AI
  • Q2. How to fix docker login error issue
  • Ans. 

    To fix docker login error, check credentials, registry URL, and network connectivity.

    • Verify correct username and password are used

    • Ensure correct registry URL is used

    • Check network connectivity to registry

    • Try logging in with --insecure-registry flag if using self-signed certificates

  • Answered by AI
  • Q3. How to fix vpn connectivity issues
  • Ans. 

    To fix VPN connectivity issues, check for network connectivity, firewall settings, and VPN configuration.

    • Check if the device is connected to the internet

    • Ensure that the firewall settings allow VPN traffic

    • Verify the VPN configuration settings such as server address, authentication, and encryption

    • Try restarting the VPN client or device

    • Contact the VPN provider for further assistance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to improve Troubleshooting knowledge and also improve skills

Skills evaluated in this interview

Associate Lead Interview Questions asked at other Companies

Q1. Difference between Money laundering and terrorist financing?
View answer (2)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

2 Questions - 1 graph and one basic

Round 2 - Technical 

(1 Question)

  • Q1. 2 basic coding questions and questions on OS and DBMS

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics
Interview experience
3
Average
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected
Round 1 - Coding Test 

Basic dsa questions from leetcode

Round 2 - Technical 

(1 Question)

  • Q1. Basic dsa questions and puzzles
Round 3 - HR 

(1 Question)

  • Q1. They directly explained workculture and asked same questions from previous two questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just learn basic dsa
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2023. 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. - MVVM & Clean Architecture - Protocol Oriented Programming and other iOS Basics - AVFoundation, AVPlayer, DRM (Digital Right Management) - Offline Playback - Live Streaming (Linear Streaming) - Core Data...
Round 3 - One-on-one 

(1 Question)

  • Q1. Scenario Based System Design like - Design the homepage of Zee5 - Design Player of infinite feeds

Interview Preparation Tips

Interview preparation tips for other job seekers - - Brush up the basics of iOS
- Be good in architecture pattern
- Gather Knowledge on Player
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Find 3rd transaction of user from uber cab dataset
  • Ans. 

    To find the 3rd transaction of a user from the Uber cab dataset.

    • Identify the user's transactions in the dataset

    • Sort the transactions by date/time

    • Select the 3rd transaction of the user

  • Answered by AI
  • Q2. Find last quarter ordered product from logistics dataset
  • Ans. 

    To find the last quarter ordered product from logistics dataset.

    • Identify the date range for the last quarter

    • Filter the dataset for orders within that date range

    • Identify the product ordered in the last quarter

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Asked more question involved with cte, window function, subqueries

Interview Questionnaire 

1 Question

  • Q1. Where do you see yourself in next 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and confident
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the use of ref?
  • Ans. 

    The 'ref' keyword in C# is used to pass arguments by reference instead of by value.

    • Allows a method to modify the value of the argument passed to it

    • Useful when you want to update the original value of a variable inside a method

    • Can be used with value types and reference types

    • Example: void UpdateValue(ref int num) { num = 10; }

    • Example: int value = 5; UpdateValue(ref value); // value will be 10 after the method call

  • Answered by AI
  • Q2. What are React Hooks
  • Ans. 

    React Hooks are functions that let you use state and other React features without writing a class.

    • React Hooks were introduced in React 16.8.

    • They allow you to use state and other React features in functional components.

    • Some commonly used React Hooks are useState, useEffect, useContext, etc.

    • Hooks are more lightweight and easier to understand compared to class components.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

20 Mcq and 2 coding question were asked.

Round 2 - Coding Test 

2 DP questions were asked

Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself and explain the project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Pretty easy rounds ,just focus on DSA.
Contribute & help others!
anonymous
You can choose to be anonymous

MFXchange Holdings Interview FAQs

How many rounds are there in MFXchange Holdings interview?
MFXchange Holdings interview process usually has 2 rounds. The most common rounds in the MFXchange Holdings interview process are Resume Shortlist and Technical.
How to prepare for MFXchange Holdings 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 MFXchange Holdings. The most common topics and skills that interviewers at MFXchange Holdings expect are Javascript, Consulting, Project Management, Telecom and Angular.
What are the top questions asked in MFXchange Holdings interview?

Some of the top questions asked at the MFXchange Holdings interview -

  1. How to fix vpn connectivity issu...read more
  2. How to fix docker login error iss...read more
  3. How to resolve DNS issu...read more

Recently Viewed

PHOTOS

Knowcraft Analytics

No Photos

COMPANY BENEFITS

Smartron India

No Benefits

SALARIES

Smartron India

No Salaries

JOBS

Balance Hero India

No Jobs

JOBS

Servosys Solutions

No Jobs

PHOTOS

Servosys Solutions

No Photos

PHOTOS

Balance Hero India

No Photos

COMPANY BENEFITS

Centrumdirect

No Benefits

SALARIES

Centrumdirect

No Salaries

REVIEWS

Finnew Solutions

No Reviews

Tell us how to improve this page.

Anonymously discuss salaries, work culture, and many more

Get Ambitionbox App

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Bharti Airtel Interview Questions
4.0
 • 848 Interviews
ITC Interview Questions
3.9
 • 548 Interviews
View all

MFXchange Holdings Reviews and Ratings

based on 90 reviews

3.7/5

Rating in categories

3.1

Skill development

3.6

Work-life balance

3.1

Salary

3.1

Job security

3.2

Company culture

2.9

Promotions

3.5

Work satisfaction

Explore 90 Reviews and Ratings
Software Engineer
58 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
38 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Engineer
32 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare MFXchange Holdings with

Zee Entertainment Enterprises

3.5
Compare

Sun Pharmaceutical Industries

4.0
Compare

TCS

3.7
Compare

Reliance Industries

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