Upload Button Icon Add office photos
Engaged Employer

i

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

Porter Verified Tick

Compare button icon Compare button icon Compare
4.1

based on 720 Reviews

Filter interviews by

Porter Front end Developer Interview Questions and Answers

Updated 26 Apr 2024

Porter Front end Developer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Max sum path in tree
  • Ans. 

    Find the maximum sum path in a tree from root to leaf node.

    • Start from the root node and traverse down to leaf nodes, keeping track of the sum at each node.

    • At each node, compare the sum of the current path with the maximum sum found so far.

    • Choose the path with the maximum sum as the final result.

  • Answered by AI
  • Q2. Array 2 sum problem
Round 2 - Technical 

(2 Questions)

  • Q1. React: Create a Timer
  • Ans. 

    Create a simple timer using React

    • Use state to store the timer value

    • Use setInterval to update the timer every second

    • Display the timer value in the component's render method

  • Answered by AI
  • Q2. Javascript: implement Debounce
Round 3 - HR 

(2 Questions)

  • Q1. What do you know about the company + common behaviour question
  • Q2. About roles in previous org

Skills evaluated in this interview

Interview questions from similar companies

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

(1 Question)

  • Q1. How to detect and prevent Memory leak
  • Ans. 

    Memory leaks can be detected and prevented by monitoring memory usage, using memory profiling tools, avoiding circular references, and properly managing event listeners.

    • Monitor memory usage regularly to identify any abnormal increases.

    • Use memory profiling tools like Chrome DevTools or Valgrind to analyze memory usage.

    • Avoid creating circular references in your code, as they can prevent objects from being garbage collect...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Advanced JS questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Study JS indepth
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Question are very tough and faad

Round 2 - Coding Test 

Question like trees linked list and graphs

Interview Preparation Tips

Interview preparation tips for other job seekers - Best of luck for your future

I was interviewed in Sep 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Mostly focused on Data Structure & Algorithm

  • Q1. Rotate Linked List

    You have been given a Linked List having ‘N’ nodes and an integer ‘K’. You have to rotate the Linked List by ‘K’ positions in a clockwise direction.

    Example :

     Given Linked List : 1 2...
  • Ans. Brute Force

    Find the length of the Linked List to check whether the ‘K’ is greater than the Length of the Linked List or not. Take a modulo of ‘K’ with its length if it is greater than the length. Reach the (‘K’+1)th node from last and change the pointers of nodes to get a rotated Linked List.
     

    Here is the algorithm:
     

    1. Base Condition : If ‘HEAD’ is equal to ‘NULL’ or ‘K’ is equal to 0, then return ‘HEAD’ of the L...

  • Answered by CodingNinjas
  • Q2. Reverse the order of words in a string

    You are given a string ‘STR’ containing space-separated words. A word is a sequence of non-space characters. Your task is to reverse the order of words in ‘STR’.

    No...

  • Ans. Convert to an array of words

    Use an array ‘ARR’ to store the words in ‘STR’. Traverse the string ‘STR’ and append each word at the end of ‘ARR’. Use the string ‘RES’ to store the answer. Traverse the array ‘ARR’ in reverse and append the words in ‘ARR’ to ‘RES’ followed by a whitespace character.

     

    • Create an empty array of string ‘ARR’.
    • Initialize an empty string ‘CUR_STR’. Use it to store a single word from ‘STR’.
    • Run...
  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Medium

JavaScript core concepts with some examples and problem discussion

  • Q1. Javascript Questions

    1) What is currying in Javascript?

    2) Explain hoisting with a code snippet.

    3) What does this return (typeof null) ?

    4) What is callback hell?

Round 3 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

  • Q1. Basic HR Questions

    Why should we hire you?

    What keeps you motivated?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Shambhunath Institute of Engineering and Technology. I applied for the job as Frontend Developer in BangaloreEligibility criteria0-3 Years of ExperiencePharmEasy interview preparation:Topics to prepare for the interview - CSS Flexbox, HTML Page Rendering, Closures, ThrottlingTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : JavaScript from javascript.info and Akshay Saini videos
Tip 2 : Practise CSS styling for big web apps like Amazon, Flipkart etc
Tip 3 : Practice writing custom hooks and react code optimization.

Application resume tips for other job seekers

Tip 1 : Write skills which you know only and be confident about it.
Tip 2 : Also, do mention the project's that you have done in your current company or as a part of your self learning.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Polyfill for bind Closures Call apply bind let const var lexical environment scope output questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before May 2023.

Round 1 - Coding Test 

Coding test in javascript

Round 2 - Technical 

(2 Questions)

  • Q1. React js questions
  • Q2. Angular js questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn angular and react js
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Question are very tough and faad

Round 2 - Coding Test 

Question like trees linked list and graphs

Interview Preparation Tips

Interview preparation tips for other job seekers - Best of luck for your future

