Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Mordor Intelligence Team. If you also belong to the team, you can get access from here

Mordor Intelligence Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Mordor Intelligence Senior Software Engineer Interview Questions and Answers

Updated 1 Aug 2024

Mordor Intelligence Senior Software Engineer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Basic DSA and fronted questions were asked

Round 2 - HR 

(2 Questions)

  • Q1. Salary negosiation
  • Q2. Joining data and basic HR questions wew asked

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was asked based on scenarios, all were practical questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't join as a contractor. Join only if you are permanent with Deloitte.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

They will ask some simple algorithmic questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. Very friendly face to face interview simple questions will be asked base on your level of expertise
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is difference between function and stored procedure
  • Ans. 

    Functions return a single value, while stored procedures can perform multiple operations and return multiple values.

    • Functions return a single value, while stored procedures can return multiple values.

    • Functions are called in SQL statements, while stored procedures are called using EXECUTE statement.

    • Functions cannot have output parameters, while stored procedures can have output parameters.

    • Functions cannot modify server ...

  • Answered by AI
  • Q2. How to implement custom exception in MVC
  • Ans. 

    Custom exceptions can be implemented in MVC by creating a new class that inherits from Exception class.

    • Create a new class that inherits from Exception class

    • Override the constructor to pass a custom message to the base Exception class

    • Throw the custom exception in the MVC controller or service layer

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Questions were mainly based on work experience and resume
  • Q2. AWS Question regarding S3, saprk memory

I applied via Job Portal and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Data Structure questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is totally based on Data structure snf algorithm and some java questions and system design HLD.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2023. 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 Resume tips
Round 2 - Aptitude Test 

Mix of coding, aptitude, java, javascript

Round 3 - Technical 

(2 Questions)

  • Q1. Resume based questions on project
  • Q2. Basic SQL, Java streams questions
Round 4 - Technical 

(5 Questions)

  • Q1. Project related questions
  • Q2. Internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where the pair will be stored.

    • If multiple keys hash to the same index, a collision occurs and the pairs are stored in a linked list at that index.

    • To...

  • Answered by AI
  • Q3. Design patterns I've used
  • Ans. 

    I have used design patterns such as Singleton, Factory, and Observer in my projects.

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Factory pattern creates objects without specifying the exact class of object that will be created.

    • Observer pattern defines a one-to-many dependency between objects so that when one object changes state, all its dependents are notified and

  • Answered by AI
  • Q4. Print whole Fibonacci series using recursion.
  • Ans. 

    Print Fibonacci series using recursion

    • Define a recursive function to calculate Fibonacci numbers

    • Base case: return 0 if n is 0, return 1 if n is 1

    • Recursive case: return sum of previous two Fibonacci numbers

    • Print each Fibonacci number in the series

  • Answered by AI
  • Q5. Show my Github projects, and the interviewer didn't even properly looked into the code.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare:
Core java concepts,
Well written resume with proper understanding of every project.
SQL,
Basic coding questions
Design patterns, solid etc.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Minimum in Rotated Sorted array
  • Ans. 

    Find the minimum element in a rotated sorted array.

    • Perform binary search to find the pivot point where the array is rotated.

    • Compare the element at pivot point to the first element to determine which half to search for the minimum.

    • Continue binary search in the appropriate half to find the minimum element.

  • Answered by AI
  • Q2. API and DB Schema for Instagram based application.
  • Ans. 

    API for Instagram application to interact with user data and DB schema to store user information and posts.

    • API endpoints for user authentication, posting photos, liking photos, following users, etc.

    • DB schema with tables for users, posts, comments, likes, followers, etc.

    • Example API endpoint: /users/{userId}/posts to retrieve all posts by a specific user.

    • Example DB schema: Users table with columns for username, email, pr

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Resume introspection, AWS, K8s

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Third party took the interview. Basics of programming and database were asked.
Round 2 - Technical 

(1 Question)

  • Q1. Asked to build a small game. LLD round.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 simple coding questions

Round 2 - Technical 

(3 Questions)

  • Q1. Merge sort with list
  • Ans. 

    Merge sort is a divide and conquer algorithm that recursively divides the input array into smaller subarrays, sorts them, and then merges them back together.

    • Divide the input list into two halves

    • Recursively apply merge sort to each half

    • Merge the sorted halves back together

  • Answered by AI
  • Q2. Similar to coin exchange DP
  • Q3. SQL query medium level

Interview Preparation Tips

Topics to prepare for Nielsen Senior Software Engineer interview:
  • DSA
  • Design Patterns
Interview preparation tips for other job seekers - I would suggest not to take interview or join this company . They already have some people who they want to take and they just take some rounds of you and even if it goes extremely good they wont contact you back . Work here is also not good they tell as developer and will make you do devops writing yml files . This is what I heard from people inside . Even if you get this offer don't consider as first choice . This is my advice to people who are looking to apply here

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Mordor Intelligence Interview FAQs

How many rounds are there in Mordor Intelligence Senior Software Engineer interview?
Mordor Intelligence interview process usually has 2 rounds. The most common rounds in the Mordor Intelligence interview process are Coding Test and HR.
What are the top questions asked in Mordor Intelligence Senior Software Engineer interview?

Some of the top questions asked at the Mordor Intelligence Senior Software Engineer interview -

  1. Joining data and basic HR questions wew as...read more
  2. salary negosiat...read more

Recently Viewed

LIST OF COMPANIES

10405090xyzabc

Locations

INTERVIEWS

Aadiswan Info Consultants

No Interviews

INTERVIEWS

Aadiswan Info Consultants

No Interviews

SALARIES

Agilent Technologies

LIST OF COMPANIES

Aadiswan Info Consultants

Locations

INTERVIEWS

10405090xyzabc

20 top interview questions

INTERVIEWS

American Express

No Interviews

INTERVIEWS

Ather Energy

No Interviews

INTERVIEWS

Guidewire Software

No Interviews

INTERVIEWS

10405090xyzabc

No Interviews

Tell us how to improve this page.

Mordor Intelligence Senior Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Mordor Intelligence Senior Software Engineer Salary
based on 5 salaries
₹18 L/yr - ₹18.9 L/yr
23% more than the average Senior Software Engineer Salary in India
View more details
Research Analyst
221 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Research Analyst
116 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Research Associate
104 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Market Research Analyst
52 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Lead Analyst
28 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Mordor Intelligence with

Frost & Sullivan

3.1
Compare

TechSci Research

2.6
Compare

Markets and Markets

3.2
Compare

Transparency Market Research

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