Upload Button Icon Add office photos

Filter interviews by

MRI Software Software Engineer Level 1 Interview Questions and Answers

Updated 19 Jan 2024

MRI Software Software Engineer Level 1 Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jan 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SQL: Questions based on Joins and it's types, Views, Stored Procedures, Triggers, Indexes. Python: OOPs concepts

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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. Basic resume based questions
  • Q2. Explain your internship experience
Round 3 - HR 

(1 Question)

  • Q1. Basic resume based questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral and was interviewed in Oct 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

NEED TO QUALIFY IN THIS TEST

Round 3 - Coding Test 

NEED TO QUALIFY THIS TEST ALSO

Round 4 - Technical 

(1 Question)

  • Q1. SOME DSA AND ROLE BASED QUATIONS.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

It was a general aptitude test, the key point to be notes is, the round was only 15 mins long and we needed to solve 50 questions in that time frame.

Round 3 - Coding Test 

There were 2 questions. One being easy and the other being hard.

Round 4 - HR 

(1 Question)

  • Q1. This round was just a general discussion with the HR about the company goals and the work culture.

Interview Preparation Tips

Interview preparation tips for other job seekers - Build a great network.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test was simple.

Round 2 - Technical 

(1 Question)

  • Q1. Asked 2 questions from recursion.
Round 3 - HR 

(1 Question)

  • Q1. Simple HR round.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Jodhpur and was interviewed before Jul 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

50 questions in 12 minutes mostly test your arthimetic, logical knowledge.

Round 3 - Coding Test 

3 coding questions in 90 mins, 1st one is from arrays an easy question, 2nd one is related to stacks and queues relatively harder and last one is hard which i am also unable to attempt. I cracked the first two questions and my solutions passed all the test cases.

Round 4 - One-on-one 

(3 Questions)

  • Q1. Difference between sorting algorithms
  • Ans. 

    Sorting algorithms are methods used to arrange elements in a specific order.

    • Different sorting algorithms include bubble sort, selection sort, insertion sort, merge sort, quick sort, and heap sort.

    • Some algorithms are more efficient than others depending on the size of the data set and the initial order of the elements.

    • For example, quick sort is generally faster than bubble sort for large data sets.

  • Answered by AI
  • Q2. BFS and DFS in trees and imlementing them
  • Ans. 

    BFS and DFS are traversal algorithms used in trees. BFS explores level by level, while DFS explores depth first.

    • BFS (Breadth-First Search) visits nodes level by level, using a queue. Example: traversing a binary tree level by level.

    • DFS (Depth-First Search) explores as far as possible along each branch before backtracking. Example: in-order traversal of a binary tree.

  • Answered by AI
  • Q3. Sql questions and database questions
Round 5 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Explain the college life

Interview Preparation Tips

Interview preparation tips for other job seekers - learn the web development basics to get placed in any indian startup

Skills evaluated in this interview

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

I applied via campus placement at Indian Institute of Technology (IIT), Patna and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Coding Test 

3 Coding question medium level

Round 3 - Technical 

(1 Question)

  • Q1. Asked 3 coding queston and some basis CS questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Motilal Nehru Institute National Institute of Technology (NIT), Allahabad and was interviewed before Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - Coding Test 

Question from Array,DP

Round 3 - One-on-one 

(3 Questions)

  • Q1. Resume based only
  • Q2. Data structure and algorithms
  • Q3. Object oriented programmings
Round 4 - HR 

(1 Question)

  • Q1. Behavioural questions

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 125 minutes
Round difficulty - Easy

Platform for this round is Amcat. The First round have coding questions , we can write programs in any language . It was easy round.

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. Count Characters

    Anagrams have a unique property: the counts of each distinct character present in both strings are the same. One way to check this is: 

    1. Sort both strings, so that all the same characters come together
    2. Then loop through both strings together and check each element in both strings one by one
    3. If at any position, the characters are found to be different or if the lengths of the two strings are different, ...
  • Answered Anonymously
  • Q2. 

    Decimal to Octal Conversion Problem Statement

    Convert a given decimal number into its equivalent octal representation.

    Explanation:

    The octal number system is a base-8 system, meaning each digit ranges ...

  • Ans. Maths
    • A necessary observation for octal numbers is that every digit will lie in the range 0 - 7.
    • Create a variable sol to store the final octal representation of X and initialise sol to 0.
    • So, to convert decimal numbers to octal numbers:

                 1. Multiply previous sol value by 10, to add new remainder in the current step.

                 2. Find the r...

  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

