AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Modak Analytics

Compare button icon Compare button icon Compare
3.4

based on 47 Reviews

Play video Play video Video summary
  • About
  • Reviews
    47
  • Salaries
    491
  • Interviews
    23
  • Jobs
    1
  • Benefits
    10
  • Photos
    -

Filter interviews by

Modak Analytics Interview Questions and Answers

Updated 10 Mar 2025
Popular Designations

14 Interview questions

A Softwaretest Engineer was asked 3mo ago
Q. Display the student name with grade from 8 to 9.
Ans. 

Retrieve student names with grades between 8 and 9 from a dataset, filtering based on specified criteria.

  • Data Source: Ensure you have access to a dataset containing student names and their corresponding grades.

  • Filtering Logic: Use a filtering mechanism (like a loop or a query) to select students whose grades are between 8 and 9.

  • Example: If using JavaScript, you might use the filter method: students.filter(student ...

View all Softwaretest Engineer interview questions
A Softwaretest Engineer was asked 3mo ago
Q. SELECT stdname FROM student WHERE cgpa BETWEEN 8 AND 9
Ans. 

This SQL query retrieves student names with a CGPA between 8 and 9 from the student database.

  • SQL Query Structure: The query uses the SELECT statement to specify the column (stdname) to retrieve from the student table.

  • BETWEEN Operator: The BETWEEN operator is used to filter records where the CGPA falls within the specified range (8 to 9).

  • Data Retrieval: This query will return all student names whose CGPA is greater...

View all Softwaretest Engineer interview questions
An Intern was asked 4mo ago
Q. Write a query to find the second highest salary from an employee table.
Ans. 

To find the top two maximum salaries from the emp table, we can use SQL queries with ORDER BY and LIMIT clauses.

  • Use SQL query: SELECT DISTINCT salary FROM emp ORDER BY salary DESC LIMIT 2;

  • DISTINCT ensures unique salary values are considered.

  • ORDER BY salary DESC sorts the salaries in descending order.

  • LIMIT 2 restricts the output to the top two salaries.

View all Intern interview questions
A Software Development Engineer was asked 7mo ago
Q. Write a program to check if a given sentence is a palindrome or not, taking input from the 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

View all Software Development Engineer interview questions
A Software Engineer was asked 7mo ago
Q. What is the difference between count and 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

View all Software Engineer interview questions
A Data Engineer was asked
Q. What languages are based on 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.

View all Data Engineer interview questions
A Data Engineer was asked
Q. What is your understanding of 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

View all Data Engineer interview questions
Are these interview questions helpful?
A Data Engineer was asked
Q. Write SQL queries to find the second highest salary.
Ans. 

To find the second highest salary, we can use SQL queries with various methods like subqueries or the DISTINCT clause.

  • Use a subquery: SELECT MAX(salary) FROM employees WHERE salary < (SELECT MAX(salary) FROM employees);

  • Use DISTINCT: SELECT DISTINCT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 1;

  • Use ROW_NUMBER(): SELECT salary FROM (SELECT salary, ROW_NUMBER() OVER (ORDER BY salary DESC) AS rank FRO...

View all Data Engineer interview questions
A Project Manager was asked
Q. What are the three biggest learnings?
Ans. 

The three biggest learnings as a Project Manager

  • Importance of effective communication

  • Adaptability and flexibility in managing changes

  • The significance of risk management

View all Project Manager interview questions
A Software Engineer was asked
Q. Write a program to determine the minimum number of coins needed to make change for a given amount using a set of coin denominations.
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

View all Software Engineer interview questions
1 2

Modak Analytics Interview Experiences

23 interviews found

Software Development Engineer Interview Questions & Answers

user image Anonymous

posted on 10 Nov 2024

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.
  • Add your answer
  • 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
    Add your answer
  • Q3. Final,Finally,finalize keywords
  • Add your answer
Round 3 - HR 

(2 Questions)

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

Interview Preparation Tips

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

Skills evaluated in this interview

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 12 Feb 2025

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

    The test was developed using a combination of programming languages tailored for specific functionalities.

    • JavaScript was used for front-end development to create interactive user interfaces.

    • Python was utilized for back-end services due to its simplicity and extensive libraries.

    • SQL was employed for database management to handle data storage and retrieval efficiently.

    • Java could have been used for building robust server-s...

  • Answered by AI
    Add your answer
Round 4 - HR 

(1 Question)

  • Q1. About work life balance
  • Add your answer
Anonymous

Softwaretest Engineer Interview Questions & Answers

user image Anonymous

posted on 10 Mar 2025

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

I appeared for an interview in Sep 2024.

Round 1 - Aptitude Test 

In that apptitude, reasoning,verbal,SQL queries

Round 2 - Technical 

(3 Questions)

  • Q1. In that based on resume questions asked like skills Java so preferred language asked basic coding problems and SQL queries
  • Add your answer
  • Q2. Display the student name with grade from 8 to 9
  • Ans. 

    Retrieve student names with grades between 8 and 9 from a dataset, filtering based on specified criteria.

    • Data Source: Ensure you have access to a dataset containing student names and their corresponding grades.

    • Filtering Logic: Use a filtering mechanism (like a loop or a query) to select students whose grades are between 8 and 9.

    • Example: If using JavaScript, you might use the filter method: students.filter(student =>...

  • Answered by AI
    Add your answer
  • Q3. Select stdname from student where cgpa between 8 and 9
  • Ans. 

    This SQL query retrieves student names with a CGPA between 8 and 9 from the student database.

    • SQL Query Structure: The query uses the SELECT statement to specify the column (stdname) to retrieve from the student table.

    • BETWEEN Operator: The BETWEEN operator is used to filter records where the CGPA falls within the specified range (8 to 9).

    • Data Retrieval: This query will return all student names whose CGPA is greater than...

  • Answered by AI
    Add your answer
Round 3 - HR 

(2 Questions)

  • Q1. In that it's like all about communication
  • Add your answer
  • Q2. What are your hobbies? What do you get by that
  • Ans. 

    I enjoy reading, hiking, and coding personal projects, which enhance my creativity, problem-solving skills, and overall well-being.

    • Reading: Expands my knowledge and improves my analytical skills. For example, I recently read a book on software architecture.

    • Hiking: Helps me stay physically active and clear my mind, allowing for better focus when I return to work.

    • Coding personal projects: Keeps my programming skills shar...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - confident in technically I easily cracked technical round hr interview i don't cracked
Anonymous

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
  • Add your answer
  • Q2. All reports and calculations or formula asked.
  • Add your answer

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

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 appeared for an interview in Aug 2024.

Round 1 - Technical 

(1 Question)

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

(2 Questions)

  • Q1. Questions from SQL, Python, Java.
  • Add your answer
  • Q2. Asked to print 2 max salary in emp table.
  • Ans. 

    To find the top two maximum salaries from the emp table, we can use SQL queries with ORDER BY and LIMIT clauses.

    • Use SQL query: SELECT DISTINCT salary FROM emp ORDER BY salary DESC LIMIT 2;

    • DISTINCT ensures unique salary values are considered.

    • ORDER BY salary DESC sorts the salaries in descending order.

    • LIMIT 2 restricts the output to the top two salaries.

  • Answered by AI
    Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Basic Personal questions.
  • Add your answer
Round 4 - Coding Test 

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

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 22 Aug 2024

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
    Add your answer
  • 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
    Add your answer
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
    Add your answer
  • Q2. SQL based questions
  • Add your answer
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
    Add your answer
  • 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
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - It was easy

Skills evaluated in this interview

Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 29 Oct 2024

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
  • Add your answer
  • Q2. Difference between count, count(*)
  • Add your answer

Skills evaluated in this interview

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 18 Nov 2024

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

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 21 Sep 2024

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

Anonymous

Software Developer Interview Questions & Answers

user image Sairam

posted on 11 Aug 2024

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
Anonymous

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Modak Analytics?
Ask anonymously on communities.
More about working at Modak Analytics
  • HQ - Sheridan, Wyoming, United States (USA)
  • Analytics & KPO
  • 201-500 Employees (India)
  • Financial Services

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.

Tell us how to improve this page.

Modak Analytics Interviews By Designations

  • Modak Analytics Software Developer Interview Questions
  • Modak Analytics Software Engineer Interview Questions
  • Modak Analytics Software Development Engineer Interview Questions
  • Modak Analytics Project Manager Interview Questions
  • Modak Analytics Application Developer Interview Questions
  • Modak Analytics Scrum Master Interview Questions
  • Modak Analytics Business Analyst Interview Questions
  • Modak Analytics Intern Interview Questions
  • Show more
  • Modak Analytics Data Engineer Interview Questions
  • Modak Analytics Associate Software Engineer Interview Questions

Interview Questions for Popular Designations

  • Software Developer Interview Questions
  • Analyst Interview Questions
  • Software Engineer Interview Questions
  • Intern Interview Questions
  • Business Analyst Interview Questions
  • Senior Associate Interview Questions
  • Sales Executive Interview Questions
  • Associate Software Engineer Interview Questions
  • Show more
  • Accountant Interview Questions
  • Assistant Manager Interview Questions

Overall Interview Experience Rating

3.9/5

based on 20 interview experiences

Difficulty level

Easy 29%
Moderate 71%

Duration

Less than 2 weeks 88%
2-4 weeks 6%
4-6 weeks 6%
View more

Interview Questions from Similar Companies

Sigmoid
Sigmoid Interview Questions
3.4
 • 62 Interviews
ZoomRx
ZoomRx Interview Questions
3.0
 • 38 Interviews
Value Rcm Solutions
Value Rcm Solutions Interview Questions
4.1
 • 32 Interviews
Jasper Colin
Jasper Colin Interview Questions
4.1
 • 31 Interviews
Dunnhumby
Dunnhumby Interview Questions
4.0
 • 31 Interviews
InSync Analytics
InSync Analytics Interview Questions
2.4
 • 31 Interviews
Everest Group
Everest Group Interview Questions
3.3
 • 25 Interviews
Institutional Shareholder Services
Institutional Shareholder Services Interview Questions
3.7
 • 23 Interviews
GfK MODE
GfK MODE Interview Questions
3.4
 • 23 Interviews
Unimrkt Research
Unimrkt Research Interview Questions
3.2
 • 23 Interviews
View all

Modak Analytics Reviews and Ratings

based on 47 reviews

3.4/5

Rating in categories

3.8

Skill development

3.3

Work-life balance

2.9

Salary

3.1

Job security

3.1

Company culture

2.7

Promotions

3.6

Work satisfaction

Explore 47 Reviews and Ratings
Jobs at Modak Analytics
Modak Analytics
Modak Analytics - Reltio MDM Developer - Talend/Informatica (3-8 yrs)

3-8 Yrs

Not Disclosed

Explore more jobs
Modak Analytics Salaries in India
Software Development Engineer
57 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Data Engineer
50 salaries
unlock blur

₹5 L/yr - ₹13 L/yr

Software Developer
36 salaries
unlock blur

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

Markelytics Solutions

4.8
Compare
Jasper Colin

Jasper Colin

4.1
Compare
GfK MODE

GfK MODE

3.4
Compare
Dunnhumby

Dunnhumby

4.0
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Modak Analytics Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter