Upload Button Icon Add office photos

Mirafra Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Mirafra Technologies Interview Questions, Process, and Tips

Updated 4 Mar 2025

Top Mirafra Technologies Interview Questions and Answers

View all 28 questions

Mirafra Technologies Interview Experiences

Popular Designations

49 interviews found

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

(1 Question)

  • Q1. What is angular lifecycle
  • Ans. 

    Angular lifecycle refers to the sequence of events that occur from the creation of a component to its destruction.

    • Angular components go through various lifecycle hooks such as ngOnInit, ngOnChanges, ngOnDestroy, etc.

    • These hooks allow developers to perform actions at specific points in the component's lifecycle.

    • For example, ngOnInit is used to initialize data in a component when it is first created.

    • ngOnChanges is called...

  • Answered by AI

Skills evaluated in this interview

Senior Front end Developer Interview Questions asked at other Companies

Q1. Discuss a time when you had to refactor a large codebase. How did you approach the task, and what steps did you take to ensure that the code remained maintainable and scalable?
View answer (1)

Intern Interview Questions & Answers

user image Anonymous

posted on 18 Nov 2023

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

I applied via Recruitment Consulltant and was interviewed in May 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 tips
Round 2 - Coding Test 

C++,DSA,OOPs Concept

Round 3 - Technical 

(4 Questions)

  • Q1. Virtual function inheritance Tree Graph STL
  • Q2. Virtual Function
  • Q3. Unordered Map Map Multimap
  • Ans. 

    Unordered Map is a container that stores key-value pairs with unique keys. Map is a container that stores key-value pairs with unique keys. Multimap is a container that stores key-value pairs with duplicate keys.

    • Unordered Map does not maintain any particular order of elements.

    • Map maintains the order of elements based on the key's comparison function.

    • Multimap allows duplicate keys and stores them in sorted order.

  • Answered by AI
  • Q4. Polymorphism runtime
Round 4 - One-on-one 

(1 Question)

  • Q1. Smart Pointer Function pointer Operator overloading

Skills evaluated in this interview

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Implement strstr

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
View answer (1)
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

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Mirafra Technologies interview questions for popular designations

 Software Engineer

 (7)

 Senior Software Engineer

 (5)

 Embedded Software Engineer

 (4)

 Software Developer

 (3)

 Design & Verification Engineer

 (3)

 Python Developer

 (2)

 Data Scientist

 (1)

 Senior Engineer

 (1)

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Coding test is the first test here

Round 3 - Technical 

(2 Questions)

  • Q1. 1.Tech quetions from c, pyrhon, embedded systems?
  • Q2. 2.The next is tech hr and programming questions?

Interview Preparation Tips

Interview preparation tips for other job seekers - The worst company in the world and please dont join this organization

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)

Get interview-ready with Top Mirafra Technologies Interview Questions

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2022. 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 - One-on-one 

(1 Question)

  • Q1. Experience related, product lifecycle
Round 3 - One-on-one 

(1 Question)

  • Q1. Experience, product related

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't even care to attend !!
The most unprofessional company and leadership I've ever seen in job search. Leadership members never listen, keeps interrupting and brag like they know everything. Sheer waste of time and even employee reviews aren't good

Associate Product Manager Interview Questions asked at other Companies

Q1. 2. You have water filled Jar X and empty Jar Y. You transferred a portion of water from Jar X to Y using spunch which absorbs A% of water and it pours B% of water in Jar B. After one iteration, Z ml of water is present in Jar Y find water i... read more
View answer (2)

Jobs at Mirafra Technologies

View all
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in 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 - One-on-one 

(2 Questions)

  • Q1. Why we should use auto keyword in local scope only
  • Ans. 

    Using auto keyword in local scope only ensures type safety and avoids unintended side effects.

    • Auto keyword deduces the type of the variable from its initializer expression.

    • Using auto in local scope avoids unintended type conversions and promotes type safety.

    • Auto keyword should not be used for function parameters or class members.

    • Example: auto x = 10; // x is deduced as int

    • Example: auto y = 3.14; // y is deduced as doub

  • Answered by AI
  • Q2. Why the default value of reg keyword is garbage value only
  • Ans. 

    The default value of reg keyword is garbage value due to performance optimization.

    • Garbage value is faster to assign than initializing to a specific value.

    • Initializing to a specific value would require additional instructions and memory access.

    • The value of reg keyword is expected to be overwritten before use.

    • Garbage value can help in detecting uninitialized variables during testing.

    • Example: int x; // x will have a garba

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Person should be calm, and understand the question properly, then we can able to give the answer

Skills evaluated in this interview

Embedded Software Engineer Interview Questions asked at other Companies

Q1. 3. 1)Do you know about Autosar. 2)define function definition and function declaration. 3)difference between structure and union. 4) define Enumeration 5)what is microcontroller and microprocessor and its applications 6)where we uses in real... read more
View answer (1)

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

(1 Question)

  • Q1. Python Boosting Random Forest NLP Cnn
Round 3 - Technical 

(1 Question)

  • Q1. Scenario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics of all the concepts and mathematics behind the algorithms

Data Scientist Interview Questions asked at other Companies

Q1. for a data with 1000 samples and 700 dimensions, how would you find a line that best fits the data, to be able to extrapolate? this is not a supervised ML problem, there's no target. and how would you do it, if you want to treat this as a s... read more
View answer (5)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Past Experience
  • Q2. Roles & Responsibilities

Assistant Learning and Development Manager Interview Questions asked at other Companies

Q1. Nuances of L&D in terms of building the process from scratch
View answer (1)
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

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Mirafra Technologies Interview FAQs

How many rounds are there in Mirafra Technologies interview?
Mirafra Technologies interview process usually has 2-3 rounds. The most common rounds in the Mirafra Technologies interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Mirafra Technologies 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 Mirafra Technologies. The most common topics and skills that interviewers at Mirafra Technologies expect are Python, Javascript, C++, RTOS and C.
What are the top questions asked in Mirafra Technologies interview?

Some of the top questions asked at the Mirafra Technologies interview -

  1. Why the default value of reg keyword is garbage value o...read more
  2. Why we should use auto keyword in local scope o...read more
  3. what is data structures and types with examples of all ty...read more
How long is the Mirafra Technologies interview process?

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

Tell us how to improve this page.

Mirafra Technologies Interview Process

based on 37 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Cyient Interview Questions
3.6
 • 283 Interviews
Sasken Interview Questions
3.8
 • 79 Interviews
Einfochips Interview Questions
3.3
 • 72 Interviews
View all

Mirafra Technologies Reviews and Ratings

based on 228 reviews

4.1/5

Rating in categories

3.7

Skill development

4.1

Work-life balance

3.8

Salary

3.8

Job security

4.0

Company culture

3.6

Promotions

3.7

Work satisfaction

Explore 228 Reviews and Ratings
Dft Design Engineer

Noida,

Bangalore / Bengaluru

3-8 Yrs

Not Disclosed

Emulation Engineer

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Sales Manager - Application & Digital IT Service Sales

Bangalore / Bengaluru

10-15 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
257 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Member Technical Staff
139 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
106 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Physical Design Engineer
54 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
51 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Mirafra Technologies with

Sasken

3.8
Compare

Einfochips

3.3
Compare

Cyient

3.6
Compare

L&T Technology Services

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