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 for Experienced

Updated 4 Mar 2025

Top Mirafra Technologies Interview Questions and Answers for Experienced

View all 11 questions

Mirafra Technologies Interview Experiences for Experienced

Popular Designations

16 interviews found

Python Developer Interview Questions & Answers

user image sivaraj yellathuripinti

posted on 5 Aug 2024

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

I applied via Approached by Company and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Fibanoica series
  • Q2. Looping question
  • Q3. Decorator function
Round 2 - Technical 

(2 Questions)

  • Q1. How to call parents init method in child class if child class also have init and global variable
  • Ans. 

    Use super() method to call parent's init method in child class.

    • Use super() method in child class to call parent's init method.

    • Pass the child class and self as arguments to super() method.

    • Access the parent class attributes and methods using super().

  • Answered by AI
  • Q2. Looping question and json question

Skills evaluated in this interview

Python Developer Interview Questions asked at other Companies

Q1. Tell me the logic of program to reverse a given string word by word without using any built in function.
View answer (9)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Oct 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. WAP based on array question
  • Q2. Technical questions based on CV

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)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(3 Questions)

  • Q1. What can you tell me about your previous company?
  • Ans. 

    My previous company was a leading automotive electronics manufacturer.

    • Specialized in developing embedded software for automotive control systems

    • Worked on projects involving CAN bus communication and vehicle diagnostics

    • Collaborated with cross-functional teams including hardware engineers and test engineers

  • Answered by AI
  • Q2. What is your current Cost to Company (CTC) and your notice period?
  • Ans. 

    My current CTC is $80,000 per year and my notice period is 2 months.

    • Current CTC: $80,000 per year

    • Notice period: 2 months

  • Answered by AI
  • Q3. Expected cost to company (CTC).
  • Ans. 

    Expected CTC should be based on industry standards, experience, skills, and location.

    • Research industry standards for Embedded Software Engineers in your location.

    • Consider your level of experience and skills - more experience and specialized skills may command a higher salary.

    • Factor in the cost of living in the location where the job is based.

    • Negotiate based on the benefits package offered by the company.

    • Be prepared to ...

  • Answered by AI

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)

Front end Developer Interview Questions & Answers

user image Praveen Kumar

posted on 11 Oct 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Shallow copy and deep copy

Front end Developer Interview Questions asked at other Companies

Q1. Non-Decreasing Array Problem Statement Given an integer array ARR of size N, determine if it can be transformed into a non-decreasing array by modifying at most one element. An array is defined as non-decreasing if ARR[i] <= ARR[i + 1] f... read more
View answer (3)

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
Moderate
Process Duration
2-4 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 a string
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the characters of the string

    • Append each character to a new string in reverse order

    • Return the reversed string

  • Answered by AI
  • Q2. Basic programming questions

Top Mirafra Technologies Software Developer Interview Questions and Answers

Q1. what is data structures and types with examples of all types
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
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)

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
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)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Explain Angular File structure
  • Ans. 

    Angular file structure organizes code into modules, components, services, and assets.

    • Angular projects have a src folder containing app and assets folders

    • App folder contains modules, components, services, and other files

    • Components have their own folder with HTML, CSS, and TypeScript files

    • Services are placed in a separate folder for reusability

    • Assets folder stores static files like images and fonts

  • Answered by AI
  • Q2. Explain auth guards
  • Ans. 

    Auth guards are used in software development to control access to certain resources based on user authentication and authorization.

    • Auth guards are used in web applications to restrict access to certain routes or resources based on user authentication.

    • They are commonly used in frameworks like Angular and Laravel to protect routes from unauthorized access.

    • Auth guards can check if a user is authenticated and authorized to...

  • Answered by AI
  • Q3. Explain Http client module
  • Ans. 

    Http client module is a module in programming languages that allows communication with HTTP servers.

    • Http client module is used to send requests to servers and receive responses.

    • It can handle various HTTP methods like GET, POST, PUT, DELETE, etc.

    • It can also handle headers, cookies, and other request/response parameters.

    • Examples include HttpClient in Java, requests module in Python, axios in JavaScript.

  • Answered by AI
  • Q4. Explain Angular life cycle Hook
  • Ans. 

    Angular life cycle hooks are methods that allow you to tap into specific points in a component's life cycle.

    • ngOnChanges: Called when an input property changes

    • ngOnInit: Called once the component is initialized

    • ngDoCheck: Called during every change detection run

    • ngAfterContentInit: Called after content (ng-content) has been projected into the component

    • ngAfterContentChecked: Called after every check of the projected content

    • ...

  • Answered by AI
  • Q5. Explain CSS box model
  • Ans. 

    CSS box model is a fundamental concept in web design that defines the structure and layout of elements on a webpage.

    • The box model consists of content, padding, border, and margin.

    • Content area is where text or images are displayed.

    • Padding is the space between the content and the border.

    • Border is the line that surrounds the padding.

    • Margin is the space outside the border.

    • Each of these components can be styled using CSS pr

  • Answered by AI

Skills evaluated in this interview

Senior Software Developer Interview Questions asked at other Companies

Q1. Intersection of Linked List Problem You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list. Your task is to determine the data of the node at which they sta... read more
View answer (1)

Mirafra Technologies Interview FAQs

How many rounds are there in Mirafra Technologies interview for experienced candidates?
Mirafra Technologies interview process for experienced candidates usually has 1-2 rounds. The most common rounds in the Mirafra Technologies interview process for experienced candidates are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Mirafra Technologies interview for experienced candidates?
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 for experienced candidates?

Some of the top questions asked at the Mirafra Technologies interview for experienced candidates -

  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. How to call parents init method in child class if child class also have init an...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 for Experienced

based on 10 interviews

Interview experience

3.7
  
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 229 reviews

4.1/5

Rating in categories

3.7

Skill development

4.0

Work-life balance

3.8

Salary

3.8

Job security

3.9

Company culture

3.6

Promotions

3.7

Work satisfaction

Explore 229 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