Upload Button Icon Add office photos

Filter interviews by

Modak Analytics Software Engineer Interview Questions, Process, and Tips

Updated 29 Oct 2024

Top Modak Analytics Software Engineer Interview Questions and Answers

  • Q1. Logic for a program to sort an array in which we have an array of infinite length but contains only three elements like -1, 0,1.
  • Q2. Write a program to get minimum number of coins.
  • Q3. Difference between count, count(*)

Modak Analytics Software Engineer Interview Experiences

3 interviews found

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

Apptitude test is so easy it consists of English, technical mcqs

Round 2 - Technical 

(2 Questions)

  • Q1. SQL rank function
  • Q2. Difference between count, count(*)
  • Ans. 

    count(*) counts all rows in a table, while count(column_name) counts non-null values in a specific column.

    • count(*) counts all rows in a table

    • count(column_name) counts non-null values in a specific column

    • count(*) is generally used to get the total number of rows in a table

    • count(column_name) is used to count non-null values in a specific column

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image Boya Bharath

posted on 19 Oct 2021

I applied via Campus Placement and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Explain about data structures
  • Ans. 

    Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Data structures can be linear or non-linear

    • Examples of linear data structures include arrays, linked lists, and stacks

    • Examples of non-linear data structures include trees and graphs

    • Choosing the right data structure can greatly impact the efficiency of algorithms

  • Answered by AI
  • Q2. I have answered

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with all the cse core subjects

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

I applied via campus placement at BV Raju Institute of Technology, Medak and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Write a program to get minimum number of coins.
  • Ans. 

    Program to get minimum number of coins.

    • Create an array of coin denominations

    • Sort the array in descending order

    • Loop through the array and subtract the highest denomination possible

    • Repeat until the remaining amount is 0

  • Answered by AI
  • Q2. Circular linked list.
  • Q3. Logic for a program to sort an array in which we have an array of infinite length but contains only three elements like -1, 0,1.
  • Ans. 

    Sorting an array of infinite length with only three elements (-1, 0, 1)

    • Use counting sort algorithm to count the frequency of each element

    • Create a new array with sorted elements based on their frequency

    • Time complexity is O(n) and space complexity is O(1)

    • Example: [-1, 1, 0, 1, -1, 0, 1, -1, 0, 1, ...]

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Thoroughly refer data structures, basics of SQL and basic idea about Cloud Computing.

Skills evaluated in this interview

Interview questions from similar companies

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
  • 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

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

1 coding question, and basic MCQ

I applied via Recruitment Consulltant and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. OOPS concepts, function overload, override,interface,string, string builder
Round 2 - HR 

(1 Question)

  • Q1. Company profile,salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Give the proper answer for the question,
Don't give unnecessary answers
Be possitive
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
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 - One-on-one 

(1 Question)

  • Q1. Multiprocessing
Round 3 - Technical 

(1 Question)

  • Q1. Django ORM queries, python basic
Round 4 - HR 

(1 Question)

  • Q1. Company culture and compensation discussion
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - 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
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Sep 2022. There were 3 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 - Technical 

(3 Questions)

  • Q1. OOps, C#, MVC, WEBAPI, Azure
  • Q2. Multiple inheritance concept in OOPs?
  • Ans. 

    Multiple inheritance allows a class to inherit attributes and methods from more than one parent class.

    • In multiple inheritance, a class can inherit from two or more parent classes.

    • It can lead to the Diamond Problem where a class inherits from two classes that have a common ancestor.

    • Languages like C++ support multiple inheritance.

    • Example: class ChildClass : public ParentClass1, public ParentClass2 {}

  • Answered by AI
  • Q3. What is interface?
  • Ans. 

    An interface in software development defines a contract for classes to implement, specifying methods and properties that must be included.

    • Interfaces in programming languages like Java, C#, and TypeScript allow for multiple inheritance by defining a set of methods that a class must implement.

    • Interfaces are used to enforce a common structure across different classes, promoting code reusability and maintainability.

    • Example...

  • Answered by AI
Round 3 - Coding Test 

Create Crud operation using angular with API.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company
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
  • 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

Modak Analytics Interview FAQs

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

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

  1. Logic for a program to sort an array in which we have an array of infinite leng...read more
  2. Write a program to get minimum number of coin...read more
  3. Difference between count, count...read more

Tell us how to improve this page.

Modak Analytics Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Modak Analytics Software Engineer Salary
based on 46 salaries
₹4 L/yr - ₹12 L/yr
10% less than the average Software Engineer Salary in India
View more details

Modak Analytics Software Engineer Reviews and Ratings

based on 4 reviews

3.9/5

Rating in categories

2.9

Skill development

4.3

Work-life balance

3.3

Salary

3.3

Job security

3.0

Company culture

3.4

Promotions

3.1

Work satisfaction

Explore 4 Reviews and Ratings
Software Development Engineer
52 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Data Engineer
49 salaries
unlock blur

₹5 L/yr - ₹13 L/yr

Software Engineer
46 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Software Developer
35 salaries
unlock blur

₹4.8 L/yr - ₹12 L/yr

Hadoop Administrator
25 salaries
unlock blur

₹5.2 L/yr - ₹16 L/yr

Explore more salaries
Compare Modak Analytics with

Fractal Analytics

4.0
Compare

Mu Sigma

2.6
Compare

Tiger Analytics

3.7
Compare

LatentView Analytics

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