Upload Button Icon Add office photos

Filter interviews by

Modak Analytics Associate Software Engineer Interview Questions and Answers

Updated 18 Sep 2024

Modak Analytics Associate Software Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed before Sep 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Easy questions with all main topics like work, distance and time.

Round 2 - Coding Test 

Python,java coding questions with multiple choice also.

Round 3 - Technical 

(2 Questions)

  • Q1. Oops concepts and sql
  • Q2. Projects and resume based questions
Round 4 - HR 

(2 Questions)

  • Q1. Easy questions like what are your interests?
  • Q2. Where do you see yoourself in 2 years?
  • Ans. 

    In 2 years, I see myself as a skilled software engineer contributing to innovative projects and taking on more responsibilities.

    • Continuing to enhance my technical skills through ongoing learning and training opportunities

    • Taking on leadership roles within project teams

    • Contributing to the development of new software products or features

    • Building strong relationships with colleagues and mentors for career growth

    • Possibly pu...

  • Answered by AI

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology (NIT), Raipur and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Easy-level questions were asked. One was for coding up BFS of a tree, another was to implement queue using linked list

Round 2 - Coding Test 

Medium level questions were asking related to tree and arrays

Round 3 - HR 

(4 Questions)

  • Q1. What are your hobbies?
  • Q2. How do you see yourself in 5 years?
  • Q3. What was your past work experience like?
  • Q4. What are your strengths and weaknesses?
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
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
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Asked about projects. Quite aloberately.
  • Q2. What is authorization and authentication?
  • Ans. 

    Authentication verifies the identity of a user, while authorization determines what actions they are allowed to perform.

    • Authentication confirms the identity of a user through credentials like passwords or biometrics.

    • Authorization determines the level of access a user has to resources or actions.

    • Example: Logging into a system with a username and password is authentication, while being able to view or edit specific files

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - More implementation oriented questions.
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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Round one was an online coding test where there were 5 sections :

1 - dsa - medium

2 - Java - Easy

3 - OOP - Easy

4 - Git - Easy

Round 2 - One-on-one 

(5 Questions)

  • Q1. 1 - where is bean annotation used in springboot ?... In class or method
  • Ans. 

    Bean annotation is used in Spring Boot on class or method to indicate that a method produces a bean to be managed by the Spring container.

    • Bean annotation is used on methods within a class to indicate that the method produces a bean to be managed by the Spring container.

    • It can also be used at the class level to indicate that the class itself is a Spring bean.

    • For example, @Bean annotation can be used on a method that cre...

  • Answered by AI
  • Q2. Which access modifier to restrict interface method access to only derived or implemented classes
  • Ans. 

    Protected access modifier restricts interface method access to only derived or implemented classes.

    • Use 'protected' access modifier to restrict access to only derived or implemented classes

    • Protected members are accessible within the same package or by subclasses

    • Example: 'protected void methodName() {}' in an interface

  • Answered by AI
  • Q3. How does one services interact with other in microservice
  • Ans. 

    Microservices interact with each other through APIs, messaging, or events.

    • Microservices communicate with each other through APIs, which can be synchronous or asynchronous.

    • Messaging systems like RabbitMQ or Kafka can be used for communication between microservices.

    • Events can be used for loosely coupled communication between microservices.

    • Service discovery mechanisms like Eureka or Consul help microservices locate and co...

  • Answered by AI
  • Q4. In an integer array where element represent stock price and index represent days how to detect the best day to buy and best day to sell in O(N)
  • Ans. 

    To detect the best day to buy and sell stock in an integer array representing stock prices and days in O(N).

    • Iterate through the array and keep track of the minimum price seen so far.

    • Calculate the profit by subtracting the current price from the minimum price.

    • Update the maximum profit and best buy/sell days accordingly.

    • Return the best buy and sell days to maximize profit.

  • Answered by AI
  • Q5. In an integer array find the next greatest number for all and display in O(N)
  • Ans. 

    Find the next greatest number for each integer in an array in O(N) time complexity.

    • Iterate through the array from right to left

    • Use a stack to keep track of potential next greatest numbers

    • Pop elements from the stack that are less than the current element and update their next greatest number to the current element

    • Push the current element onto the stack

    • Repeat until all elements have a next greatest number

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
-
Result
No response

I was interviewed in Feb 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Data structures
  • Q2. Solid Principles
  • Q3. Single responsibility principle
  • Ans. 

    Single responsibility principle states that a class should have only one reason to change.

    • Each class should have only one responsibility

    • Helps in making code more maintainable and easier to understand

    • Promotes separation of concerns

    • Example: A class that handles user authentication should not also handle file management

  • Answered by AI
  • Q4. Javascript question
  • Q5. Object oriented concepts

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Mar 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Problem solving questions like spiral traversal of Matrix.

Round 3 - Technical 

(2 Questions)

  • Q1. Problem solving questions and general talks
  • Q2. Binary search sorting

Interview Preparation Tips

Interview preparation tips for other job seekers - Very good interview experience interviewer was so cool and make me comfortable

Modak Analytics Interview FAQs

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

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

  1. projects and resume based questi...read more
  2. oops concepts and ...read more

Tell us how to improve this page.

Modak Analytics Associate Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 229 Interviews
Tiger Analytics Interview Questions
3.6
 • 221 Interviews
Fractal Analytics Interview Questions
4.0
 • 207 Interviews
Tredence Interview Questions
3.6
 • 123 Interviews
Axtria Interview Questions
3.0
 • 115 Interviews
Sigmoid Interview Questions
3.3
 • 57 Interviews
ZoomRx Interview Questions
3.0
 • 33 Interviews
Dunnhumby Interview Questions
4.0
 • 29 Interviews
View all
Modak Analytics Associate Software Engineer Salary
based on 4 salaries
₹3.5 L/yr - ₹6 L/yr
15% less than the average Associate Software Engineer Salary in India
View more details
Software Development Engineer
51 salaries
unlock blur

₹4.8 L/yr - ₹9.5 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.6
Compare

LatentView Analytics

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