Upload Button Icon Add office photos

Filter interviews by

Promatics Technologies Node JS Developer Interview Questions, Process, and Tips

Updated 23 May 2024

Promatics Technologies Node JS Developer Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed before May 2023. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. What is node js express js and normal ds question based on javascipt
  • Q2. What is asynchorneion
  • Ans. 

    Asynchrony is the ability of a system to handle multiple tasks concurrently without blocking the main thread.

    • Asynchrony allows tasks to run independently of each other, improving performance and responsiveness.

    • Node.js uses an event-driven, non-blocking I/O model to handle asynchronous operations.

    • Examples of asynchronous operations in Node.js include reading files, making network requests, and executing database queries

  • Answered by AI
  • Q3. What is spilt methode
  • Ans. 

    The split() method is used to split a string into an array of substrings based on a specified separator.

    • The split() method takes a separator as an argument, which can be a string or a regular expression.

    • The method returns an array of substrings created by splitting the original string at each occurrence of the separator.

    • Example: 'hello world'.split(' ') will return ['hello', 'world']

  • Answered by AI
  • Q4. What is deep copy
  • Ans. 

    Deep copy is a copy of an object that duplicates all of its properties and nested objects, creating a new independent copy.

    • Deep copy creates a new object with all properties and nested objects copied.

    • Changes made to the original object do not affect the deep copy.

    • Deep copy is often used when you need to modify an object without affecting the original.

  • Answered by AI
  • Q5. What is diff bw == and===
  • Ans. 

    The '==' operator checks for equality, while the '===' operator checks for strict equality (including data type).

    • The '==' operator performs type coercion before comparing two values.

    • The '===' operator does not perform type coercion and compares both value and data type.

    • Example: 1 == '1' will return true, but 1 === '1' will return false.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - try to prepare basic question of js

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Question around priority queue
  • Q2. Decode strings leetcode
Round 2 - Technical 

(1 Question)

  • Q1. System design questions scenario based
Round 3 - Technical 

(1 Question)

  • Q1. Questions on multidimensional tree
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Fibonacci, swap without 3rd var
  • Q2. Non repetitive char in string
  • Ans. 

    Find the first non-repetitive character in a string.

    • Iterate through the string and count the occurrences of each character.

    • Return the first character with a count of 1.

  • Answered by AI
Round 2 - Case Study 

Scenario based questions

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Intro after that basic Of .net, SQL table etc
Round 2 - Coding Test 

They ask many questions from SQL like joins and it's types, how to drop a column from table etc

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

I applied via Walk-in and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Basic Logical programs

Round 2 - Technical 

(4 Questions)

  • Q1. Explain laravel Structure
  • Q2. Database migration
  • Q3. What is indexing in database
  • Q4. What is controller ,What is Route
Round 3 - HR 

(2 Questions)

  • Q1. Why you leave your previous Company
  • Q2. What is your role in previous company
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 Query question and 3 coding questions

Round 2 - Technical 

(4 Questions)

  • Q1. Basic oops , Java script and Networking questions.
  • Q2. What is object orienteered programming.
  • Ans. 

    Object oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • Objects are instances of classes, which define the structure and behavior of the objects.

    • Encapsulation, inheritance, and polymorphism are key principles of object oriented programming.

    • Example: Java, C++, Python are popular languages that support object oriented programming.

  • Answered by AI
  • Q3. Different Events in java script
  • Ans. 

    Events in JavaScript are actions or occurrences that happen in the browser that the code can respond to.

    • Events can be triggered by user actions (like clicking a button), browser actions (like page load), or system events (like a timer expiring)

    • Event listeners are used to listen for and respond to events

    • Common events include click, mouseover, keydown, submit, etc.

  • Answered by AI
  • Q4. Event listeners
Round 3 - Coding Test 

Project , coding question, DBMS

Round 4 - HR 

(1 Question)

  • Q1. Basic personal details

Skills evaluated in this interview

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

2 DSA questions Both are from DP

Round 2 - Technical 

(2 Questions)

  • Q1. 2 Questions , 1 is DSA
  • Q2. Second question is Puzzle

