Upload Button Icon Add office photos

Filter interviews by

Plum Benefits Node JS Developer Interview Questions and Answers

Updated 28 Oct 2023

Plum Benefits Node JS Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2023. 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 - HR 

(1 Question)

  • Q1. Basic resume details about how many projects you have done, have you design and application from scratch
Round 3 - Coding Test 

1hr duration, (Asked question from resume
2 coding question (1 easy, 1 medium type))
topic - array, dynamic programming
platform - leetcode
dp question was about return permutation of array of natural numbers
ex - [1, 2, 3] will return 6 permutation

Interview questions from similar companies

Interview Questionnaire 

17 Questions

  • Q1. Find if a string is substring of other string
  • Ans. 

    The function checks if a string is a substring of another string.

    • Use the built-in string methods like 'indexOf' or 'includes' to check for substring.

    • If the language supports regular expressions, you can also use them to find substrings.

    • Consider the case sensitivity of the strings when comparing.

  • Answered by AI
  • Q2. Write a code to multiply two matrices of dimension M*N and N*K
  • Ans. 

    Code to multiply two matrices of dimension M*N and N*K.

    • Create a result matrix of dimension M*K.

    • Iterate through each row of the first matrix.

    • For each row, iterate through each column of the second matrix.

    • For each element in the row of the first matrix, multiply it with the corresponding element in the column of the second matrix.

    • Sum up the products and store the result in the corresponding position of the result matrix.

    • ...

  • Answered by AI
  • Q3. Write a Sql to perform Matrix Multiplication.Two tables has three columns row,col and value
  • Ans. 

    SQL query to perform matrix multiplication using two tables with row, col, and value columns.

    • Use JOIN operation to combine the two tables based on matching row and col values.

    • Use GROUP BY clause to group the result by row and col values.

    • Use SUM function to calculate the dot product of corresponding row and col values.

    • Use INSERT INTO statement to insert the result into a new table.

  • Answered by AI
  • Q4. What is prototype in javascript?
  • Ans. 

    Prototype in JavaScript is an object that is associated with every function and object by default.

    • Prototype is used to add properties and methods to an object.

    • It allows objects to inherit properties and methods from other objects.

    • Modifying the prototype of a function affects all instances of that function.

    • Prototypes can be used to create new objects based on existing objects.

    • The prototype chain allows for property and

  • Answered by AI
  • Q5. How do we write classes in javascript?
  • Ans. 

    Classes in JavaScript are written using the class keyword.

    • Use the class keyword followed by the class name to define a class.

    • Use the constructor method to initialize class properties.

    • Add methods to the class using the class prototype.

    • Use the new keyword to create an instance of the class.

  • Answered by AI
  • Q6. There is a ladder of N steps.We can either take 1 step or 2 steps.In how many different ways one can climb the ladder?
  • Ans. 

    The number of different ways to climb a ladder of N steps by taking 1 or 2 steps at a time.

    • This is a classic problem that can be solved using dynamic programming.

    • The number of ways to climb N steps is equal to the sum of the number of ways to climb N-1 steps and N-2 steps.

    • The base cases are when N is 0 or 1, where there is only 1 way to climb the ladder.

    • For example, for N=4, there are 5 different ways: [1, 1, 1, 1], [1

  • Answered by AI
  • Q7. Print a square matrix in spiral order
  • Ans. 

    Print a square matrix in spiral order

    • Start by defining the boundaries of the matrix

    • Iterate through the matrix in a spiral pattern, printing each element

    • Adjust the boundaries after each iteration to move inward

    • Repeat until all elements are printed

  • Answered by AI
  • Q8. Given a table with 3 columns StudentName,Subject and Marks.Write a sql to retrieve second highest Marks Obtained for each student
  • Ans. 

    Retrieve the second highest marks obtained by each student from a table with student name, subject, and marks.

    • Use the RANK() function to assign a rank to each row based on the marks in descending order.

    • Filter the result to only include rows with rank 2 for each student.

    • Group the result by student name to get the second highest marks for each student.

  • Answered by AI
  • Q9. Given a Website with header,footer,side ads(Google ads,Internal ads).How will you extract only useful data from the page
  • Q10. Difference between .live() and .delegate() in jquery
  • Ans. 

    The .live() method attaches an event handler to the current and future elements, while .delegate() attaches an event handler to a parent element.

    • The .live() method is deprecated in newer versions of jQuery.

    • The .delegate() method is preferred over .live() for performance reasons.

    • Both methods are used to handle events for dynamically added elements.

    • Example: $(document).live('click', 'button', function() { ... });

    • Example:...

  • Answered by AI
  • Q11. What is chaining in jquery?
  • Ans. 

    Chaining in jQuery allows multiple methods to be called on a single element in a single line of code.

    • Chaining simplifies code and improves readability.

    • Each method in the chain operates on the result of the previous method.

    • The chain ends with a method that does not return a jQuery object.

    • Example: $('div').addClass('highlight').fadeOut();

  • Answered by AI
  • Q12. What is callback function?
  • Ans. 

    A callback function is a function that is passed as an argument to another function and is executed later.

    • Callback functions are commonly used in event-driven programming.

    • They allow asynchronous execution of code.

    • Callback functions can be used to handle responses from APIs or user interactions.

    • They can be anonymous functions or named functions.

    • Example: setTimeout(function() { console.log('Hello!'); }, 1000);

  • Answered by AI
  • Q13. What is .bind() function in jquery?
  • Ans. 

    The .bind() function in jQuery is used to attach an event handler function to one or more elements.

    • It allows you to specify the event type and the function to be executed when the event occurs.

    • The .bind() function can be used to bind multiple events to the same element.

    • It can also be used to pass additional data to the event handler function.

    • The .bind() function is deprecated in jQuery version 3.0 and above. It is reco

  • Answered by AI
  • Q14. Find the angle between hour handle and minute handle in a clock
  • Ans. 

    The angle between the hour and minute hands of a clock can be calculated using a formula.

    • The hour hand moves 30 degrees per hour and 0.5 degrees per minute.

    • The minute hand moves 6 degrees per minute.

    • Calculate the angle between the two hands using the formula: |30H - 11M/2|, where H is the hour and M is the minute.

  • Answered by AI
  • Q15. Is it possible to create slideshow without using javascript
  • Ans. 

    Yes, it is possible to create a slideshow without using JavaScript.

    • Use CSS animations and transitions to create the slideshow.

    • Use HTML and CSS to structure and style the slideshow.

    • Utilize keyframe animations to create the slide transitions.

    • Use radio buttons or checkboxes to control the slideshow navigation.

    • Apply the :target pseudo-class to create a simple slideshow without JavaScript.

  • Answered by AI
  • Q16. Questions about my current project and academic project
  • Q17. Given two points A and B with distance between them lets say D.there are N men who want to go from point A to point B.All men walk with same speed.They also have one scooter with them which has speed grea...
  • Ans. 

    The men can take turns riding the scooter, allowing them to reach point B faster.

    • The men can form a queue and take turns riding the scooter.

    • The person riding the scooter can drop it off at a certain point and the next person can pick it up.

    • The scooter can be passed along the line of men until everyone reaches point B.

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Javascript
College Name: na

Skills evaluated in this interview

I was interviewed before May 2016.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about your mini project
  • Ans. 

    Developed a web application for tracking personal expenses

    • Used HTML, CSS, and JavaScript for front-end development

    • Implemented Node.js and MongoDB for back-end functionality

    • Included features for adding, categorizing, and analyzing expenses

  • Answered by AI
  • Q2. Tell me about your team work other than project.
  • Ans. 

    I actively participate in team building activities and collaborate with colleagues on various initiatives outside of work projects.

    • Organizing team lunches or outings to build camaraderie

    • Participating in charity events or volunteer work as a team

    • Collaborating on internal initiatives such as diversity and inclusion programs

    • Attending industry conferences or workshops together

  • Answered by AI
  • Q3. How will you convince your client if you are not able deliver the project on time.
  • Ans. 

    I will explain the reasons for the delay and present a plan to mitigate it.

    • Communicate the reasons for the delay clearly and honestly

    • Present a plan to mitigate the delay and ensure timely delivery

    • Provide regular updates on the progress of the project

    • Offer alternative solutions or compromises if necessary

    • Ensure that the client understands the impact of the delay on the project

    • Maintain a professional and respectful attit

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions will be from aptitude and vocabulary
Duration: 1 hour
Total Questions: 60

Interview Questionnaire 

1 Question

  • Q1. Totally HR basic questions

Interview Preparation Tips

Round: Test
Experience: Quant LR verbal IQ
Duration: 1 hour

Round: HR Interview
Experience: Related to personal life and activities with achievements etc.

College Name: Tsec

Interview Questionnaire 

5 Questions

  • Q1. About skill
  • Q2. Project details
  • Q3. Angular js architurure
  • Q4. Small angular program
  • Q5. About composition

Interview Preparation Tips

Round: Resume Shortlist
Experience: I exposed, what i did in my previous project and roles and responsibilities

Round: Test
Experience: problem solving

I was interviewed in Jan 2017.

Interview Preparation Tips

Round: Test
Experience: I cleared it was technical so was easy for me

Round: Telephonic
Experience: technical telephonic, cleared,

Round: Telephonic 2 final
Experience: cleared

Round: Technical 3 final
Experience: cleared

Skills: Java Programming

Interview Questionnaire 

9 Questions

  • Q1. The technical round was followed by HR interview to save time
  • Q2. What is multithreading
  • Ans. 

    Multithreading is the ability of a program to perform multiple tasks concurrently.

    • Multithreading allows for better utilization of CPU resources

    • It can improve program performance and responsiveness

    • Examples include running multiple downloads simultaneously or updating a GUI while performing a background task

    • Synchronization is important to prevent race conditions and ensure thread safety

  • Answered by AI
  • Q3. How is multithreading implemented in JAVA
  • Ans. 

    Multithreading in Java allows concurrent execution of multiple threads.

    • Java provides built-in support for multithreading through the java.lang.Thread class.

    • Threads can be created by extending the Thread class or implementing the Runnable interface.

    • The start() method is used to start a new thread, which calls the run() method.

    • Synchronization mechanisms like synchronized blocks and locks can be used to control access to ...

  • Answered by AI
  • Q4. Does Java support multiple Inheritance? If not then how an interface inherits two interfaces? Explain?
  • Ans. 

    No, Java does not support multiple inheritance. However, interfaces can inherit multiple interfaces.

    • Java does not allow a class to inherit from multiple classes.

    • This is because multiple inheritance can lead to ambiguity and conflicts.

    • However, a class can implement multiple interfaces in Java.

    • An interface can extend multiple interfaces, allowing for inheritance of multiple interfaces.

    • This is known as interface inheritan

  • Answered by AI
  • Q5. Difference between DO-WHILE & WHILE Loop
  • Ans. 

    DO-WHILE loop executes the code block at least once, while WHILE loop executes only if the condition is true.

    • DO-WHILE loop checks the condition at the end of the loop

    • WHILE loop checks the condition at the beginning of the loop

    • DO-WHILE loop executes the code block at least once

    • WHILE loop may not execute the code block at all if the condition is false

  • Answered by AI
  • Q6. Rate urself on 1-10 scale
  • Ans. 

    I would rate myself as an 8 on a scale of 1-10.

    • I have a strong understanding of software development principles and practices.

    • I have experience working with multiple programming languages and frameworks.

    • I am skilled in problem-solving and debugging.

    • I have successfully delivered complex software projects in the past.

    • I continuously strive to learn and improve my skills.

  • Answered by AI
  • Q7. How wil you dispaly data of two tables? explain?
  • Ans. 

    Display data of two tables by joining them using a common column.

    • Use SQL JOIN statement to combine data from two tables based on a common column.

    • Choose the appropriate type of JOIN based on the relationship between the tables.

    • Specify the columns to be displayed in the SELECT statement.

    • Use aliases to differentiate between columns with the same name in both tables.

    • Apply any necessary filters or sorting to the result set.

  • Answered by AI
  • Q8. Why should i hire you
  • Q9. Why TCS

Interview Preparation Tips

Round: Test
Experience: If you are taking examination of both analytical and verbal part then you will get 10 minutes for verbal part first and then 80 minutes for analytical part. Even if you solve verbal part in less than 10 minutes the remaining time will not be added to your analytical part. Analytical part consists of 30 questions need to be solved within 80 minutes. You can easily navigate the question and exam environment is same as in TCS Open See Same. You will have an on screen calculator. You can also carry a calculator in examination hall. My suggestion is to carry your own calculator because on screen calculator will only waste your time.
Tips: You can refer Quantitative Aptitude by Arun Sharma : This is the book for a CAT aspirants. Believe me if you solve LOD 1 and LOD 2, you can easily crack the analytical round. This is the sole book I used while preparing for TCS. Here you will get each concept explained beautifully. Read all the theory and solve example problems also. Do not rely on Quantitative Aptitude by R. S. AGARWAL
Duration: 90 minutes
Total Questions: 50

Round: Technical Interview
Experience: I do not remember all the questions they asked me, but a few are as above. i hope it helps :)
Tips: In technical round you will be asked simple conceptual questions. Never ever show how smart you are because interviewer is smarter than you. Keep calm and be confident. If you do not know answer of any question, simply say no and do not proceed with half answers or wrong answer because they will trap you in your own answer.  In this round you will be asked question mostly from your CV. If you are a CSE/IT guy then never ever rely only on your CV. It entirely depends on the interviewer mind. If they do not see your resume then you will be asked question from any topic related to CSE/IT branch. So the idea is to prepare well for the subject and topic you have mentioned in your CV and also keep sound knowledge of other CSE/IT subjects.  This is what happened in my P. I. . They reviewed my resume but not even a single technical questions they asked related to the subjects or topics mentioned in my resume. So guys/gals be prepared and have a basic knowledge of important CSE/IT subjects ( Data Structure, DBMS, C/C++, JAVA, Operating Systems,  Software Engineering etc.) .   They do not go in depth of any subject and ask only basic questions.

