Upload Button Icon Add office photos

Filter interviews by

Modak Analytics Interview Questions, Process, and Tips

Updated 13 Feb 2025

Top Modak Analytics Interview Questions and Answers

View all 12 questions

Modak Analytics Interview Experiences

Popular Designations

22 interviews found

I applied via Campus Placement 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

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)
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

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)
Modak Analytics Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Comprehensive questions covered wide range of topics

Round 2 - Coding Test 

Coding was typically

Round 3 - Technical 

(1 Question)

  • Q1. What programming language were used to develop the test.
Round 4 - HR 

(1 Question)

  • Q1. About work life balance

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

PMO Analyst Interview Questions & Answers

user image Anonymous

posted on 27 Sep 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. All BA technical questions
  • Q2. All reports and calculations or formula asked.

Interview Preparation Tips

Topics to prepare for Modak Analytics PMO Analyst interview:
  • Business Analysis
Interview preparation tips for other job seekers - Never ever go to interview at Modak Analytics! It's just waste of time waste company.
So rude people including HR's.
They simple send emails and invite for walking just to collect Resumes and never get back.
Far location with limited public transport and parking.
No proper interviewers to take interview, as it's small company of Analytics with limited resources so clear cut company politics was visible on faces.
Don't be surprised if you are being interviewed for Java role by a Fullstack interviewer OR PM role being interviewed by BA.
Just ont waste your time and go to companies where first round if virtual.

PMO Analyst Interview Questions asked at other Companies

Q1. What all you know about Allianz Technology?
View answer (1)

Modak Analytics interview questions for popular designations

 Software Developer

 (8)

 Software Engineer

 (3)

 Software Development Engineer

 (2)

 Project Manager

 (1)

 Application Developer

 (1)

 Scrum Master

 (1)

 Business Analyst

 (1)

 Intern

 (1)

Intern Interview Questions & Answers

user image Anonymous

posted on 13 Feb 2025

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

I was interviewed in Aug 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Java, Python, SQL Technical Questions.
Round 2 - Technical 

(2 Questions)

  • Q1. Questions from SQL, Python, Java.
  • Q2. Asked to print 2 max salary in emp table.
Round 3 - HR 

(1 Question)

  • Q1. Basic Personal questions.
Round 4 - Coding Test 

Total 10ques, 3 from python and java, 4 from SQL.

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement 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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
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 asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)
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

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement 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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
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

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 15 Mar 2024

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Duration was around 105 minutes
aptitude, python and java were sections in this round

Round 2 - Technical 

(4 Questions)

  • Q1. What are the languages based in sql
  • Ans. 

    Languages based in SQL include T-SQL, PL/SQL, and SQL/PSM.

    • T-SQL (Transact-SQL) is Microsoft's proprietary extension to SQL used in SQL Server.

    • PL/SQL (Procedural Language/SQL) is Oracle's procedural language extension to SQL.

    • SQL/PSM (SQL/Persistent Stored Modules) is a standard for defining stored procedures and functions in SQL.

  • Answered by AI
  • Q2. What do you understand by oops concepts
  • Ans. 

    Object-oriented programming concepts that focus on classes and objects

    • Encapsulation: bundling data and methods that operate on the data within a single unit

    • Inheritance: ability of a class to inherit properties and behavior from another class

    • Polymorphism: ability to present the same interface for different data types

    • Abstraction: hiding the complex implementation details and showing only the necessary features

  • Answered by AI
  • Q3. Sql queries was asked to find the second highest salary
  • Q4. Java string question based on manipulation
Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. What are the projects that you have done
  • Q3. What are your hobbies and interest and what were your achievement in your school life and college life and was asked about the background check focused on candidate's qualities

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, don't hesitate and stay honest and go with whatever you know. All the best

Skills evaluated in this interview

Data Engineer Interview Questions asked at other Companies

Q1. Optimal Strategy for a Coin Game You are playing a coin game with your friend Ninjax. There are N coins placed in a straight line. Here are the rules of the game: 1. Each coin has a value associated with it. 2. The game involves two players... read more
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

Modak Analytics Interview FAQs

How many rounds are there in Modak Analytics interview?
Modak Analytics interview process usually has 2-3 rounds. The most common rounds in the Modak Analytics interview process are Technical, Aptitude Test and HR.
How to prepare for Modak Analytics interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Modak Analytics. The most common topics and skills that interviewers at Modak Analytics expect are Python, AWS, Azure, SCALA and Hadoop.
What are the top questions asked in Modak Analytics interview?

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

  1. Logic for a program to sort an array in which we have an array of infinite leng...read more
  2. Check the given sentence is palindrome or not by taking input by us...read more
  3. Write a program to get minimum number of coin...read more
How long is the Modak Analytics interview process?

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

Recently Viewed

INTERVIEWS

LTIMindtree

No Interviews

INTERVIEWS

Fractal Analytics

No Interviews

INTERVIEWS

Digit Insurance

No Interviews

LIST OF COMPANIES

Discover companies

Find best workplace

INTERVIEWS

Fractal Analytics

No Interviews

INTERVIEWS

KPMG India

No Interviews

INTERVIEWS

Modak Analytics

No Interviews

INTERVIEWS

Dr Lal PathLabs

No Interviews

INTERVIEWS

Fractal Analytics

No Interviews

INTERVIEWS

Digit Insurance

No Interviews

Tell us how to improve this page.

Modak Analytics Interview Process

based on 19 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

Mu Sigma Interview Questions
2.6
 • 229 Interviews
Tiger Analytics Interview Questions
3.7
 • 222 Interviews
Fractal Analytics Interview Questions
4.0
 • 204 Interviews
Tredence Interview Questions
3.6
 • 123 Interviews
Axtria Interview Questions
3.1
 • 115 Interviews
AbsolutData Interview Questions
3.6
 • 9 Interviews
Crayon Data Interview Questions
3.6
 • 4 Interviews
View all

Modak Analytics Reviews and Ratings

based on 44 reviews

3.5/5

Rating in categories

3.8

Skill development

3.4

Work-life balance

3.0

Salary

3.2

Job security

3.1

Company culture

2.8

Promotions

3.5

Work satisfaction

Explore 44 Reviews and Ratings
Software Development Engineer
51 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Engineer
50 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
35 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
34 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Hadoop Administrator
25 salaries
unlock blur

₹0 L/yr - ₹0 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