Upload Button Icon Add office photos

MRI Software

Compare button icon Compare button icon Compare

Filter interviews by

MRI Software Interview Questions and Answers

Updated 9 May 2025
Popular Designations

12 Interview questions

A Senior Lease Analyst was asked 1mo ago
Q. What are CAM charges?
Ans. 

CAM charges, or Common Area Maintenance charges, cover shared expenses in commercial properties, ensuring maintenance and operational efficiency.

  • CAM charges typically include expenses for landscaping, snow removal, and janitorial services.

  • Utilities like water, electricity, and gas for common areas are often included in CAM charges.

  • Insurance costs for the property, including liability and property insurance, are pa...

View all Senior Lease Analyst interview questions
A Test Engineer was asked 6mo ago
Q. What is the difference between functional and non-functional testing?
Ans. 

Functional testing focuses on the behavior of the system, while non-functional testing focuses on performance, reliability, and usability.

  • Functional testing verifies if the software functions as expected based on the requirements.

  • Non-functional testing checks aspects like performance, reliability, and usability.

  • Examples of functional testing include unit testing, integration testing, and system testing.

  • Examples of...

View all Test Engineer interview questions
A Test Engineer was asked 6mo ago
Q. How would you automate the registration page?
Ans. 

Automate the registration page by using test automation tools and frameworks.

  • Identify the elements on the registration page such as input fields, buttons, and validation messages.

  • Use test automation tools like Selenium WebDriver to interact with the elements on the page.

  • Write test scripts in a programming language like Java or Python to automate the registration process.

  • Implement data-driven testing to test differ...

View all Test Engineer interview questions
A Software Engineer was asked 12mo ago
Q. Write a function that takes a sentence as input and returns true if the sentence contains all vowels (a, e, i, o, u), and false otherwise.
Ans. 

Check if a sentence contains all vowels (a, e, i, o, u) at least once.

  • Convert the sentence to lowercase to ensure uniformity.

  • Use a set to track the vowels found in the sentence.

  • Iterate through the sentence and add vowels to the set.

  • At the end, check if the set contains all five vowels: a, e, i, o, u.

  • Example: 'The quick brown fox jumps over a lazy dog' returns true.

View all Software Engineer interview questions
An Associate Software Engineer was asked
Q. What is a static method?
Ans. 

A static method is a method that belongs to the class itself, rather than to instances of the class.

  • Static methods can be called without creating an instance of the class.

  • They are commonly used for utility functions that do not require access to instance variables.

  • Static methods are declared using the 'static' keyword in the method signature.

  • Example: Math.max() is a static method in the Math class that returns the...

View all Associate Software Engineer interview questions
An Associate Engineer was asked
Q. Write two SQL queries.
Ans. 

Two SQL queries can be written to retrieve and manipulate data from a database effectively.

  • Query 1: SELECT * FROM employees WHERE department = 'Sales'; - Retrieves all employees in the Sales department.

  • Query 2: UPDATE products SET price = price * 1.1 WHERE category = 'Electronics'; - Increases the price of all electronic products by 10%.

View all Associate Engineer interview questions
A Product Owner was asked
Q. How would you create user stories for a feature to capture employee attendance?
Ans. 

