Upload Button Icon Add office photos
Engaged Employer

i

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

Metafic Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Metafic Reactjs Developer Interview Questions, Process, and Tips

Updated 20 Mar 2023

Top Metafic Reactjs Developer Interview Questions and Answers

  • Q1. Write code for functional component to call an API and show a list from the response (given by the interviewer)
  • Q2. Explain UseMemo, UseCallback, UseEffect uses, and lifecycle method in the class component.
  • Q3. How would be dealing with an issue which was caused due to others?

Metafic Reactjs Developer Interview Experiences

2 interviews found

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

I applied via Company Website 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 - Technical 

(3 Questions)

  • Q1. What is virtual DOM in react?
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM used for efficient rendering in React.

    • Virtual DOM is a JavaScript object that represents the actual DOM.

    • It allows React to update only the necessary parts of the UI, improving performance.

    • Changes made to the virtual DOM are compared with the previous version to determine what needs to be updated.

    • React then updates the actual DOM with the minimum required changes.

    • Virtu...

  • Answered by AI
  • Q2. Explain UseMemo, UseCallback, UseEffect uses, and lifecycle method in the class component.
  • Ans. 

    Explanation of React hooks and lifecycle methods

    • useMemo is used to memoize expensive computations and avoid unnecessary re-renders

    • useCallback is used to memoize functions and avoid unnecessary re-renders of child components

    • useEffect is used to perform side effects such as fetching data or updating the DOM

    • Lifecycle methods in class components are used to manage component state and perform side effects

    • ComponentDidMount i...

  • Answered by AI
  • Q3. Javascript array-based pattern questions dependent on loop, slice, and splice methods
Round 3 - Technical 

(2 Questions)

  • Q1. Write code for functional component to call an API and show a list from the response (given by the interviewer)
  • Ans. 

    Code for functional component to call API and show list from response

    • Use useEffect hook to call API on component mount

    • Use useState hook to store API response

    • Map through response data to display list

    • Handle loading and error states

  • Answered by AI
  • Q2. Write down the code from that API to integrate pagination on scrolling
  • Ans. 

    Code for integrating pagination on scrolling in Reactjs API

    • Use Intersection Observer API to detect when the user has scrolled to the bottom of the page

    • Fetch the next set of data from the server using an API call

    • Update the state with the new data and render it on the page

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare the hook used in to react, basic of JS, and be prepared for a real-life simple implementation like pagination in react.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Logic test and js based coding questions for 45-60 mins

Round 3 - HR 

(2 Questions)

  • Q1. How would be dealing with an issue which was caused due to others?
  • Ans. 

    I would approach the issue by identifying the root cause and collaborating with the team to find a solution.

    • Identify the root cause of the issue

    • Collaborate with the team to find a solution

    • Communicate effectively with all parties involved

    • Take ownership of the issue and work towards a resolution

    • Document the issue and the steps taken to resolve it

  • Answered by AI
  • Q2. Where would you see yourself in next 3 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - Comparatively easy with not much technicalities, easy to crack the interview.

Reactjs Developer Interview Questions Asked at Other Companies

Q1. Implement counter such that it has 2 buttons to increment and dec ... read more
asked in Accenture
Q2. How do you make a page responsive. Bootstrap layouts and alerts
asked in Java R & D
Q3. What are Call, apply and bind methods, what is currying in JavaSc ... read more
Q4. what is ES6 feature small coding on how let,var,const works javas ... read more
asked in Metafic
Q5. Write code for functional component to call an API and show a lis ... read more

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: A coding test (Students were asked to bring Laptops)
Tips: Be thorough with C/C++, networking, OS, Data structures and architecture
Duration: 90 minutes

Round: Interview
Experience: 3 rounds of interview, one hour each, all technical 
Interview Process:All the three rounds are oriented around programming. A lot of focus was given to Data structures, C/C++, OS and algorithmsThe code from previous test is shown and they expect you to fix any bugs if thereThe interviewers are quietly friendly and help if you get stuck at any pointIf you do have any related projects, anticipate some thorough questions on that
Tips: Though the interviewers are helpful, get your basics clear early on. Don't rely on them.Practice coding sessions, a lot of companies have them as a shortlisting criteria.

College Name: IIT Madras

Interview Preparation Tips

Round: Test
Experience: PAPER DURATION: 3 hours
NO. OF QUESTIONS: 2 (20 marks each)
MAXIMUM MARKS: 20*2 = 40 marksQUESTION 1:
JSON Prettier:-Write a program which takes JSON as input and gives prettified JSONYou need to read JSON from STDIN. Input gives one line of uglified JSON.Output should be formatted JSON. Check the standard output link.Use 2 white spaces (not‘\t’) for one indentation.SAMPLE INPUT:{“group” : {list : [1,2,3]}, “list” : [“a”,”b”,”c”]}SAMPLE OUTPUT:{“group” : {List : [1,2,3]},“list” : [“a”,”b”,”c”]}EXPLANATION: Input will be uglifiedjson in one line and output will be prettified format of that. QUESTION 2:XML parse plus series computationEvaluate an expression given in XML format. Keys will be Expr- contains the entire expression. Elem – contains the digit, sum, Prod- contains two or more keys whose evaluation needs to be summed or multiplied respectively. Sub will contain 2 keys or more, where the second key onwards will have to be subtracted from the first one. Div- will contain 2 keys in which first key will need to be divided by second. SAMPLE INPUT:4673 SAMPLE OUTPUT:
20EXPLANATION:Input will be xml file through standard input. End of xml file marked by .
Duration: 180 minutes
Total Questions: 2

College Name: NA

I applied via Campus Placement and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

General aptitude test with math and logic related questions. there were also coding questions which were given more weightage than the other questions.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Standard linked list questions like finding the middle of a linked list, checking if the linked list is a loop etc
  • Q2. Max heap related questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. This interview was mostly math related questions. for eg: prove if a number is irrational.

Interview Preparation Tips

Topics to prepare for Amagi Media Labs Software Engineer interview:
  • Data Structures
  • Maths
  • puzzles
Interview preparation tips for other job seekers - focus is on checking basic coding and problem solving skills. a separate round for testing mathematical ability was a surprise.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Question on Tree Traversals
  • Q2. Questions of Linked List
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jul 2024.

Round 1 - Coding Test 

Create an API using Notepad to check if a string is a palindrome or not.

Round 2 - One-on-one 

(1 Question)

  • Q1. Solid principal

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join worst company
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Mar 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 - Aptitude Test 

Aptitude Test with 1 coding question and 8 other aptitude questions

Round 3 - One-on-one 

(1 Question)

  • Q1. DSA questions with some dbms questions.
Round 4 - One-on-one 

(1 Question)

  • Q1. DSA + SQL query writing questions. Do revise SQL before interview.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

There was coding test

Round 2 - Technical 

(2 Questions)

  • Q1. 2 technical rounds
  • Q2. Merge sort algorithm
  • Ans. 

    Merge sort is a divide and conquer algorithm that divides the input array into two halves, sorts them separately, and then merges them back together in sorted order.

    • Divide the input array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Leetcode Easy question

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Jun 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 - Technical 

(3 Questions)

  • Q1. Linux commands,
  • Q2. Cloud technologies different services (iaas, paas, saas)
  • Ans. 

    Cloud technologies offer different services like IaaS, PaaS, and SaaS for varying levels of control and management.

    • IaaS (Infrastructure as a Service) provides virtualized computing resources over the internet, such as virtual servers and storage.

    • PaaS (Platform as a Service) offers a platform allowing customers to develop, run, and manage applications without dealing with infrastructure.

    • SaaS (Software as a Service) deli...

  • Answered by AI
  • Q3. What do you know AWS

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up OS basics and cloud technologies.

Skills evaluated in this interview

Metafic Interview FAQs

How many rounds are there in Metafic Reactjs Developer interview?
Metafic interview process usually has 3 rounds. The most common rounds in the Metafic interview process are Resume Shortlist, Technical and Coding Test.
What are the top questions asked in Metafic Reactjs Developer interview?

Some of the top questions asked at the Metafic Reactjs Developer interview -

  1. Write code for functional component to call an API and show a list from the res...read more
  2. Explain UseMemo, UseCallback, UseEffect uses, and lifecycle method in the class...read more
  3. How would be dealing with an issue which was caused due to othe...read more

Tell us how to improve this page.

Metafic Reactjs Developer Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Metafic Reactjs 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

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
UI/UX Designer
58 salaries
unlock blur

₹3 L/yr - ₹10.1 L/yr

Software Engineer
33 salaries
unlock blur

₹4 L/yr - ₹10.8 L/yr

Software Developer
11 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Front end Developer
7 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹10 L/yr - ₹12 L/yr

Explore more salaries
Compare Metafic with

Aurigo

4.7
Compare

Prime Focus Technologies

3.4
Compare

Nowfloats Technologies

3.2
Compare

Peel-works

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