Upload Button Icon Add office photos

Modak Analytics

Compare button icon Compare button icon Compare

Filter interviews by

Modak Analytics Software Development Engineer Interview Questions and Answers

Updated 10 Nov 2024

Modak Analytics Software Development Engineer Interview Experiences

2 interviews found

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

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It is a test of total 150+ questions in which we have some java pseudocodes ,python ,aptitude reasoning questions as well and english questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Short inteoduction and project discussion.
  • Q2. Check the given sentence is palindrome or not by taking input by user.
  • Ans. 

    The program checks if a given sentence is a palindrome or not.

    • Prompt the user to input a sentence

    • Remove all spaces and punctuation from the sentence

    • Reverse the sentence and compare it with the original sentence to check for palindrome

  • Answered by AI
  • Q3. Final,Finally,finalize keywords
Round 3 - HR 

(2 Questions)

  • Q1. Introduce your self
  • Q2. Soft skills and other basic questions

Interview Preparation Tips

Topics to prepare for Modak Analytics Software Development Engineer interview:
  • Java core
  • MySQL
  • Project

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

First round of interview was a couple of questions on Java, SQL and algorithms

Round 2 - HR 

(1 Question)

  • Q1. Tell me about yourself

Software Development Engineer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Given an acyclic graph of a city where each edge represents a roa ... read more
asked in Hike
Q2. Given a screen with a button and a full-screen image view, descri ... read more
asked in Hike
Q3. You have an application that displays a list of contacts. The nam ... read more
asked in Amazon
Q4. Given an m * n matrix filled with '0's and 'x's with two position ... read more
asked in Samsung
Q5. There are 1000 wine bottles. One of the bottles contains poisoned ... read more

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Modak Analytics?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
3
Average
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 - Aptitude Test 

It was an easy test. It consisted of MCQs and two coding qns. Prepare SQL well. It also had 2 programming question. Both were medium difficukty

Round 3 - One-on-one 

(1 Question)

  • Q1. It was mainly focussed on my projects. Be thorough with you resume. But it also depends on the interviewer.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in-depth Java and you should know what is on your resume. Medium level of DSA is enough.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Maximal rectangal
  • Ans. 

    Find the largest rectangle containing only 1s in a binary matrix.

    • Use dynamic programming to track heights of consecutive 1s.

    • For each row, treat it as a histogram and calculate the maximal rectangle.

    • Utilize a stack to efficiently compute the largest rectangle in a histogram.

    • Example: For a matrix [[0,1,1],[1,1,0],[1,1,1]], the largest rectangle has area 4.

  • Answered by AI
  • Q2. Loop in linked list
  • Ans. 

    Loop in linked list is a situation where a node points to a previous node in the list, creating an infinite loop.

    • Check for loops using Floyd's cycle detection algorithm

    • Use two pointers, one moving twice as fast as the other, to detect a loop

    • If the fast pointer catches up to the slow pointer, there is a loop

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Basic hr question regarding your project and all
  • Q2. He was more interested in what is my thinking pattern

Skills evaluated in this interview

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 

Two easy questions two wasy questions two easy questions two easy questions

Round 3 - Technical 

(2 Questions)

  • Q1. Technical interviews was very easy techijcal interviews was very easy very easy very easy
  • Q2. Interviews was conducted in advance of a news conference in the United Kingdom and the European government on Tuesday

Interview Preparation Tips

Interview preparation tips for other job seekers - Ghar was the second man killed by an twowwywiwywuw The new rules would be similar y

I applied via Company Website and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. First round: 2 coding questions 1. Find minimum from sorted rotated array.
  • Q2. 2.relative sort leetcode....... second round: 1. Flower bed leetcode........2. find maximum subarray sum from an array

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers are really good and helpful. Just focus on the questions and try to discuss it with the interviewer. Third round is the managerial where they will discuss about your projects.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Valid parentheses
  • Ans. 

    Valid parentheses check ensures every opening bracket has a corresponding closing bracket in the correct order.

    • Use a stack to track opening parentheses. Example: '(()' -> push '(', push '(', pop ')' -> stack: ['(']

    • For each closing parenthesis, check if the stack is not empty and matches the last opened. Example: '()' -> valid.

    • An empty stack at the end indicates all parentheses were matched. Example: '(()())' -...

  • Answered by AI
  • Q2. Currying with arrow function
  • Ans. 

    Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of nested functions, each taking a single argument.

    • Currying can be achieved using arrow functions in JavaScript.

    • Arrow functions automatically bind 'this' and do not have their own 'this' value.

    • Example: const add = a => b => a + b;

    • Example: const addFive = add(5); const result = addFive(3); // result ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. DFS related problem
  • Q2. Machine coding round

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on ds & algo