To create user stories for capturing employee attendance, consider the needs of the stakeholders and the desired functionality.

  • Identify the stakeholders involved in the attendance tracking process (e.g., HR, managers, employees).

  • Understand the requirements and goals of each stakeholder.

  • Break down the feature into smaller user stories that address specific functionalities (e.g., clock-in/out, leave requests, report...

View all Product Owner interview questions
Are these interview questions helpful?
A Product Owner was asked
Q. Are you aware of agile methodologies?
Ans. 

Yes

  • Yes, I am aware of agile methodologies.

  • Agile methodologies are a set of principles and practices that promote iterative and incremental development.

  • They prioritize customer collaboration, flexibility, and adaptability.

  • Examples of agile methodologies include Scrum, Kanban, and Lean.

  • Agile methodologies focus on delivering value to the customer in short iterations called sprints or iterations.

View all Product Owner interview questions
A Python Developer was asked 11mo ago
Q. What is ORM and which orm you used
Ans. 

ORM stands for Object-Relational Mapping, a technique to map objects from an application to tables in a relational database.

  • ORM helps developers interact with databases using objects instead of SQL queries

  • Popular ORMs include SQLAlchemy for Python, Django ORM for Django framework

  • ORMs provide features like data validation, relationship management, and query optimization

View all Python Developer interview questions
A Software Engineer was asked
Q. Write a python code to find missing element ranging from 0 to 100. Write a SQL query to fetch data from multiple tables. Questions based on types on Joins in SQL, Stored Procedures, Views and importance of ...
Ans. 

Python code to find missing element and SQL query for fetching data from multiple tables.

  • Python code to find missing element: Use set difference to find missing elements in range 0 to 100.

  • SQL query for fetching data from multiple tables: Use JOINs like INNER JOIN, LEFT JOIN, or CROSS JOIN to combine data from multiple tables.

  • Types of Joins in SQL: INNER JOIN, LEFT JOIN, RIGHT JOIN, FULL JOIN.

  • Stored Procedures: Pre...

View all Software Engineer interview questions

MRI Software Interview Experiences

16 interviews found

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

Write program to print proper words in given string (jumbled strings) ex: resawoft
tip: backtracking and recurssion need to use
Write customized xpaths path for id="apple123" id="apple456"
Some questions are not asked in straight manner like regression testing and sanity testing.
What are hooks? name
What is POM and Page factory? difference? why are used? how you decide which to choose?
Fluent wait question and syntax?
Exceptions in selenium? how do you decide?
serialization and deserialization?
Multi threading concepts in automation framework
Webdriver interface and selenium 4 architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - Most of the questions are tricky and questions are not straight forward.
First understand question and ask again, frame answer properly.
Coding is very tough and DSA they will ask.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between functional and non-functional testing?
  • Ans. 

    Functional testing focuses on the behavior of the system, while non-functional testing focuses on performance, reliability, and usability.

    • Functional testing verifies if the software functions as expected based on the requirements.

    • Non-functional testing checks aspects like performance, reliability, and usability.

    • Examples of functional testing include unit testing, integration testing, and system testing.

    • Examples of non-...

  • Answered by AI
  • Q2. How to automate the registration page?
  • Ans. 

    Automate the registration page by using test automation tools and frameworks.

    • Identify the elements on the registration page such as input fields, buttons, and validation messages.

    • Use test automation tools like Selenium WebDriver to interact with the elements on the page.

    • Write test scripts in a programming language like Java or Python to automate the registration process.

    • Implement data-driven testing to test different s...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Why do you want to join us
  • Q2. Can you work on an international environment
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Basic DSA questions related to string and hashmap

Round 2 - One-on-one 

(2 Questions)

  • Q1. Return true if the sentence use all the vowels else false
  • Ans. 

    Check if a sentence contains all vowels (a, e, i, o, u) at least once.

    • Convert the sentence to lowercase to ensure uniformity.

    • Use a set to track the vowels found in the sentence.

    • Iterate through the sentence and add vowels to the set.

    • At the end, check if the set contains all five vowels: a, e, i, o, u.

    • Example: 'The quick brown fox jumps over a lazy dog' returns true.

  • Answered by AI
  • Q2. When to use BFS, DFS and basic DSA questions?

Python Developer Interview Questions & Answers

user image Ashwin Jain

posted on 29 Jul 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a Python Developer with 5 years of experience in web development and data analysis.

    • 5 years of experience in Python development

    • Skilled in web development and data analysis

    • Proficient in using frameworks like Django and Flask

  • Answered by AI
  • Q2. What is ORM and which orm you used
  • Ans. 

    ORM stands for Object-Relational Mapping, a technique to map objects from an application to tables in a relational database.

    • ORM helps developers interact with databases using objects instead of SQL queries

    • Popular ORMs include SQLAlchemy for Python, Django ORM for Django framework

    • ORMs provide features like data validation, relationship management, and query optimization

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst interviewer ever faced. She doesn’t know anything about what she is asking. Interrupting in between . (Anu is her name).
Not a proper way to have an interview.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. The interview was on sql first they took hacker rank test on dsa and in second round they called for f2f interview
  • Q2. They told to write two sql query
  • Ans. 

    Two SQL queries can be written to retrieve and manipulate data from a database effectively.

    • Query 1: SELECT * FROM employees WHERE department = 'Sales'; - Retrieves all employees in the Sales department.

    • Query 2: UPDATE products SET price = price * 1.1 WHERE category = 'Electronics'; - Increases the price of all electronic products by 10%.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic question on SQL
  • Q2. Aggregate function in SQL
  • Ans. 

    Aggregate functions in SQL are used to perform calculations on a set of values and return a single value.

    • Aggregate functions include SUM, AVG, COUNT, MIN, and MAX.

    • They are often used with the GROUP BY clause to group the results based on certain criteria.

    • Examples: SELECT SUM(sales) FROM orders; SELECT AVG(age) FROM employees GROUP BY department;

    • Aggregate functions ignore NULL values unless specified.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Tell me about yourself

Round 2 - One-on-one 

(1 Question)

  • Q1. What is static method
  • Ans. 

    A static method is a method that belongs to the class itself, rather than to instances of the class.

    • Static methods can be called without creating an instance of the class.

    • They are commonly used for utility functions that do not require access to instance variables.

    • Static methods are declared using the 'static' keyword in the method signature.

    • Example: Math.max() is a static method in the Math class that returns the maxi...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. It was 1 hr technical round for iOS Developer role. Questions related to project I am working, iOS Development questions like (process of publishing app, push notifications and its uses, Delegates how to u...
Round 2 - One-on-one 

(1 Question)

  • Q1. It was 30 min managerial round with one of the technical manager of MRI. Asked technical questions based on my projects. And then tricky questions like why you want to join, why we should hire you, where d...

Interview Preparation Tips

Interview preparation tips for other job seekers - Never lie in your resume.
Showcase your skills as much as you can in your resume.
You should have a very good knowledge about the project that your are working on in your current organisation.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. Anything ! From conditions, Options, Basic questions like Tenant pro rata share and proportionate share
  • Q2. CAM charges ?
  • Ans. 

    CAM charges, or Common Area Maintenance charges, cover shared expenses in commercial properties, ensuring maintenance and operational efficiency.

    • CAM charges typically include expenses for landscaping, snow removal, and janitorial services.

    • Utilities like water, electricity, and gas for common areas are often included in CAM charges.

    • Insurance costs for the property, including liability and property insurance, are part of...

  • Answered by AI
  • Q3. Type of leases
  • Ans. 

    Leases can be classified into various types, each serving different purposes and having unique characteristics.

    • Operating Lease: A lease where the lessee uses an asset without owning it, typically for a shorter term. Example: Equipment leasing.

    • Finance Lease: A long-term lease where the lessee has the option to purchase the asset at the end of the lease term. Example: Vehicle leasing.

    • Capital Lease: Similar to a finance l...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
2w
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 MRI Software?
Ask anonymously on communities.

MRI Software Interview FAQs

How many rounds are there in MRI Software interview?
MRI Software interview process usually has 2 rounds. The most common rounds in the MRI Software interview process are Technical, One-on-one Round and Aptitude Test.
How to prepare for MRI Software 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 MRI Software. The most common topics and skills that interviewers at MRI Software expect are Analytics, Agile, Javascript, SQL and MVC.
What are the top questions asked in MRI Software interview?

Some of the top questions asked at the MRI Software interview -

  1. How you would create user stories for a feature to capture employee attendan...read more
  2. Are you aware of agile methodologi...read more
  3. Write a python code to find missing element ranging from 0 to 100. Write a SQL...read more
How long is the MRI Software interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

3.2/5

based on 17 interview experiences

Difficulty level

Easy 20%
Moderate 70%
Hard 10%

Duration

Less than 2 weeks 70%
2-4 weeks 30%
View more

Interview Questions from Similar Companies

Cogoport Interview Questions
3.1
 • 53 Interviews
Treebo Hotels Interview Questions
3.2
 • 25 Interviews
KrazyBee Interview Questions
3.7
 • 17 Interviews
TravelTriangle Interview Questions
3.7
 • 13 Interviews
Synaptics Interview Questions
3.9
 • 11 Interviews
Bijnis Interview Questions
3.6
 • 10 Interviews
Sysmex Interview Questions
3.7
 • 10 Interviews
View all

MRI Software Reviews and Ratings

based on 106 reviews

3.5/5

Rating in categories

3.2

Skill development

3.8

Work-life balance

3.2

Salary

3.6

Job security

3.6

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 106 Reviews and Ratings
Software Engineer
51 salaries
unlock blur

₹5 L/yr - ₹12.8 L/yr

Lease Analyst
32 salaries
unlock blur

₹3.5 L/yr - ₹5.2 L/yr

Software Engineer2
31 salaries
unlock blur

₹7.5 L/yr - ₹13.5 L/yr

Senior Software Engineer
30 salaries
unlock blur

₹9 L/yr - ₹22.7 L/yr

QA Engineer
18 salaries
unlock blur

₹4.3 L/yr - ₹10.7 L/yr

Explore more salaries
Compare MRI Software with

Cogoport

3.1
Compare

Treebo Hotels

3.2
Compare

KrazyBee

3.7
Compare

Naaptol Online Shopping

3.4
Compare
write
Share an Interview