I was interviewed in Sep 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Mostly focused on Data Structure & Algorithm

  • Q1. Rotate Linked List

    You have been given a Linked List having ‘N’ nodes and an integer ‘K’. You have to rotate the Linked List by ‘K’ positions in a clockwise direction.

    Example :

     Given Linked List : 1 2...
  • Ans. Brute Force

    Find the length of the Linked List to check whether the ‘K’ is greater than the Length of the Linked List or not. Take a modulo of ‘K’ with its length if it is greater than the length. Reach the (‘K’+1)th node from last and change the pointers of nodes to get a rotated Linked List.
     

    Here is the algorithm:
     

    1. Base Condition : If ‘HEAD’ is equal to ‘NULL’ or ‘K’ is equal to 0, then return ‘HEAD’ of the L...

  • Answered by CodingNinjas
  • Q2. Reverse the order of words in a string

    You are given a string ‘STR’ containing space-separated words. A word is a sequence of non-space characters. Your task is to reverse the order of words in ‘STR’.

    No...

  • Ans. Convert to an array of words

    Use an array ‘ARR’ to store the words in ‘STR’. Traverse the string ‘STR’ and append each word at the end of ‘ARR’. Use the string ‘RES’ to store the answer. Traverse the array ‘ARR’ in reverse and append the words in ‘ARR’ to ‘RES’ followed by a whitespace character.

     

    • Create an empty array of string ‘ARR’.
    • Initialize an empty string ‘CUR_STR’. Use it to store a single word from ‘STR’.
    • Run...
  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 50 Minutes
Round difficulty - Medium

JavaScript core concepts with some examples and problem discussion

  • Q1. Javascript Questions

    1) What is currying in Javascript?

    2) Explain hoisting with a code snippet.

    3) What does this return (typeof null) ?

    4) What is callback hell?

Round 3 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

  • Q1. Basic HR Questions

    Why should we hire you?

    What keeps you motivated?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Shambhunath Institute of Engineering and Technology. I applied for the job as Frontend Developer in BangaloreEligibility criteria0-3 Years of ExperiencePharmEasy interview preparation:Topics to prepare for the interview - CSS Flexbox, HTML Page Rendering, Closures, ThrottlingTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : JavaScript from javascript.info and Akshay Saini videos
Tip 2 : Practise CSS styling for big web apps like Amazon, Flipkart etc
Tip 3 : Practice writing custom hooks and react code optimization.

Application resume tips for other job seekers

Tip 1 : Write skills which you know only and be confident about it.
Tip 2 : Also, do mention the project's that you have done in your current company or as a part of your self learning.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

(1 Question)

  • Q1. Create a pagination
  • Ans. 

    Pagination component to display a list of items with page navigation.

    • Create a Pagination component with props for total number of items, items per page, and current page.

    • Calculate total number of pages based on total items and items per page.

    • Display page numbers with previous and next buttons to navigate through pages.

    • Update the list of items displayed based on current page.

    • Handle click events on page numbers and previ

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Write a polyfill of JS promise
  • Ans. 

    A polyfill for JS promise is a piece of code that provides support for promises in older browsers.

    • Create a Promise class with resolve, reject, then, and catch methods

    • Implement the executor function to handle the asynchronous operation

    • Use setTimeout to simulate asynchronous behavior

    • Handle chaining of then and catch methods

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. How to detect and prevent Memory leak
  • Ans. 

    Memory leaks can be detected and prevented by monitoring memory usage, using memory profiling tools, avoiding circular references, and properly managing event listeners.

    • Monitor memory usage regularly to identify any abnormal increases.

    • Use memory profiling tools like Chrome DevTools or Valgrind to analyze memory usage.

    • Avoid creating circular references in your code, as they can prevent objects from being garbage collect...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Advanced JS questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Study JS indepth

Porter Interview FAQs

How many rounds are there in Porter Front end Developer interview?
Porter interview process usually has 3 rounds. The most common rounds in the Porter interview process are Technical and HR.
What are the top questions asked in Porter Front end Developer interview?

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

  1. React: Create a Ti...read more
  2. Max sum path in t...read more
  3. Javascript: implement Debou...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Porter interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Business Associate
268 salaries
unlock blur

₹2.2 L/yr - ₹4.3 L/yr

Business Executive
225 salaries
unlock blur

₹1.9 L/yr - ₹3.5 L/yr

Assistant Manager
90 salaries
unlock blur

₹3.8 L/yr - ₹13.2 L/yr

Senior Business Associate
79 salaries
unlock blur

₹3.1 L/yr - ₹6.3 L/yr

Senior Manager
71 salaries
unlock blur

₹14 L/yr - ₹24 L/yr

Explore more salaries
Compare Porter with

Dunzo

3.4
Compare

Flipkart

4.0
Compare

Amazon

4.1
Compare

Snapdeal

3.8
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