Upload Button Icon Add office photos

Filter interviews by

Modak Analytics Software Developer Interview Questions, Process, and Tips

Updated 18 Nov 2024

Top Modak Analytics Software Developer Interview Questions and Answers

Modak Analytics Software Developer Interview Experiences

7 interviews found

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

I applied via campus placement at BV Raju Institute of Technology, Medak and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

There were 90 questions that need to solved in 60 min. Only eligible to next round if qualified in this round

Round 2 - Technical 

(2 Questions)

  • Q1. Overriding in java
  • Ans. 

    Overriding in Java allows a subclass to provide a specific implementation of a method that is already provided by its superclass.

    • Inheritance is a key concept in overriding, where a subclass inherits methods from its superclass.

    • To override a method, the method in the subclass must have the same name, return type, and parameters as the method in the superclass.

    • The @Override annotation can be used to ensure that a method ...

  • Answered by AI
  • Q2. Inheritance in java
  • Ans. 

    Inheritance in Java allows a class to inherit properties and behaviors from another class.

    • Allows for code reusability and promotes the concept of 'is-a' relationship

    • Subclass inherits fields and methods from superclass

    • Can override methods in subclass to provide specific implementation

    • Super keyword is used to access superclass methods and fields

    • Example: class Dog extends Animal {}

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Introduction of yourself
  • Ans. 

    I am a software developer with 5 years of experience in Java, Python, and SQL.

    • Experienced in Java, Python, and SQL programming languages

    • Worked on developing web applications using frameworks like Spring and Django

    • Familiar with database management systems like MySQL and PostgreSQL

  • Answered by AI
  • Q2. SQL based questions
Round 4 - HR 

(2 Questions)

  • Q1. Suggests few places in Hyderabad
  • Ans. 

    Hyderabad is a vibrant city with a mix of historical landmarks, modern attractions, and delicious food options.

    • Charminar - iconic monument in the heart of the city

    • Golconda Fort - historic fort with stunning architecture

    • Hussain Sagar Lake - picturesque lake with a giant Buddha statue

    • Ramoji Film City - world's largest film studio complex

    • Birla Mandir - beautiful temple dedicated to Lord Venkateswara

  • Answered by AI
  • Q2. Favourite tv show
  • Ans. 

    My favourite TV show is Game of Thrones.

    • Epic fantasy series with complex characters and storylines

    • Based on the book series 'A Song of Ice and Fire' by George R.R. Martin

    • Known for its shocking plot twists and intense battles

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was easy

Skills evaluated in this interview

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

Most of the questions from the quant ,they covered mostly train problems , work and time ,pipes,simple interest,profit and loss

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray SumGiven an array of numbers, find the maximum s ... read more
asked in Cognizant
Q2. Nth Fibonacci NumberNth term of Fibonacci series F(n), where F(n) ... read more
asked in Rakuten
Q3. Merge two sorted arraysNinja has been given two sorted integer ar ... read more
asked in GlobalLogic
Q4. Terms Of APAyush is given a number ‘X’. He has been told that he ... read more
asked in Amazon
Q5. Minimum Number of Platform NeededYou are given the arrival and de ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Vasavi College of Engineering, Hyderabad and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Aptitude test based on quantitative,logical,dsa,java,python mcqs

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

There will be two sessions in first round , first there will be 60+ of aptitude and second session will be of reasoning which consists of 15 questions ,but overall they will give you 90 mins of time to complete all the questions and result will be displayed immediately whether you qualified for next round or not

Round 2 - Coding Test 

There will be coding round after qualifying the first round and these will be hard , many of students will disqualify in this round

Interview Preparation Tips

Interview preparation tips for other job seekers - Time management will play a key role ,given time will be very less ,students must have grip on java and dsa

Modak Analytics interview questions for designations

 Software Engineer

 (3)

 Application Developer

 (1)

 Software Development Engineer

 (2)

 Associate Software Engineer

 (1)

 SDE (Software Development Engineer)

 (1)

 Data Engineer

 (1)

 Scrum Master

 (1)

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

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

Round 1 - Coding Test 

Aptitude,Python,java,dbms snippets

Round 2 - Technical 

(2 Questions)

  • Q1. 3 SQL basic questions
  • Q2. 2 python codes and algorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare everything from resume
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via campus placement at National Institute of Technology (NIT), Silchar and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SQL group by, Java opps
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at International Institute of Information Technology (IIIT), Hyderabad and was interviewed before Jun 2022. There were 4 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 

3 hours of assessment test which includes aptitude, technical

Round 3 - Technical 

(1 Question)

  • Q1. Coding round for 45mins - 1hr
Round 4 - Behavioral 

(1 Question)

  • Q1. Managerial round with the CEO, Mrs. Arthi Joshi

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Valid parentheses
  • 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

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

Modak Analytics Interview FAQs

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

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

  1. Suggests few places in Hydera...read more
  2. Favourite tv s...read more
  3. Overriding in j...read more
How long is the Modak Analytics Software Developer interview process?

The duration of Modak Analytics Software Developer interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Modak Analytics Software Developer Interview Process

based on 6 interviews in last 1 year

1 Interview rounds

  • Aptitude Test Round
View more

People are getting interviews through

based on 6 Modak Analytics interviews
Campus Placement
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Modak Analytics Software Developer Salary
based on 30 salaries
₹4.8 L/yr - ₹12 L/yr
21% more than the average Software Developer Salary in India
View more details

Modak Analytics Software Developer Reviews and Ratings

based on 6 reviews

4.3/5

Rating in categories

4.8

Skill development

3.6

Work-Life balance

3.5

Salary & Benefits

3.5

Job Security

3.5

Company culture

3.6

Promotions/Appraisal

4.6

Work Satisfaction

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

₹4 L/yr - ₹10 L/yr

Data Engineer
47 salaries
unlock blur

₹5 L/yr - ₹13 L/yr

Software Engineer
46 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Software Developer
30 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.7
Compare

Tiger Analytics

3.7
Compare

LatentView Analytics

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview