Upload Button Icon Add office photos

Promatics Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Promatics Technologies Software Developer Interview Questions and Answers

Updated 31 Mar 2023

Promatics Technologies Software Developer Interview Experiences

2 interviews found

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

I applied via Job Portal and was interviewed in Oct 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 

Java basics questions. Some patterns to print and oops concepts

Round 3 - HR 

(2 Questions)

  • Q1. Introduction and why you join software industry
  • Ans. 

    I joined the software industry because of my passion for problem-solving and creating innovative solutions.

    • Passion for problem-solving

    • Interest in technology and innovation

    • Opportunity to create impactful solutions

    • Love for coding and programming

    • Desire to be part of a fast-paced and dynamic industry

  • Answered by AI
  • Q2. What is your salary expectation
  • Ans. 

    I expect a competitive salary based on my skills, experience, and the market rate for software developers.

    • Consider the average salary range for software developers in your location

    • Research the salary range offered by similar companies in the industry

    • Factor in your years of experience and any specialized skills you possess

    • Be prepared to negotiate and discuss benefits in addition to salary

    • Example: I expect a salary in th

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident . Try to ask everything about your job profile.

I applied via Walk-in and was interviewed before Nov 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

20 questions were there and enough time was given. Questions were easy to medium

Round 3 - One-on-one 

(2 Questions)

  • Q1. Basics of programming were asked. You will be asked to make logic for the given problem.
  • Q2. Star pattern, Fibonacci series, swap two numbers without third variable
Round 4 - HR 

(1 Question)

  • Q1. They simply check your communication skills and behaviour

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on the programming part, try to solve logical problems

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

Interview questions from similar companies

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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is promise?
  • Ans. 

    A promise is an object representing the eventual completion or failure of an asynchronous operation.

    • Promises are used in JavaScript to handle asynchronous operations.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained together using .then() method.

    • Example: Fetching data from an API returns a promise that resolves with the data.

    • Example: Promises help avoid callback hell by providi...

  • Answered by AI
  • Q2. What is scope and how it differentiate?
  • Ans. 

    Scope refers to the visibility and accessibility of variables in a program.

    • Scope determines where in a program a variable can be accessed.

    • Global scope refers to variables that can be accessed anywhere in the program.

    • Local scope refers to variables that are only accessible within a specific block of code.

    • Variables declared within a function have local scope.

    • Scope can help prevent naming conflicts and improve code organi

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before May 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Logical question
  • Q2. Basic opps and collection
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Aug 2024.

Round 1 - HR 

(1 Question)

  • Q1. Resume related questions
Round 2 - Technical 

(1 Question)

  • Q1. Technology related
Round 3 - One-on-one 

(1 Question)

  • Q1. Discuss everything

Interview Preparation Tips

Interview preparation tips for other job seekers - Work life balance 0, long working hours 10 to 11 hours, 9 working hours + break.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

They will ask questions on logic

Round 3 - Technical 

(3 Questions)

  • Q1. About technology you mentioned in resume
  • Q2. And arrays or condition based
  • Q3. String function
Round 4 - HR 

(1 Question)

  • Q1. About technology and previous company about work
Round 5 - One-on-one 

(1 Question)

  • Q1. Salary discussion
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Reconcillation in react?
  • Ans. 

    Reconciliation in React is the process of updating the virtual DOM to match the actual DOM.

    • Reconciliation is the process of comparing the virtual DOM with the actual DOM and making necessary updates.

    • React uses a diffing algorithm to efficiently update the DOM without re-rendering everything.

    • Key prop is important for React to identify which items have changed, added, or removed during reconciliation.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. How you see yourself in next 5 years?

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Coding Test 

Google meet in react they asked basics and node also must clear js

Interview Preparation Tips

Interview preparation tips for other job seekers - its nice
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

Promatics Technologies Interview FAQs

How many rounds are there in Promatics Technologies Software Developer interview?
Promatics Technologies interview process usually has 3-4 rounds. The most common rounds in the Promatics Technologies interview process are Resume Shortlist, HR and Aptitude Test.
What are the top questions asked in Promatics Technologies Software Developer interview?

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

  1. Basics of programming were asked. You will be asked to make logic for the given...read more
  2. Star pattern, Fibonacci series, swap two numbers without third varia...read more
  3. They simply check your communication skills and behavi...read more

Tell us how to improve this page.

Promatics Technologies Software Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Promatics Technologies Software Developer Salary
based on 8 salaries
₹1 L/yr - ₹3 L/yr
75% less than the average Software Developer Salary in India
View more details

Promatics Technologies Software Developer Reviews and Ratings

based on 4 reviews

4.9/5

Rating in categories

5.0

Skill development

4.9

Work-life balance

4.9

Salary

4.9

Job security

4.9

Company culture

4.9

Promotions

4.9

Work satisfaction

Explore 4 Reviews and Ratings
Software Developer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Web Developer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Web Developer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Android Developer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Promatics Technologies with

SPARX IT Solutions

3.6
Compare

Saffron Tech

3.9
Compare

Techugo

4.0
Compare

Hidden Brains InfoTech

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