Interview Preparation Tips

Interview preparation tips for other job seekers - Practise DSA more and give more and more interviews.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Almost asked the basics of .net, c#, ADO. NET, SQL
  • Q2. Difference between ref and out keywords?
  • Ans. 

    The ref and out keywords are used in C# to pass arguments by reference instead of by value.

    • The ref keyword is used to pass a variable by reference, allowing the called method to modify the value of the variable.

    • The out keyword is similar to ref, but it is used when the called method needs to assign a value to the variable being passed.

    • The ref keyword requires the variable to be initialized before passing it to the meth...

  • Answered by AI
  • Q3. Overloading and overriding concept and explanation ?
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is implementing a method in a derived class with the same name and signature as in the base class.

    • Overloading allows a class to have multiple methods with the same name but different parameters.

    • Overriding allows a derived class to provide a different implementation of a method that is already defined in the base class.

    • Overloa...

  • Answered by AI
  • Q4. SQL join queries with one example ?
  • Ans. 

    SQL join queries are used to combine rows from two or more tables based on a related column between them.

    • Join queries are used to retrieve data from multiple tables in a single query.

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Join conditions are specified using the ON keyword, which defines the column(s) to join on.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = ta

  • Answered by AI
  • Q5. ADO .NET database calling steps ?
  • Ans. 

    ADO .NET database calling steps involve establishing a connection, creating a command object, executing the command, and handling the results.

    • Establish a connection to the database using a connection string

    • Create a command object to specify the SQL query or stored procedure to be executed

    • Execute the command to retrieve or modify data in the database

    • Handle the results by reading data from a DataReader or updating data u

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in May 2024.

Round 1 - Group Discussion 

Questions about resume and web browsers in particular

Round 2 - Assignment 

Implement a logger using web sockets

Round 3 - Assignment 

Start/stop web browser using rest API using 2 web browsers

Interview Preparation Tips

Interview preparation tips for other job seekers - The assignment questions are fixed and is asked for everyone. The 3rd round interviewer was very rude and had a very bad experience with him.

Did not give time to implement code, continuously interrupting and talking nonsense in between, very inexperienced..
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Coding Test 

There were 5 question out of which 2 were coding Data Structure problems , 1 was SQL based , 1 was AI based Problem ( Machine Learning ) and 1 was to create UML Diagram.
First Coding question was pretty easy , other one was kinda tough , UML Diagram was also easy and SQL query was of moderate level.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep Practising u'll definately make it.

Promatics Technologies Interview FAQs

How many rounds are there in Promatics Technologies Node JS Developer interview?
Promatics Technologies interview process usually has 1 rounds. The most common rounds in the Promatics Technologies interview process are One-on-one Round.
What are the top questions asked in Promatics Technologies Node JS Developer interview?

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

  1. what is diff bw == and...read more
  2. what is asynchorne...read more
  3. what is spilt meth...read more

Tell us how to improve this page.

Promatics Technologies Node JS Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.7
 • 48 Interviews
ZIGRAM Interview Questions
3.9
 • 26 Interviews
Fleetx.io Interview Questions
3.9
 • 26 Interviews
Springworks Interview Questions
4.6
 • 23 Interviews
RGBSI Interview Questions
3.5
 • 23 Interviews
Fingent Interview Questions
4.4
 • 22 Interviews
View all
Promatics Technologies Node JS Developer Salary
based on 4 salaries
₹2 L/yr - ₹3 L/yr
54% less than the average Node JS Developer Salary in India
View more details
Software Developer
8 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

Associate Web Developer
8 salaries
unlock blur

₹1.8 L/yr - ₹3.2 L/yr

Web Developer
8 salaries
unlock blur

₹1 L/yr - ₹2.4 L/yr

Associate Android Developer
7 salaries
unlock blur

₹1.2 L/yr - ₹3 L/yr

Business Analyst
6 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

Explore more salaries
Compare Promatics Technologies with

SPARX IT Solutions

3.6
Compare

Saffron Tech

3.8
Compare

Techugo

4.1
Compare

Hidden Brains InfoTech

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