Upload Button Icon Add office photos

Mirafra Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Mirafra Technologies Senior Software Engineer Interview Questions and Answers

Updated 4 Mar 2025

Mirafra Technologies Senior Software Engineer Interview Experiences

5 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I appeared for an interview in Feb 2025.

Round 1 - Coding Test 

Virtual round for fundamental coding.

Round 2 - Assignment 

Physical round for coding assignment given on a paper.

Round 3 - One-on-one 

(4 Questions)

  • Q1. How does twisted cable work? How to see CAN voltage levels on Oscilloscope?
  • Ans. 

    Twisted cables reduce electromagnetic interference and CAN voltage levels can be observed using an oscilloscope.

    • Twisted cables consist of pairs of wires twisted together to cancel out electromagnetic interference.

    • The twisting helps maintain a consistent impedance, reducing signal degradation over distance.

    • To see CAN voltage levels, connect the oscilloscope probes to the CAN High and CAN Low lines.

    • Set the oscilloscope t...

  • Answered by AI
  • Q2. Swap the bits in a byte.
  • Ans. 

    Swapping bits in a byte involves exchanging the positions of bits within an 8-bit binary number.

    • A byte consists of 8 bits, indexed from 0 to 7.

    • To swap bits, you can exchange pairs: (0, 7), (1, 6), (2, 5), (3, 4).

    • Example: For byte 10110010, swapping gives 01011001.

    • Use bitwise operations: AND, OR, and XOR to manipulate bits efficiently.

    • In programming, you can use masks to isolate and swap bits.

  • Answered by AI
  • Q3. Why you want to join the company?
  • Ans. 

    I am excited to join the company for its innovative projects, collaborative culture, and opportunities for professional growth.

    • The company's commitment to cutting-edge technology aligns with my passion for innovation, as seen in my previous work on AI-driven applications.

    • I admire the collaborative culture here, which fosters teamwork and knowledge sharing, similar to my experience in agile development teams.

    • The opportu...

  • Answered by AI
  • Q4. How soon you can join the company?
  • Ans. 

    I can join the company in two weeks, allowing time for a smooth transition from my current role.

    • I need to provide my current employer with a two-week notice period.

    • This timeframe ensures I can wrap up ongoing projects and hand over responsibilities.

    • If needed, I can negotiate a quicker start date if my current employer agrees.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on fundamental coding, bitwise operations and your worked projects.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Some technical question on advanced java
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based question design swiggy app on microservice architecture

Senior Software Engineer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q2. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q3. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q4. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q5. K Largest Elements Problem Statement You are given an integer k a ... read more
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 2 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 

First Round was pretty basic and coding questions was medium in Python and React.
Then coding assignment from client and then Manager Round followed by HR Round

I applied via Naukri.com and was interviewed in Jun 2022. 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 tips
Round 2 - Technical 

(1 Question)

  • Q1. On python, on storage
Round 3 - Technical 

(1 Question)

  • Q1. On python , oops concept ,
Round 4 - HR 

(1 Question)

  • Q1. Why you are changing the job

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and work on the skills and good communication

Mirafra Technologies interview questions for designations

 Software Engineer

 (7)

 Senior Software Developer

 (1)

 Embedded Software Engineer

 (4)

 Software Engineer Trainee

 (1)

 Software Engineer Level 1

 (1)

 Software Developer

 (3)

 Senior Engineer

 (1)

 Verification Engineer

 (1)

Interview Questionnaire 

2 Questions

  • Q1. 1. Basic testing questions
  • Q2. 2. Question related to API and sql

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Java, servlet jsp
  • Q2. Redirction in java
  • Ans. 

    Redirection in Java is the process of forwarding a request from one URL to another URL.

    • Redirection is achieved using the HttpServletResponse.sendRedirect() method.

    • It is commonly used for handling authentication and authorization.

    • Redirection can be permanent or temporary, depending on the HTTP status code used.

    • Examples of HTTP status codes used for redirection are 301, 302, and 307.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - basic answer of it, and explain about project

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your Protect?
  • Q2. Questions on C++
Round 2 - Technical 

(2 Questions)

  • Q1. Day to day tasks
  • Ans. 

    Day to day tasks involve coding, debugging, testing, and collaborating with team members.

    • Writing code for new features or fixing bugs

    • Debugging and troubleshooting issues

    • Testing code to ensure quality and functionality

    • Collaborating with team members on projects

    • Participating in code reviews and providing feedback

  • Answered by AI
  • Q2. Team management questions
