Upload Button Icon Add office photos
Engaged Employer

i

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

Mindgraph Verified Tick

Compare button icon Compare button icon Compare
3.5

based on 47 Reviews

Filter interviews by

Mindgraph Front end Developer Interview Questions and Answers

Updated 4 Aug 2024

Mindgraph Front end Developer Interview Experiences

2 interviews found

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

I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Role of front end developer
  • Ans. 

    Front end developers are responsible for creating the user interface and user experience of a website or application.

    • Translate design mockups into code using HTML, CSS, and JavaScript

    • Ensure the website or application is responsive and works across different devices

    • Collaborate with designers and back end developers to ensure seamless integration of front end and back end components

  • Answered by AI
  • Q2. Role of html and css developer
  • Ans. 

    HTML and CSS developers are responsible for creating the structure and design of websites.

    • HTML is used for creating the structure of web pages by defining the content and layout.

    • CSS is used for styling the HTML elements by defining colors, fonts, spacing, and more.

    • HTML and CSS work together to create visually appealing and functional websites.

    • HTML5 and CSS3 are the latest versions of these languages, offering new featu...

  • Answered by AI
  • Q3. What is object, constructor,class in python.
  • Ans. 

    Objects are instances of classes, constructors are special methods used to initialize objects, and classes are blueprints for creating objects in Python.

    • Objects are instances of classes that encapsulate data and behavior.

    • Constructors are special methods with the name __init__ used to initialize objects.

    • Classes are blueprints for creating objects, defining their properties and methods.

    • Example: class Person: def __init_...

  • Answered by AI
  • Q4. Javascript is front end or backend.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. About html,css and javascript
Round 2 - Coding Test 

Problems related to arrays and graphs

Front end Developer Interview Questions Asked at Other Companies

Q1. Non-Decreasing ArrayYou have been given an integer array/list 'AR ... read more
Q2. Find UniqueYou have been given an integer array/list(ARR) of size ... read more
asked in JUSPAY
Q3. Dijkstra's shortest pathYou have been given an undirected graph o ... read more
asked in JUSPAY
Q4. Encode N-ary tree to binary treeYou have been given an N-ary tree ... read more
asked in Siemens
Q5. Sort ArrayYou are given an array consisting of 'N' positive integ ... read more

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Discussion about my previous project
  • Q2. Question on html, css, javascript & react
  • Q3. Explain about promises
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

    • Example: const myPromise = new Promise((resolve, reject) => { ... });

  • Answered by AI
  • Q4. Use state, context api
  • Q5. Box modelling in css, css pre processors
  • Ans. 

    Box model in CSS refers to the way elements are rendered in a web page. CSS preprocessors like SASS or LESS help streamline CSS development.

    • Box model in CSS includes content, padding, border, and margin.

    • CSS preprocessors like SASS or LESS allow for variables, nesting, and mixins to be used in CSS.

    • Example: box-sizing: border-box; in CSS changes the box model to include padding and border in the element's total width and

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I got a call that i have been selected to the final round, but the final round never did happend

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Mostly js questions, not so many of angular or react.
  • Q2. Like fizbuzz or things like that.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't apply here, the culture here is horrible.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Angular life cycle, angular loading and some scenarios about authentication
  • Q2. Javascript out put based questions based on it's execution
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via campus placement at Dharampeth Kala-Vanijya and MP Deo Smruti Vidhyan Mahavidyalaya, Nagpur and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Construct stack using queues
  • Ans. 

    Implement a stack using two queues

    • Use two queues to simulate stack operations

    • Push operation: Enqueue the element to queue1

    • Pop operation: Dequeue all elements from queue1 to queue2, dequeue the last element from queue1, then swap the queues

    • Top operation: Dequeue all elements from queue1 to queue2, dequeue the last element from queue1, store it, swap the queues, enqueue the stored element back to queue1, and return it

    • Exa...

  • Answered by AI
  • Q2. M coloring graph

Interview Preparation Tips

Topics to prepare for Hewlett Packard Enterprise Front end Developer interview:
  • DSA