Skills evaluated in this interview

Are these interview questions helpful?
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. DSA Next Greater element 2 Cycle in Linked List and if cycle remove it Best time to buy and sell stocks Coin Change
  • Ans. 

    Key DSA problems: Next Greater Element, Cycle in Linked List, Stock Trading, and Coin Change.

    • Next Greater Element: Find the next greater number for each element in an array. Example: For [4, 5, 2, 10], result is [5, 10, 10, -1].

    • Cycle in Linked List: Detect and remove a cycle using Floyd's Tortoise and Hare algorithm. If a cycle exists, find the start and remove it.

    • Best Time to Buy and Sell Stocks: Maximize profit by fi...

  • Answered by AI
  • Q2. Pyspark Optimisation techniques Wide and Narrow Transportmations Application Master
  • Q3. SQL Top 3 salaries per department Total working hours for an employee
  • Ans. 

    Retrieve the top 3 salaries from each department and calculate total working hours for each employee using SQL queries.

    • Use the ROW_NUMBER() function to rank salaries within each department: SELECT *, ROW_NUMBER() OVER (PARTITION BY department_id ORDER BY salary DESC) AS rank FROM employees.

    • Filter the results to get only the top 3 salaries: WHERE rank <= 3.

    • To calculate total working hours, use SUM() function: SELECT ...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 questions 3 sum linked list missing sum

Round 2 - HR 

(2 Questions)

  • Q1. System Design and hr principles
  • Ans. 

    System design involves creating a high-level architecture of a software system, while HR principles focus on managing people effectively.

    • System design involves identifying components, defining their interactions, and ensuring scalability and reliability.

    • HR principles include hiring the right talent, providing training and development opportunities, and fostering a positive work culture.

    • Both system design and HR princip...

  • Answered by AI
  • Q2. Projects discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

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

Two coding questions, one is easy and the other is difficult. Who solved 2nd question was shortlisted for an interview.

Round 2 - Interview 

(1 Question)

  • Q1. Introduce yourself—questions from OS, DBMS, DSA, Project, and one coding problem.

Modak Analytics Interview FAQs

How many rounds are there in Modak Analytics Software Development Engineer interview?
Modak Analytics interview process usually has 2-3 rounds. The most common rounds in the Modak Analytics interview process are HR, Coding Test and Aptitude Test.
What are the top questions asked in Modak Analytics Software Development Engineer interview?

Some of the top questions asked at the Modak Analytics Software Development Engineer interview -

  1. Check the given sentence is palindrome or not by taking input by us...read more
  2. Short inteoduction and project discussi...read more
  3. Soft skills and other basic questi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 2 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Sigmoid Interview Questions
3.3
 • 62 Interviews
ZoomRx Interview Questions
3.0
 • 38 Interviews
Jasper Colin Interview Questions
4.1
 • 31 Interviews
Dunnhumby Interview Questions
3.9
 • 31 Interviews
Everest Group Interview Questions
3.3
 • 25 Interviews
GfK MODE Interview Questions
3.4
 • 23 Interviews
View all
Modak Analytics Software Development Engineer Salary
based on 57 salaries
₹4 L/yr - ₹9 L/yr
55% less than the average Software Development Engineer Salary in India
View more details

Modak Analytics Software Development Engineer Reviews and Ratings

based on 9 reviews

3.4/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

2.4

Salary

2.9

Job security

3.1

Company culture

2.4

Promotions

3.1

Work satisfaction

Explore 9 Reviews and Ratings
Software Development Engineer
57 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Data Engineer
55 salaries
unlock blur

₹4.1 L/yr - ₹8.6 L/yr

Software Developer
36 salaries
unlock blur

₹5.5 L/yr - ₹12 L/yr

Software Engineer
30 salaries
unlock blur

₹3.5 L/yr - ₹10.5 L/yr

Hadoop Administrator
19 salaries
unlock blur

₹5.6 L/yr - ₹16 L/yr

Explore more salaries
Compare Modak Analytics with

Markelytics Solutions

4.8
Compare

Jasper Colin

4.1
Compare

GfK MODE

3.4
Compare

Dunnhumby

3.9
Compare
write
Share an Interview