Upload Button Icon Add office photos

Filter interviews by

MINTIFI Intern Interview Questions and Answers

Updated 19 Nov 2022

MINTIFI Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 19 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 - Case Study 

Basic case about mintifi finserve pvt ltd. which is situation based and ask about what solution is provided by them

Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself,
  • Q2. Your home town, your qualification

Interview Preparation Tips

Interview preparation tips for other job seekers - just be honest and its a easy interview to crack and

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Data management intern , based in excel .interview questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 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 

Easy to crack the test

Round 3 - Group Discussion 

Somewhat ok need to be a bit fluent

Round 4 - Assignment 

They gave us portal with bugs we have to find them.

Round 5 - Technical 

(1 Question)

  • Q1. Some random logical thinking questions
Round 6 - HR 

(1 Question)

  • Q1. Tell me abt yourself
  • Ans. 

    I am a motivated and enthusiastic individual with a strong passion for learning and gaining practical experience in the field of [field].

    • I have recently completed my [degree/qualification] in [field] from [university/institution].

    • During my studies, I gained hands-on experience through internships at [company/organization] where I worked on [specific projects/tasks].

    • I have a solid understanding of [relevant skills/techn...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly don't apply for this company if u r a fresher. They don't value your work and efforts. They want you to catch up really quick to their goals in impossible time.
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

1.5 hours, data structure and algorithms, Their own platform

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your projects thoroughly and read more about the Javascript.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Data management intern , based in excel .interview questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Mumbai and was interviewed in Dec 2022. There were 4 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 

2 questions dsa based

Round 3 - Technical 

(2 Questions)

  • Q1. Recursion based coding questions
  • Q2. Resume , grill on projects
Round 4 - HR 

(1 Question)

  • Q1. Why sde inspite of having different background
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 2022. There were 6 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Easy to crack the test

Round 3 - Group Discussion 

Somewhat ok need to be a bit fluent

Round 4 - Assignment 

They gave us portal with bugs we have to find them.

Round 5 - Technical 

(1 Question)

  • Q1. Some random logical thinking questions
Round 6 - HR 

(1 Question)

  • Q1. Tell me abt yourself
  • Ans. 

    I am a motivated and enthusiastic individual with a strong passion for learning and gaining practical experience in the field of [field].

    • I have recently completed my [degree/qualification] in [field] from [university/institution].

    • During my studies, I gained hands-on experience through internships at [company/organization] where I worked on [specific projects/tasks].

    • I have a solid understanding of [relevant skills/techn...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly don't apply for this company if u r a fresher. They don't value your work and efforts. They want you to catch up really quick to their goals in impossible time.

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 minutes
Round difficulty - Medium

It was a 3-hr coding round that started at around 6 PM. It had 2-3 coding questions. The test was on InterviewBit.

  • Q1. 

    K-th Permutation Sequence of First N Natural Numbers

    Determine the K-th permutation from a sequence of the first N natural numbers.

    Input:

    Integer T indicating the number of test cases followed by 'T' t...
  • Ans. 

    The task is to find the Kth permutation of the sequence of first N natural numbers.

    • Generate all possible permutations of the sequence of first N natural numbers

    • Sort the permutations in lexicographical order

    • Return the Kth permutation from the sorted list

  • Answered by AI
  • Q2. 

    Palindromic Substrings Problem Statement

    You are given a string 'STR'. Your task is to determine the total number of palindromic substrings present in 'STR'.

    Example:

    Input:
    "abbc"
    Output:
    5
    Explana...
  • Ans. 

    The task is to find the total number of palindromic substrings in a given string.

    • Iterate through each character in the string and consider it as the center of a potential palindrome

    • Expand outwards from the center to check if the substring is a palindrome

    • Count the number of palindromic substrings found

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Technical interview - comprised of discussion on projects, internships and solving DSA problems.
In my case major part was discussion on projects. I had done projects in Android, iOS and Web Dev. The interviewer himself was very experienced in these fields so he asked thorough questions to test my knowledge.
The DSA problems were at par with what was asked in the coding round, and he just wanted the pseudo-code.
The interview took place on Google Meet at around noon.

  • Q1. 

    Longest Common Subsequence Problem Statement

    Given two strings, S and T with respective lengths M and N, your task is to determine the length of their longest common subsequence.

    A subsequence is a seque...

  • Ans. 

    The problem is to find the length of the longest common subsequence between two given strings.

    • A subsequence is a string that can be derived from another string by deleting some or no characters without changing the order of the remaining characters.

    • We can solve this problem using dynamic programming.

    • Create a 2D array to store the lengths of the longest common subsequences for all possible prefixes of the two strings.

    • It...

  • Answered by AI
Round 3 - HR 

Round duration - 60 minutes
Round difficulty - Easy

The interviewer was very friendly. The first thing he told me was to relax because I was done with the hard part. This round consisted of general questions like - 
1. What do you consider to be your greatest strengths and weaknesses?
2. What do you plan to do in the upcoming years?
3. Will you want to pursue higher education?
4. How has your journey at your college been?
5. Do you think you’re a team player? Give some instances to prove it.
6. If I were to call your friends and ask them about your biggest weaknesses, what do you think they’ll say?

Very interestingly, after the last question, he asked me to name a few of my friends and asked for their phone numbers too.
I was very nervous about if he was actually going to call them and ask this question.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in BangaloreEligibility criteria8.5 CGPAHyper Verge interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms, Dynamic Programming, ProjectsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Don’t try to cover all coding platforms. Stick to one and be thorough with it.
Tip 2 : Pick a topic, understand its basics, then start solving problems, starting with the easy ones.
Tip 3 : Solve previously asked questions. It tells you about the level of questions that the company asks.

Application resume tips for other job seekers

Tip 1 : You should have multiple interesting projects on your resume (3-4).
Tip 2 : You should be prepared to explain anything that’s written on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

MINTIFI Interview FAQs

How many rounds are there in MINTIFI Intern interview?
MINTIFI interview process usually has 3 rounds. The most common rounds in the MINTIFI interview process are Resume Shortlist, Case Study and One-on-one Round.

Tell us how to improve this page.

Interview Questions from Similar Companies

Cogoport Interview Questions
2.8
 • 52 Interviews
LendingKart Interview Questions
3.1
 • 29 Interviews
HyperVerge Interview Questions
4.3
 • 25 Interviews
Treebo Hotels Interview Questions
3.4
 • 22 Interviews
InCred Finance Interview Questions
3.8
 • 21 Interviews
Simpl Interview Questions
2.9
 • 17 Interviews
View all
Sales Manager
82 salaries
unlock blur

₹2.8 L/yr - ₹6 L/yr

Software Developer
15 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Operations Executive
14 salaries
unlock blur

₹2.5 L/yr - ₹4.2 L/yr

Manager
9 salaries
unlock blur

₹4.7 L/yr - ₹11 L/yr

Area Sales Manager
8 salaries
unlock blur

₹6 L/yr - ₹12 L/yr

Explore more salaries
Compare MINTIFI with

LendingKart

3.1
Compare

Axio

3.7
Compare

NeoGrowth Credit

3.4
Compare

InCred Finance

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