Interview preparation tips for other job seekers - Good with dsa

Skills evaluated in this interview

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Caching Strategy
  • Q2. What is micro Frontend architecture
  • Ans. 

    Micro Frontend architecture is an approach to building front-end applications by breaking them down into smaller, independently deployable units.

    • Allows different teams to work on separate parts of the application

    • Each micro frontend can be developed using different technologies

    • Enables incremental upgrades and updates without affecting the entire application

    • Can improve performance by loading only the necessary components

    • ...

  • Answered by AI
  • Q3. Pure and impure pipes in angular
  • Ans. 

    Pure pipes in Angular are stateless and do not change the input data, while impure pipes can have side effects and change the input data.

    • Pure pipes are used for simple transformations like formatting dates or numbers.

    • Impure pipes are used for more complex transformations that require state or side effects.

    • Pure pipes are faster and more efficient as they only run when a pure change to the input data is detected.

    • Impure p...

  • Answered by AI
  • Q4. How to make singleton services multiton
  • Ans. 

    Singleton services can be made multiton by maintaining a map of instances with unique keys.

    • Create a map to store instances with unique keys

    • Use a factory method to retrieve instances based on keys

    • Ensure that only one instance is created per key

  • Answered by AI
  • Q5. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern where components are given their dependencies rather than creating them internally.

    • Allows for easier testing by injecting mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: AngularJS, Spring Framework

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read Frontend system design also

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Approached by Company and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What is bridge? What is the new architecture?
  • Ans. 

    Bridge is a structural design pattern that decouples an abstraction from its implementation. The new architecture refers to modern design patterns and technologies used in software development.

    • Bridge pattern allows the client code to work with different implementations of an interface independently.

    • The new architecture in front end development may include concepts like component-based architecture, state management lib...

  • Answered by AI
  • Q2. How will you optimize a react native app
  • Ans. 

    Optimizing a React Native app involves reducing bundle size, improving performance, and enhancing user experience.

    • Use code splitting to reduce initial load time

    • Optimize images and assets for smaller file sizes

    • Implement lazy loading for components that are not immediately visible

    • Minimize the use of third-party libraries and only include necessary dependencies

    • Utilize performance monitoring tools like React Native Perform

  • Answered by AI
  • Q3. What is context API
  • Ans. 

    Context API is a feature in React that allows sharing data between components without having to pass props through every level of the component tree.

    • Context API provides a way to pass data through the component tree without having to pass props down manually at every level.

    • It is useful for sharing global data such as themes, user authentication, or language preferences.

    • Context API consists of three main parts: Provider...

  • Answered by AI
  • Q4. What is hoisting
  • Ans. 

    Hoisting is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during compilation.

    • Variable declarations are hoisted to the top of their scope, but not their initializations.

    • Function declarations are fully hoisted, including their definitions.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. React js Basic Question
  • Q2. Coding Question Giving API to call and show in UI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Prev job exp details

Mindgraph Interview FAQs

How many rounds are there in Mindgraph Front end Developer interview?
Mindgraph interview process usually has 1-2 rounds. The most common rounds in the Mindgraph interview process are HR, Coding Test and One-on-one Round.
What are the top questions asked in Mindgraph Front end Developer interview?

Some of the top questions asked at the Mindgraph Front end Developer interview -

  1. What is object, constructor,class in pyth...read more
  2. Role of html and css develo...read more
  3. Role of front end develo...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Mindgraph interviews
Referral
Campus Placement
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Mindgraph Front end Developer Salary
based on 5 salaries
₹3 L/yr - ₹6.5 L/yr
15% less than the average Front end Developer Salary in India
View more details

Mindgraph Front end Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

5.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
30 salaries
unlock blur

₹2.5 L/yr - ₹10.5 L/yr

Software Developer
11 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Azure DevOps Engineer
7 salaries
unlock blur

₹5 L/yr - ₹6.1 L/yr

Java Developer
7 salaries
unlock blur

₹2.6 L/yr - ₹8.5 L/yr

Data Analytics Engineer
6 salaries
unlock blur

₹4 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Mindgraph with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview