Upload Button Icon Add office photos
Engaged Employer

i

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

MathCo Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

MathCo Intern Interview Questions and Answers

Updated 25 Aug 2024

MathCo Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 25 Aug 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Verbal reasoning quewstions

Round 2 - HR 

(2 Questions)

  • Q1. Technical and programming related questions
  • Q2. About the resume

Interview Preparation Tips

Interview preparation tips for other job seekers - good

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about MathCo?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Round 1 Aptitude Test. They Ask Total 24 questions There are Aptitude and Verbal, One Codding question related To Sql Joins.

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. There is a housing society “The wasteful society”. You collect al ... read more
Q2. Which programming language are you comfortable with?
asked in Accenture
Q3. A marketing strategy case: A perfume seller in Jaipur has unique ... read more
asked in Deloitte
Q4. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q5. Huffman Coding Challenge Given an array ARR of integers containin ... read more

Intern Interview Questions & Answers

Zeta user image Anonymous

posted on 16 Apr 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Coding Test 

2 DSa questions + cs fundamentals mcq

Round 2 - One-on-one 

(2 Questions)

  • Q1. System design e-commerce
  • Q2. SRE fundamentals
Round 3 - HR 

(1 Question)

  • Q1. Managerial round, resume, work experience and stuff
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. Python, Gen AI
  • Q2. Data Structures, AWS
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Nov 2024, where I was asked the following questions.

  • Q1. Self Introduction
  • Q2. About Academic Project
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Company Website and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Aptitude Test 

Aptitude, analytical, abstract reasoning, numerical ability, critical thinking, speaking skills

I applied via Recruitment Consultant and was interviewed in Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Decision tree, random forest, regressions, classification metrics

Interview Preparation Tips

Interview preparation tips for other job seekers - Very nice experience, warm and welcoming people.
Are these interview questions helpful?

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

Interview Questionnaire 

1 Question

  • Q1. All interviews was based on my resume. There were 5 rounds including 1 round with senior consultants of team, 1 with manager, 1 coding test, another telephonic interview with senior partner and then hr int...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorrow with your resume. You should know everything that's written in your resume.

I applied via Naukri.com and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What all projects have you done and your role in it
  • Q2. Qlik

Interview Preparation Tips

Interview preparation tips for other job seekers - Fractal has very low rate of hiring and they short list or hire only the best talent. I would suggest to have proper hands on knowledge to crack the interview.

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 minutes
Round difficulty - Easy

After round 1 there was a break of 15 mins and the coding round started.
We had a choice to attempt the exam in R language & SQL or python & sql
I chose python and sql
It had 8 questions 4 python and 4 sql

  • 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 task is to find the length of the longest common subsequence between two given strings.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 2D array to store the lengths of longest common subsequences of substrings.

    • Iterate through the strings to fill the array and find the length of the longest common subsequence.

    • Example: For strings 'abcde' and 'ace', the longest common subsequence is 'ace' with leng...

  • Answered by AI
Round 2 - Video Call 

Round duration - 15 minutes
Round difficulty - Medium

The interview was mostly analytical based and how you approach the round a few technical questions in dbms and oops were also asked.

Round 3 - Video Call 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Medium

Similar to first round
For Shortlists after elimination from first round.

  • Q1. 

    Car Pooling Capacity Problem

    You are a cab driver with a car that initially has 'C' empty seats. The car moves in a straight line towards the forward direction only. Your job is to determine if it is poss...

  • Ans. 

    Determine if it is possible to accommodate all passenger trips within a car's capacity without exceeding it at any point.

    • Iterate through each trip and keep track of the total number of passengers in the car at each point.

    • Check if the total number of passengers exceeds the car capacity at any point.

    • Return 'True' if all trips can be accommodated within the car capacity, otherwise return 'False'.

  • Answered by AI
Round 4 - Video Call 

(1 Question)

Round duration - 20 minutes
Round difficulty - Easy

After two technical round interviews, the last round was a hr interview. The whole process can take up one whole day or more and your interview can be at any time
My process started at 5 pm and ended at 10:30 pm
All the interviewers were very friendly no pressure.

  • Q1. 

    Nth Fibonacci Number Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • Ans. 

    Calculate the Nth Fibonacci number efficiently using dynamic programming.

    • Use dynamic programming to store previously calculated Fibonacci numbers to avoid redundant calculations.

    • Start with base cases F(1) and F(2) as 1, then iterate to calculate subsequent Fibonacci numbers.

    • Time complexity can be optimized to O(N) using dynamic programming.

    • Example: For N = 5, the 5th Fibonacci number is 5.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaCgpa was initially 6 and above but was later on cut to 7 and above due to high no of applicationsFractal Analytics interview preparation:Topics to prepare for the interview - Machine learning, dbms, sql, oops, python,Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Be fast ans accurate on your aptitude amd verbal tests. 
Tip 2 : In coding round, depending on the difficulty of the questions the time in which you complete solving them should decrease .If almost everyone can solve them timming comes in to the equation for shortlisting
Tip 3 : While submitting your resume, please be honest about the projects you have done and do not bluff about it because in the interview when you ate drilled abt it, they can catch you easily.
Tip 4 : be confident and answer every question to the best of your ability and if u don't know something, tell them you don't know abt it .

Application resume tips for other job seekers

Tip 1 : Research the company and put the most revalent projects and skills that the company os looking for specifically
Tip 2 : Do not bluff or lie on your resume. It show's during the interview.

Final outcome of the interviewSelected

Skills evaluated in this interview

MathCo Interview FAQs

How many rounds are there in MathCo Intern interview?
MathCo interview process usually has 2 rounds. The most common rounds in the MathCo interview process are Aptitude Test and HR.

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 2 interview experiences

Interview Questions from Similar Companies

Fractal Analytics Interview Questions
4.0
 • 214 Interviews
Zeta Interview Questions
3.4
 • 74 Interviews
Kiya.ai Interview Questions
3.4
 • 50 Interviews
CoinDCX Interview Questions
3.8
 • 31 Interviews
MoEngage Interview Questions
3.9
 • 27 Interviews
Convin Interview Questions
4.3
 • 22 Interviews
View all

MathCo Intern Reviews and Ratings

based on 2 reviews

2.9/5

Rating in categories

2.9

Skill development

1.9

Work-life balance

2.5

Salary

2.9

Job security

3.4

Company culture

3.4

Promotions

2.9

Work satisfaction

Explore 2 Reviews and Ratings
Senior Associate
216 salaries
unlock blur

₹11 L/yr - ₹28 L/yr

Data Analyst
197 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Analyst
180 salaries
unlock blur

₹4 L/yr - ₹8.2 L/yr

Data Scientist
147 salaries
unlock blur

₹10 L/yr - ₹16 L/yr

Associate
139 salaries
unlock blur

₹9.5 L/yr - ₹17 L/yr

Explore more salaries
Compare MathCo with

Fractal Analytics

4.0
Compare

Kiya.ai

3.4
Compare

Innovatiview India Ltd

3.9
Compare

Zeta

3.4
Compare
write
Share an Interview