This round was easy they basically ask about some important topics of computer science as well as related to our position for company.

  • Q1. What is the need for virtual memory?
  • Q2. 

    Delete Middle Element from Stack

    You are provided with a stack ARR of size 'N+1'. Your task is to delete the middlemost element so that the size of the resulting stack becomes 'N'.

    Recall that a stack is...

  • Ans. Recursive approach

    The idea is to use recursive calls. We first remove all items one by one, then we recur. After recursive calls, we push all items back except for the middle item.

     

    1. We have an input stack as “INPUTSTACK”, ‘N’ denotes the number of elements in the stack.
    2. We define a function "DELETEMIDDLE" that accepts, a stack of integers "STACK" and an integer “COUNT” (initially 0) as input parameters.
    3. Now we define...
  • Answered Anonymously
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

It was in the morning . Its one to one conversation. Interviewer was good enough. He ask about me and what i know about their company. What were my objectives and many more.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in NoidaEligibility criteriaAbove 7 CGPAMedTourEasy interview preparation:Topics to prepare for the interview - OOPS, STL, CPP, Socket Programming, Pointers,DBMS, Data Structures and Algorithms, Advanced Java, OOPS concepts, Problem Solving, Aptitude and ReasoningTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Aptitude Questions from IndiaBix
Tip 2 : Continue practice on online coding platforms and do participate in coding challenges. 
Tip 3 : Keep revising your Computer Science fundamentals(OS, DBMS, Software Engineering principles).
Tip 4 : Also brush-up your aptitude skills.

Application resume tips for other job seekers

Tip 1 : Add only what you know properly. don't add extra stuff just to add weight to your resume.
Tip 2 : First page of the resume must in tabular form and it must give complete information about you in very simple manner.
Tip 3 : Use professional Keywords in your resume. 
Tip 4 : Highlight your Skills and Achievements. Put only those skills in which you are good like any question can be asked on any particular skill. Like how you will do this in this.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Dec 2016.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself tell me about your internship My interview was unstructured(i.e based on your reply interviewer was asking Questions)

Interview Preparation Tips

Round: Test
Experience: Questions were very difficult and solving one Question gets you shortlisted for interview
I don't remember the Questions
Duration: 1 hour 30 minutes
Total Questions: 2

Skills: Internship Work, Inter Person Communication Skills
College Name: IIT Roorkee

MRI Software Interview FAQs

How many rounds are there in MRI Software Software Engineer Level 1 interview?
MRI Software interview process usually has 1 rounds. The most common rounds in the MRI Software interview process are Technical.
How to prepare for MRI Software Software Engineer Level 1 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, Debugging, Front End, JQuery and Javascript.

Tell us how to improve this page.

MRI Software Software Engineer Level 1 Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Yardi Systems Interview Questions
3.8
 • 68 Interviews
RealPage Interview Questions
3.6
 • 64 Interviews
Cogoport Interview Questions
2.8
 • 52 Interviews
Entrata Interview Questions
4.4
 • 34 Interviews
Treebo Hotels Interview Questions
3.3
 • 22 Interviews
KrazyBee Interview Questions
3.7
 • 14 Interviews
TravelTriangle Interview Questions
3.8
 • 13 Interviews
Synaptics Interview Questions
3.8
 • 10 Interviews
Bijnis Interview Questions
3.8
 • 10 Interviews
View all
MRI Software Software Engineer Level 1 Salary
based on 11 salaries
₹4.8 L/yr - ₹7 L/yr
38% less than the average Software Engineer Level 1 Salary in India
View more details
Software Engineer
39 salaries
unlock blur

₹5 L/yr - ₹14.5 L/yr

Lease Analyst
24 salaries
unlock blur

₹3.7 L/yr - ₹5 L/yr

Senior Software Engineer
23 salaries
unlock blur

₹9 L/yr - ₹22 L/yr

Software Engineer2
15 salaries
unlock blur

₹6.5 L/yr - ₹18 L/yr

Product Owner
15 salaries
unlock blur

₹15 L/yr - ₹26 L/yr

Explore more salaries
Compare MRI Software with

Yardi Systems

3.8
Compare

RealPage

3.6
Compare

Buildium

5.0
Compare

Entrata

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