Round 3 - HR 

(2 Questions)

  • Q1. Salary negotiations
  • Q2. Bahaviour questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Major questions were around problem solving, strings

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Add two linked list
  • Ans. 

    To add two linked lists, iterate through both lists simultaneously and add corresponding nodes, considering carry from previous addition.

    • Create a dummy node to hold the result.

    • Initialize current node to dummy node.

    • Iterate through both lists, adding values and carry from previous addition.

    • Move to next nodes in both lists.

    • Handle cases where one list is longer than the other.

    • Handle final carry if present.

  • Answered by AI
  • Q2. Find shortest path in graph
  • Ans. 

    Use Dijkstra's algorithm to find the shortest path in a graph

    • Implement Dijkstra's algorithm to find the shortest path between two nodes in a graph

    • Maintain a priority queue to keep track of the shortest distance to each node

    • Update the shortest distance to each node as you traverse the graph

    • Track the path by storing the previous node for each node visited

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Check tree is BST
  • Ans. 

    Check if a binary tree is a Binary Search Tree (BST)

    • Perform an in-order traversal of the tree and check if the resulting array is sorted

    • Keep track of the previous node value during traversal to compare with the current node value

    • Ensure that each node's value is greater than the previous node's value in the in-order traversal

  • Answered by AI
  • Q2. Check substring palindrome or not
  • Ans. 

    Check if a substring in an array of strings is a palindrome or not.

    • Iterate through each string in the array

    • For each string, check if any of its substrings are palindromes

    • Return true if a palindrome substring is found, false otherwise

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Reverse linked list recursively
  • Ans. 

    Reverse a linked list recursively

    • Create a recursive function to reverse the linked list

    • Pass the current node and its next node as parameters

    • Update the next pointer of the current node to point to the previous node

  • Answered by AI
  • Q2. Check if two stacks are equal
  • Ans. 

    Check if two stacks are equal by comparing each element in the stacks

    • Pop elements from both stacks and compare them one by one

    • If the sizes of the stacks are different, they are not equal

    • If any element in the stacks is different, they are not equal

  • Answered by AI

Skills evaluated in this interview

Mirafra Technologies Interview FAQs

How many rounds are there in Mirafra Technologies Senior Software Engineer interview?
Mirafra Technologies interview process usually has 3 rounds. The most common rounds in the Mirafra Technologies interview process are Technical, Resume Shortlist and Coding Test.
What are the top questions asked in Mirafra Technologies Senior Software Engineer interview?

Some of the top questions asked at the Mirafra Technologies Senior Software Engineer interview -

  1. How does twisted cable work? How to see CAN voltage levels on Oscillosco...read more
  2. Swap the bits in a by...read more
  3. scenario based question design swiggy app on microservice architect...read more

Tell us how to improve this page.

Mirafra Technologies Senior Software Engineer Interview Process

based on 4 interviews

1 Interview rounds

  • Resume Shortlist Round
View more
Mirafra Technologies Senior Software Engineer Salary
based on 274 salaries
₹5.7 L/yr - ₹20 L/yr
14% less than the average Senior Software Engineer Salary in India
View more details

Mirafra Technologies Senior Software Engineer Reviews and Ratings

based on 30 reviews

4.2/5

Rating in categories

3.6

Skill development

4.0

Work-life balance

4.1

Salary

3.7

Job security

4.0

Company culture

3.5

Promotions

3.7

Work satisfaction

Explore 30 Reviews and Ratings
Senior Software Engineer
274 salaries
unlock blur

₹5.7 L/yr - ₹20 L/yr

Member Technical Staff
140 salaries
unlock blur

₹10 L/yr - ₹31 L/yr

Software Engineer
112 salaries
unlock blur

₹3 L/yr - ₹14 L/yr

Physical Design Engineer
54 salaries
unlock blur

₹5 L/yr - ₹17.1 L/yr

Software Engineer2
50 salaries
unlock blur

₹5 L/yr - ₹12.8 L/yr

Explore more salaries
Compare Mirafra Technologies with

Apar Industries

4.1
Compare

TDK India Private Limited

3.8
Compare

Molex

3.8
Compare

Micron Technology

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