Upload Button Icon Add office photos

Filter interviews by

Globant Node JS Developer Interview Questions and Answers

Updated 5 Jun 2022

Globant Node JS Developer Interview Experiences

1 interview found

I applied via Recruitment Consulltant and was interviewed in Dec 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Difference between var, let and const
  • Ans. 

    var is function scoped, let and const are block scoped.

    • var can be redeclared and updated within its scope

    • let can be updated but not redeclared within its scope

    • const cannot be updated or redeclared once declared

    • let and const are not hoisted like var

    • const must be initialized during declaration

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Program to check whether two strings are anagrams or not
  • Ans. 

    Program to check whether two strings are anagrams or not

    • Convert both strings to lowercase

    • Remove all whitespaces from both strings

    • Sort both strings alphabetically

    • Compare the sorted strings, if they are equal then they are anagrams

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with the javascript basics

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Question related to operating system and computer network

Round 2 - Technical 

(1 Question)

  • Q1. Traverse all child nodes in tree
  • Ans. 

    Traverse all child nodes in a tree data structure

    • Use depth-first or breadth-first traversal algorithms

    • Recursively visit each child node starting from the root node

    • Consider using a stack or queue data structure for traversal

    • Example: Traverse all nodes in a binary tree

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Question related to cloud and oops
Round 4 - Technical 

(1 Question)

  • Q1. Question related to my background and how web site work
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basic DSA questions like binary search, pattern
  • Q2. Basic SQL query questions

Interview Preparation Tips

Interview preparation tips for other job seekers - One of the worst company I have given interview,
The HR named Shubha A contacted me a day before interview that are you available for interview, I told yes.

After that interview has been scheduled, with interviewer soumyashree rout , I have given all the answers which she asked for and what did I get an acquisition of cheating in interview, I even showed her my surroundings that I am not cheating, and how come such dumb people are allowed to interview. Really waste of time and effort.

Please don't go for interview for this company you will find better opportunities like I did , offered a position at a product based company better than this.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Written coding test
Basic coding questions
Only c c++
Easy level

Round 2 - Technical 

(2 Questions)

  • Q1. Bit manipulation
  • Q2. Rtos concepts,c coding concepts like structures,pointers
Round 3 - Technical 

(2 Questions)

  • Q1. About projects more detailly
  • Q2. About memory management and layout in c
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 Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

In first round 4 coding question like 1 dsa 2 database and one is api and question is very simple . coding round was conducted in hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. DSA QUESTION LIKE TREE AND GRAPH
  • Q2. DP AND SORTING APPROACH
Round 3 - Coding Test 

Again same but dsa question and oops concept in deep level

Interview Preparation Tips

Interview preparation tips for other job seekers - good knowledge in dsa , database , programming thats it
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(3 Questions)

  • Q1. Bubble sort and array was given
  • Q2. Create binary tree
  • Ans. 

    A binary tree is a data structure where each node has at most two children.

    • Start by creating a Node class with left and right child pointers.

    • Implement methods to insert, search, and delete nodes in the tree.

    • Consider different traversal methods like inorder, preorder, and postorder.

  • Answered by AI
  • Q3. HightBuilding Pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - just go through strivers videos

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General aptitude questions

Round 2 - Coding Test 

Problem solving, solved 2 out of 3 questions

Round 3 - Group Discussion 

General topics were given in gd

Round 4 - Technical 

(2 Questions)

  • Q1. Programming concepts
  • Q2. Projects and coding round questions solved
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2medium level questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Project discussion for 30 mins
  • Q2. Dsa problem medium level
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Rest Apis questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Core java and OOPS and LLD

Interview Preparation Tips

Interview preparation tips for other job seekers - Good understanding of Core language and its framework
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. What is inheritance?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to reuse code from another class

    • Creates a parent-child relationship between classes

    • Derived class inherits attributes and methods from base class

  • Answered by AI
  • Q2. What is oop principles?
  • Ans. 

    OOP principles are the fundamental concepts of object-oriented programming that help in designing and implementing software solutions.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Allowing a class to inherit properties and behavior from another class.

    • Polymorphism: The ability of objects to take on multiple forms or have multiple behaviors.

    • Abstraction: Hiding t...

  • Answered by AI
  • Q3. What is polymorphism principle?
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or objects.

    • Examples include method overloading and method overriding in object-oriented programming languages like Java.

  • Answered by AI

Globant Interview FAQs

How many rounds are there in Globant Node JS Developer interview?
Globant interview process usually has 2 rounds. The most common rounds in the Globant interview process are Technical.
How to prepare for Globant Node JS Developer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Globant. The most common topics and skills that interviewers at Globant expect are Angular, Javascript, AWS, Agile and Azure.
What are the top questions asked in Globant Node JS Developer interview?

Some of the top questions asked at the Globant Node JS Developer interview -

  1. Program to check whether two strings are anagrams or ...read more
  2. Difference between var, let and co...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.6
 • 3.6k Interviews
LTIMindtree Interview Questions
3.9
 • 2.7k Interviews
Mphasis Interview Questions
3.4
 • 772 Interviews
Amdocs Interview Questions
3.8
 • 514 Interviews
View all
Globant Node JS Developer Salary
based on 9 salaries
₹4.8 L/yr - ₹7 L/yr
5% less than the average Node JS Developer Salary in India
View more details
Senior Software Engineer
1.6k salaries
unlock blur

₹10 L/yr - ₹35 L/yr

Software Engineer
280 salaries
unlock blur

₹6.1 L/yr - ₹21 L/yr

Automation Test Engineer
246 salaries
unlock blur

₹5.6 L/yr - ₹21.1 L/yr

Technical Lead
228 salaries
unlock blur

₹15.9 L/yr - ₹39 L/yr

Senior Automation Test Engineer
202 salaries
unlock blur

₹9.5 L/yr - ₹29 L/yr

Explore more salaries
Compare Globant with

Accenture

3.9
Compare

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
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