General Tips: Keep trying ! :)
Skill Tips: NA
Skills: C programming basics, JAVA , DB, C++, OS basics
College Name: TERNA ENGINEERING COLLEGE
Motivation: TCS is the largest software company of India. It is the most admired company of India. Being an employee of TCS is what many dream. And getting into TCS is quite easy also. All that you need is your desire and work towards it.
Funny Moments: Yet to happen

Skills evaluated in this interview

Interview Questionnaire 

12 Questions

  • Q1. Basic c, c++, java questions
  • Q2. What is multithreading
  • Ans. 

    Multithreading is the ability of a program to perform multiple tasks concurrently.

    • Multithreading allows for better utilization of CPU resources

    • It can improve program performance and responsiveness

    • Examples include running multiple downloads simultaneously or updating a GUI while performing a background task

    • Synchronization is important to prevent race conditions and ensure thread safety

  • Answered by AI
  • Q3. How multithreading is carried in java
  • Ans. 

    Java supports multithreading through the java.lang.Thread class and java.util.concurrent package.

    • Java threads are created by extending the Thread class or implementing the Runnable interface.

    • Threads can be started using the start() method.

    • Synchronization can be achieved using synchronized keyword or locks.

    • Java provides several classes and interfaces to support concurrent programming such as Executor, ExecutorService, F...

  • Answered by AI
  • Q4. Does Java support multiple Inheritance? If not then how an interface inherits two interfaces? Explain
  • Ans. 

    Java does not support multiple inheritance, but interfaces can inherit multiple interfaces.

    • Java does not allow a class to inherit from multiple classes, but it can implement multiple interfaces.

    • Interfaces can inherit from multiple interfaces using the 'extends' keyword.

    • For example, interface C can extend interfaces A and B: 'interface C extends A, B {}'

  • Answered by AI
  • Q5. Difference between Do – While and While loop.
  • Ans. 

    Do-While loop executes the code block once before checking the condition, while loop checks the condition first.

    • Do-While loop is used when the code block needs to be executed at least once.

    • While loop is used when the code block may not need to be executed at all.

    • Do-While loop is less efficient than While loop as it always executes the code block at least once.

    • Example of Do-While loop: do { //code block } while (conditi...

  • Answered by AI
  • Q6. How will you display data of two tables?
  • Ans. 

    Join the tables on a common column and display the combined data.

    • Identify the common column in both tables

    • Use JOIN statement to combine the tables

    • Select the columns to display

    • Apply any necessary filters or sorting

    • Display the data in a table or list format

  • Answered by AI
  • Q7. Explain. Difference between primary key and unique key
  • Ans. 

    Primary key uniquely identifies a record in a table, while unique key ensures uniqueness of a column.

    • Primary key cannot have null values, while unique key can have one null value.

    • A table can have only one primary key, but multiple unique keys.

    • Primary key is used as a foreign key in other tables, while unique key is not.

    • Example: Employee ID can be a primary key, while email address can be a unique key.

  • Answered by AI
  • Q8. Rate urself on 1 to 10 scale
  • Q9. Y r ur academics below 6.5cgpa
  • Q10. Y shud i hire u
  • Ans. 

    I have a strong background in software development, excellent problem-solving skills, and a passion for learning new technologies.

    • Extensive experience in programming languages such as Java, Python, and C++

    • Proven track record of delivering high-quality software solutions on time and within budget

    • Strong analytical and problem-solving skills, with the ability to quickly adapt to new technologies and frameworks

    • Excellent co...

  • Answered by AI
  • Q11. What r ur weaknesses
  • Q12. Can u work in nyt shifts if required

Interview Preparation Tips

Round: Test
Experience: have intrest in coding.. must know programming logics
Tips: be calm and attmpt evry question..

Round: Group Discussion
Experience: make sure you are prepared frequently asked topics.. speak honestly.. speak more herewich wil reflect ur confident but dont over do. also maintain the constant voice tone
Tips: be honest to urself.. dnt let ur imag go down

Round: Technical Interview
Experience: In technical round you will be asked simple conceptual questions. Never ever show how smart you are because interviewer is smarter than you. Keep calm and be confident. If you do not know answer of any question, simply say no and do not proceed with half answers or wrong answer because they will trap you in your own answer.  In this round you will be asked question mostly from your CV. If you are a CSE/IT guy then never ever rely only on your CV. It entirely depends on the interviewer mind. If they do not see your resume then you will be asked question from any topic related to CSE/IT branch. So the idea is to prepare well for the subject and topic you have mentioned in your CV and also keep sound knowledge of other CSE/IT subjects.  This is what happened in my P. I. . They reviewed my resume but not even a single technical questions they asked related to the subjects or topics mentioned in my resume. So guys/gals be prepared and have a basic knowledge of important CSE/IT subjects ( Data Structure, DBMS, C/C++, JAVA, Operating Systems,  Software Engineering etc.) .   They do not go in depth of any subject and ask only basic questions.
Tips: first clear ur basiic concepts.. n also have gr88 coding skills n logics for the same.

Round: HR Interview
Experience: being 100% honest wil help u clear dis easilyy n get thru IT.. since its da lasst round.. ALL DA VERY BEST GUYS :)

General Tips: be confident & well prepared
Skill Tips: Gain programming skills.. that help u clear all the 3 rounds successfully. Smile whenever possible.
Skills: Ability To Deal Diplomatically, positive outlook, hardworker
College Name: PIIT, PANVEL
Motivation: wear a SMILE always.. no matter wat happens
Funny Moments: yet to happen.. preparing for last sems now..

Skills evaluated in this interview

Interview Questionnaire 

8 Questions

  • Q1. The tech intrview was followed by the hr interview
  • Q2. Basic question on c c++ java
  • Q3. Basics of os, oops, db
  • Q4. Basic of loops
  • Q5. Rate ur self
  • Q6. Wht rur hobbys, strength, weaknesses
  • Ans. 

    My hobbies include coding, reading, and playing video games. My strengths are problem-solving, attention to detail, and teamwork. My weaknesses are impatience and a tendency to overthink.

    • Hobbies: Coding, reading, playing video games

    • Strengths: Problem-solving, attention to detail, teamwork

    • Weaknesses: Impatience, tendency to overthink

  • Answered by AI
  • Q7. Why shud i hire u
  • Q8. Why tcs

Interview Preparation Tips

Round: Test
Experience: Written round consists of Analytical Test and Verbal Ability Test. TCS has various criteria for skipping Analytical Test. If you are a geek ( in top five of a few stream like CSE/IT/ECE/EE/Mechanical ) then you will be allowed to skip the Analytical round. Also if you have at least 75% aggregate in 10th and 12th  and a minimum percentage marks in college ( This is set by TCS and varies from college to college, May be 8.5 pointer or 7.90 or as desired by TCS )   then you can skip analytical round. TCS is continuously changing its placement process so prepare for the worst and do not pretend that you can skip the analytical round even if you are a geek.
Tips: be well pprepared on ur side....
Duration: 90mins minutes
Total Questions: 50

Round: Technical Interview
Experience: be confident while answering.. listen carefuly every question
Tips: dont misinterprete the interviewer. be good listener and also honest

General Tips: be cool n prepare for the test
Skill Tips: develop ur communication skills
Skills: basic programming skills, basic coding logics, develop logical thinking
College Name: PIIT, PANVEL
Motivation: always share ur problems n clr ur concepts
Funny Moments: yet to happen.. preparing fr 8th sem.. i hope i do well der

Interview Questionnaire 

10 Questions

  • Q1. This round was followed by the HR interview
  • Q2. Tel mi abt urself
  • Ans. 

    I am a software developer with experience in Java and Python.

    • Graduated with a degree in Computer Science

    • Worked on multiple projects using Java and Python

    • Familiar with Agile methodology

    • Strong problem-solving skills

    • Constantly learning and improving

  • Answered by AI
  • Q3. Ur strengths weaknesses
  • Q4. What is multithreaing
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently.

    • Multithreading improves performance by utilizing idle CPU time.

    • Threads share the same memory space, allowing for efficient communication.

    • Examples include web servers handling multiple requests and video games rendering graphics while processing user input.

  • Answered by AI
  • Q5. How it is implemented in java
  • Ans. 

    The question is asking about how a specific implementation is done in Java.

    • Explain the implementation details of the specific feature or functionality in Java

    • Provide code examples if applicable

    • Discuss any relevant libraries or frameworks used in the implementation

  • Answered by AI
  • Q6. Diff betn while & do while loop
  • Ans. 

    While loop executes only if the condition is true, do-while loop executes at least once before checking the condition.

    • While loop checks the condition first, then executes the code block

    • Do-while loop executes the code block first, then checks the condition

    • While loop may not execute at all if the condition is false initially

    • Do-while loop always executes at least once before checking the condition

  • Answered by AI
  • Q7. Does Java support multiple Inheritance? If not then how an interface inherits two interfaces? Explain?
  • Ans. 

    No, Java does not support multiple inheritance. However, interfaces can inherit multiple interfaces.

    • Java does not allow a class to inherit from multiple classes, which is known as multiple inheritance.

    • However, a class can implement multiple interfaces, which is known as multiple interface inheritance.

    • By implementing multiple interfaces, a class can inherit the abstract methods defined in those interfaces.

    • For example, c...

  • Answered by AI
  • Q8. How will you display data of two tables? Explain
  • Ans. 

    To display data of two tables, we can use JOIN operation in SQL.

    • Identify the common column(s) between the two tables.

    • Use JOIN operation to combine the data from both tables based on the common column(s).

    • Choose the appropriate type of JOIN operation (INNER, LEFT, RIGHT, FULL) based on the requirement.

    • Use SELECT statement to display the required columns from the combined table.

    • Example: SELECT t1.column1, t2.column2 FROM ...

  • Answered by AI
  • Q9. Diff betn primary & unique key
  • Ans. 

    Primary key uniquely identifies a record in a table, while unique key ensures uniqueness of a column.

    • Primary key is a column or set of columns that uniquely identifies each record in a table

    • Primary key cannot have null values

    • A table can have only one primary key

    • Unique key ensures that a column or set of columns have unique values

    • Unique key can have null values

    • A table can have multiple unique keys

  • Answered by AI
  • Q10. Rate urself on scale 1-10
  • Ans. 

    I would rate myself as an 8 on a scale of 1-10.

    • I have a strong understanding of software development principles and practices.

    • I have experience working with multiple programming languages and frameworks.

    • I am skilled in problem-solving and debugging.

    • I have successfully delivered complex software projects in the past.

    • I continuously strive to learn and improve my skills.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: If you are taking examination of both analytical and verbal part then you will get 10 minutes for verbal part first and then 80 minutes for analytical part. Even if you solve verbal part in less than 10 minutes the remaining time will not be added to your analytical part. Analytical part consists of 30 questions need to be solved within 80 minutes. You can easily navigate the question and exam environment is same as in TCS Open See Same. You will have an on screen calculator. You can also carry a calculator in examination hall. My suggestion is to carry your own calculator because on screen calculator will only waste your time.
Tips: develop programming skills, n clear ur basics first, also attnd all questions
Duration: 90mins minutes
Total Questions: 50

Round: Technical Interview
Experience: clear ur BASIC concepts.. all da besst !!!

General Tips: U can Do IT...
Skill Tips: think positive develop coding skills n u wl definetly clear all the rounds.
Skills: basic c programing skills, basic netwrking knowledge, coding logics
College Name: PIIT, PANVEL
Motivation: have faith in urself n u can achieve IT
Funny Moments: looking frwd to IT :)

Skills evaluated in this interview

Plum Benefits Interview FAQs

How many rounds are there in Plum Benefits Node JS Developer interview?
Plum Benefits interview process usually has 3 rounds. The most common rounds in the Plum Benefits interview process are Resume Shortlist, HR and Coding Test.

Tell us how to improve this page.

Plum Benefits Node JS Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Customer Success Associate
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Accounts Manager
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Leader
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Accounts Manager
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Success Manager
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Plum Benefits with

BookMyShow

4.0
Compare

Cleartrip

3.4
Compare

MakeMyTrip

3.7
Compare

Paytm

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