Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Mirabel Technologies Team. If you also belong to the team, you can get access from here

Mirabel Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Mirabel Technologies Full Stack Software Developer Interview Questions and Answers

Updated 6 May 2024

Mirabel Technologies Full Stack Software Developer Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

React questions
Components
Hooks - UseEffect
Fetch queries
Coding questions

Interview questions from similar companies

I applied via Naukri.com

Round 1 - Technical 

(2 Questions)

  • Q1. I applied online for the post of software developer, interview was conducted by First IPO on behalf of Mindtree.
  • Q2. Basics of OOPs, program o find out prime number, basic coding problem asks for output, closure, arrays in JavaScript

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic of oops like static and instance member, polymorphism, inheritance.
Round 1 - Aptitude Test 

It was easy

Round 2 - Coding Test 

6 coding rounds

Round 3 - Coding Test 

System design tesr

Round 4 - HR 

(4 Questions)

  • Q1. Why should we hire you?
  • Q2. Where do you see yourself in 5 years?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - One of the best product companies which cares about employees
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Aug 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 Resume tips
Round 2 - Coding Test 

So basically the questions were from strings, arrays, bitwise operators and some mathematical logic based questions. There were 10 questions and they will provide you a laptop and you have to complete all of them in 3 hours (java, c++)
Just be prepared on the above mentioned topics the questions were of easy level if your concept is clear you can crack it easily then there will one more round there they will ask theoretical questions once these both technical rounds are clear you're all set to go for HR round. So this is for 1-2yrs exp guys for freshers they also have to go through aptitude round and question pattern is similar

Round 3 - Technical 

(3 Questions)

  • Q1. Basic oops concepts some tricky ques
  • Q2. Questions from collection framework
  • Q3. Multithreading basic questions
Round 4 - HR 

(1 Question)

  • Q1. Basic hr questions
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in May 2024. There was 1 interview round.

Round 1 - Aptitude Test 

It was an 1 and half hour test basics of aptitude were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - just learn basics thats all
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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Introduce yourself,core java
Round 3 - One-on-one 

(1 Question)

  • Q1. Coding test, java , spring boot, Microservice,hibernate

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain in deep any question, don’t hesitate for asking again
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed before Oct 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 Resume tips
Round 2 - Aptitude Test 

Train,direction,odd or eve nos,

Round 3 - Coding Test 

Python dataframe coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Please kindly do well to immediately to respond over message that's it
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Always remember to flow- up

Interview Preparation Tips

Topics to prepare for Wipro Full Stack Software Developer interview:
  • Full stack python
  • HTML
  • CSS
  • Javascript
  • MS Office
  • Ms World
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jan 2023. 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 Resume tips
Round 2 - Aptitude Test 

Basic questions number, logical reasoning, apptitude, values, circle etc

Round 3 - Technical 

(4 Questions)

  • Q1. Introduction to your self, which language do preference, Java, oops concepts
  • Q2. Opp concepts , Java, HTML, CSS, javascript, PHP, python, SQL language questions basic knowledge
  • Q3. Do you have completed any project
  • Q4. What is method overloading
  • Ans. 

    Method overloading is when multiple methods in a class have the same name but different parameters.

    • Allows multiple methods with the same name but different parameters to be defined in a class

    • The compiler determines which method to call based on the number and type of arguments passed

    • Example: having multiple 'calculate' methods in a class with different parameter types like int, double, etc.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. What is closures in JS ?
  • Ans. 

    Closures in JavaScript are functions that have access to variables from their outer scope, even after the outer function has finished executing.

    • Closures are created when a function is defined inside another function.

    • The inner function has access to the outer function's variables, parameters, and even the outer function's return value.

    • Closures are useful for creating private variables and data encapsulation.

    • They can be ...

  • Answered by AI
  • Q2. Diff props and state ?
  • Ans. 

    Props and state are both used in React to manage and pass data, but they have different purposes and behaviors.

    • Props are read-only and passed from parent components to child components.

    • State is mutable and managed within a component.

    • Props are used to pass data from a parent component to a child component.

    • State is used to manage and update data within a component.

    • Props are passed as attributes to a component in JSX.

    • Stat...

  • Answered by AI
  • Q3. How to optimise the performance ?
  • Ans. 

    Performance optimization involves identifying and resolving bottlenecks to improve the efficiency of software.

    • Identify and analyze performance bottlenecks

    • Optimize algorithms and data structures

    • Improve database performance through indexing and query optimization

    • Use caching techniques to reduce database and network calls

    • Minimize network latency by optimizing network requests

    • Optimize front-end code by reducing DOM manipul...

  • Answered by AI
  • Q4. Diff between class based or function based component ?
  • Ans. 

    Class-based components are ES6 classes that extend React.Component, while function-based components are functions that return JSX.

    • Class-based components are more feature-rich and have access to lifecycle methods.

    • Function-based components are simpler and easier to read and test.

    • Class-based components can have state and use lifecycle methods like componentDidMount and componentDidUpdate.

    • Function-based components can use ...

  • Answered by AI
  • Q5. What is es6 features ?
  • Ans. 

    ES6 (ECMAScript 2015) introduced several new features to JavaScript, enhancing its functionality and making it more efficient.

    • Arrow functions: concise syntax for writing functions

    • Let and const: block-scoped variables

    • Template literals: easier string interpolation

    • Destructuring assignment: extracting values from arrays or objects

    • Spread syntax: expanding elements in arrays or objects

    • Classes: syntactical sugar for creating ...

  • Answered by AI

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Mirabel Technologies Interview FAQs

How many rounds are there in Mirabel Technologies Full Stack Software Developer interview?
Mirabel Technologies interview process usually has 1 rounds. The most common rounds in the Mirabel Technologies interview process are Coding Test.

Recently Viewed

INTERVIEWS

Imperial Auto Industries

10 top interview questions

LIST OF COMPANIES

Discover companies

Find best workplace

DESIGNATION

INTERVIEWS

Mirabel Technologies

No Interviews

INTERVIEWS

Fractal Analytics

5.6k top interview questions

INTERVIEWS

Mirabel Technologies

No Interviews

INTERVIEWS

Xylem Water Solutions

10 top interview questions

INTERVIEWS

Zeus Learning

No Interviews

INTERVIEWS

Affine

10 top interview questions

INTERVIEWS

Viraj Profiles

No Interviews

Tell us how to improve this page.

Mirabel Technologies Full Stack Software Developer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more
Mirabel Technologies Full Stack Software Developer Salary
based on 4 salaries
₹7.5 L/yr - ₹14.1 L/yr
13% more than the average Full Stack Software Developer Salary in India
View more details

Mirabel Technologies Full Stack Software Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
43 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
22 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Full Stack Developer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Mirabel Technologies with

Zoho

4.3
Compare

Freshworks

3.5
Compare

TCS

3.7
Compare

Infosys

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