Upload Button Icon Add office photos
Engaged Employer

i

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

MOURI Tech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

MOURI Tech Software Engineer Interview Questions and Answers

Updated 5 Nov 2022

MOURI Tech Software Engineer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Explain projects you have done
  • Q2. What problems you faced during your experience?
Round 3 - Technical 

(2 Questions)

  • Q1. Types of process in Android ?
  • Ans. 

    There are two types of processes in Android: foreground and background.

    • Foreground processes are those that are currently visible to the user and have high priority.

    • Background processes are those that are not visible to the user and have low priority.

    • Foreground processes are given more resources and are less likely to be killed by the system.

    • Background processes are more likely to be killed by the system when resources ...

  • Answered by AI
  • Q2. Explain Android architecture
  • Ans. 

    Android architecture is a layered software stack consisting of four main layers.

    • The four main layers are: Linux kernel, Libraries, Runtime, and Application framework.

    • Linux kernel provides low-level hardware abstraction, memory management, and security.

    • Libraries include various C/C++ libraries such as SQLite, OpenGL, and SSL.

    • Runtime includes the Dalvik Virtual Machine and Android Runtime.

    • Application framework provides h...

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. What you know about the company?
  • Q2. Expectations from the organisation ?
  • Q3. Why are you living previous organisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic concepts should be clear. Try to be as genuine as possible.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Discuss 4 case study related to supply chain management.

Interview Preparation Tips

Topics to prepare for Tech Mahindra Senior Software Engineer interview:
  • Supply Chain Management
Interview preparation tips for other job seekers - Develop some case study of your own and also deep analysis for each.

I applied via Campus Placement and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They asked me the Fibonacci series then all about gate subjects like computer network and operating system

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a strong grip in programming and gate subjects..you will be selected for sure

I applied via Company Website and was interviewed before Mar 2021. There were 3 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 - Coding Test 

Java assesment.

Round 3 - HR 

(1 Question)

  • Q1. Where do you see yourself in 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company to start your career. Even if project managers or people wont support you, you will have teams and they will surely assist you with learning and progressing further.

Great to be part of Wipro!!

I applied via Walk-in and was interviewed in Jul 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Main focous on java and selenium.if you have devops knowledge then good to have..
  • Q2. Framework design,oops concept, challange you face,roles and responsibilities,agile concept etc...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, focous on core Java,do good practice to identify elements, analyse the things before you respond,be more practical,raise the concern once you stuck,try to find the solution from your end before you ask for Help,...

I applied via Naukri.com and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They asked me to build a shopping cart web application using vanilla js and gave two days time , that was the only round they had!

Interview Preparation Tips

Interview preparation tips for other job seekers - I built the app according to wireframe and they evaluated it and selected me directly!

I applied via Company Website and was interviewed before Jan 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Introduce yourself?
  • Q2. Why did you choose to be a software engineer?
  • Q3. How do you find yourself fit for this role?
  • Q4. What do you know about us?

Interview Preparation Tips

Interview preparation tips for other job seekers - Put your sight into the interviewer's eyes and be calm . Just keep on talking It's your interview you are the king don't let yourself eaten up by the questions he/she shoots at you.its fine even if you answer them partially or not at all. But don't be mum.
Also try to make sense on whatever you are speaking.
Nothing's going to stop you from working for your passion.

I applied via Naukri.com and was interviewed in Oct 2018. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Mostly questions asked from core Java, rest API and Spring boot
  • Q2. Asked from projects
  • Q3. They want to know that you ever been involved in deployment or not, if yes then what's the process.
  • Q4. H.R normally asked the salary related questions and try to negotiate in CTC.

Interview Preparation Tips

General Tips: If you are not well prepared for interview then don't give interview in Wipro, because they take very tough rounds.
Skills: Hibernate, Jsp, Spring MVC, JDBC, Solace Queue, Restful Webservices, Angular JS, Core java, Spring boot
Duration: <1 week

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on string manipulation

Interview Preparation Tips

Interview preparation tips for other job seekers - Infosys conducts easy interview and most of the questions are straight forward

I was interviewed before Nov 2020.

Round 1 - Coding Test 

(6 Questions)

Round duration - 360 minutes
Round difficulty - Medium

They give you 6 hr. For 6 question but the good part is that you need to complete atleast 1 question and you are good to go.
Round will be cleared only after attempting one question and rest of the questions are for improving your rank.

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Find pairs of elements in an array that sum up to a given value, sorted in a specific order.

    • Iterate through the array and for each element, check if the complement (S - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list.

    • Sort the result list based on the criteria mentioned in the problem statement.

  • Answered by AI
  • Q2. 

    Minimum Number of Platforms Needed Problem Statement

    You are given the arrival and departure times of N trains at a railway station for a particular day. Your task is to determine the minimum number of pl...

  • Ans. 

    The task is to determine the minimum number of platforms needed at a railway station based on arrival and departure times of trains.

    • Sort the arrival and departure times in ascending order.

    • Use two pointers to keep track of overlapping schedules.

    • Increment platform count when a new train arrives before the previous one departs.

  • Answered by AI
  • Q3. 

    Minimise Sum Problem Statement

    You are given a matrix of 'N' rows and 'M' columns and a non-negative integer 'K'. Determine the minimum possible sum of all elements in each submatrix after performing at m...

  • Ans. 

    Given a matrix and a non-negative integer K, find the minimum possible sum of all elements in each submatrix after performing at most K decrements.

    • Iterate through all submatrices and find the minimum possible sum after performing decrements

    • Keep track of the number of decrements performed on each element

    • Use dynamic programming to optimize the solution

    • Ensure not to decrease any number below 0

    • Return the minimum possible s

  • Answered by AI
  • Q4. 

    Chocolate Distribution Problem

    You are given an array/list CHOCOLATES of size 'N', where each element represents the number of chocolates in a packet. Your task is to distribute these chocolates among 'M'...

  • Ans. 

    Distribute chocolates among students to minimize the difference between the largest and smallest number of chocolates.

    • Sort the array of chocolates packets.

    • Use sliding window technique to find the minimum difference between the largest and smallest packets distributed to students.

    • Consider edge cases like when number of students is equal to number of packets.

  • Answered by AI
  • Q5. 

    Prime Time Again Problem Statement

    You are given two integers DAY_HOURS and PARTS. Consider a day with DAY_HOURS hours, which can be divided into PARTS equal parts. Your task is to determine the total ins...

  • Ans. 

    Calculate total instances of equivalent prime groups in a day divided into equal parts.

    • Divide the day into equal parts and find prime numbers in each part.

    • Identify prime groups where prime numbers occur at the same position in different parts.

    • Count the total instances of equivalent prime groups.

    • Ensure each hour in a prime group is in a different part of the day.

  • Answered by AI
  • Q6. 

    Constellation Identification Problem

    Given a matrix named UNIVERSE with 3 rows and 'N' columns, filled with characters {#, *, .}, where:

    • '*' represents stars.
    • '.' represents empty space.
    • '#' repre...
  • Ans. 

    The task is to identify constellations shaped like vowels within a matrix filled with characters {#, *, .}.

    • Iterate through the matrix to find 3x3 constellations shaped like vowels.

    • Check for vowels 'A', 'E', 'I', 'O', 'U' in each 3x3 constellation.

    • Print the vowels found in each constellation for each test case.

  • Answered by AI
Round 2 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Associate Software Engineer in MumbaiEligibility criteriaAbove 7 cgpaTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Data Structures, Python, Operating System, Algorithms, DBMSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : learn basics
Tip 2 : learn any oops language and practice.
Tip 3 : code as much as you can.

Application resume tips for other job seekers

Tip 1 : short and precise. Upto the point.
Tip 2 : keep few things aside from resume

Final outcome of the interviewSelected

Skills evaluated in this interview

MOURI Tech Interview FAQs

How many rounds are there in MOURI Tech Software Engineer interview?
MOURI Tech interview process usually has 4 rounds. The most common rounds in the MOURI Tech interview process are Technical, Resume Shortlist and HR.
How to prepare for MOURI Tech Software Engineer 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 MOURI Tech. The most common topics and skills that interviewers at MOURI Tech expect are Agile, Application Development, Coding, Computer science and Data Modeling.
What are the top questions asked in MOURI Tech Software Engineer interview?

Some of the top questions asked at the MOURI Tech Software Engineer interview -

  1. Types of process in Androi...read more
  2. explain Android architect...read more

Tell us how to improve this page.

MOURI Tech Software Engineer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more
MOURI Tech Software Engineer Salary
based on 279 salaries
₹2.5 L/yr - ₹9 L/yr
43% less than the average Software Engineer Salary in India
View more details

MOURI Tech Software Engineer Reviews and Ratings

based on 23 reviews

3.7/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.3

Salary

3.2

Job security

3.6

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 23 Reviews and Ratings
Software Engineer
279 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
270 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Specialist
196 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Consultant
193 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Architect
173 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare MOURI Tech with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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