Upload Button Icon Add office photos
Engaged Employer

i

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

Nimap Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Nimap Infotech Interview Questions and Answers

Updated 14 Jun 2025
Popular Designations

15 Interview questions

A Jr Python Developer was asked 1mo ago
Q. Given an array of numbers, find the 3rd largest element.
Ans. 

To find the 3rd largest element in an array, we can sort the array and select the appropriate index.

  • Sort the array in descending order and select the element at index 2.

  • Example: For array [5, 3, 8, 1, 2], sorted array is [8, 5, 3, 2, 1]. 3rd largest is 3.

  • Alternatively, use a set to remove duplicates and then sort.

  • Example: For array [5, 5, 3, 8, 1], unique sorted array is [8, 5, 3, 1]. 3rd largest is 3.

View all Jr Python Developer interview questions
A Java Developer was asked 2mo ago
Q. The first round consisted of two coding questions: one on finding the second largest number
Ans. 

Find the second largest number in an array of integers using Java.

  • 1. Sort the array in descending order and pick the second element. Example: [3, 1, 4, 2] -> sorted: [4, 3, 2, 1] -> second largest: 3.

  • 2. Use a loop to track the largest and second largest numbers. Example: for array [5, 3, 9, 1], largest=9, secondLargest=5.

  • 3. Handle duplicates by checking if the current number is greater than the largest and n...

View all Java Developer interview questions
A QA Engineer was asked 3mo ago
Q. How do you create collection variables and environment variables in Postman API testing?
Ans. 

Postman allows users to create collection and environment variables for efficient API testing.

  • To create a collection variable, go to the collection, click on 'Variables', and add key-value pairs.

  • Example: Add a variable 'authToken' with value '12345' for authentication in requests.

  • To create an environment variable, click on the 'Environment' dropdown, select 'Manage Environments', and add a new environment.

  • Example:...

View all QA Engineer interview questions
A QA Engineer was asked 3mo ago
Q. What is the TestNG framework, and how do you use a data provider within it?
Ans. 

TestNG is a testing framework inspired by JUnit, designed for test configuration and parallel execution.

  • Supports annotations like @Test, @BeforeMethod, @AfterMethod.

  • Allows grouping of tests using @Test(groups = {"group1"}).

  • Data Providers can be defined using @DataProvider annotation.

  • Example of Data Provider: @DataProvider(name = "data") public Object[][] dataMethod() { return new Object[][] { {1, 2}, {3, 4} }; }

  • Us...

View all QA Engineer interview questions
A QA Engineer was asked 3mo ago
Q. How do you create a Newman report in Postman?
Ans. 

Newman reports in Postman can be generated using the command line tool Newman to run collections and export results.

  • Install Newman globally using npm: `npm install -g newman`.

  • Run your Postman collection with Newman: `newman run <collection-file.json>`.

  • To generate an HTML report, use: `newman run <collection-file.json> -r html`. This creates an HTML report.

  • You can specify the output file for the report:...

View all QA Engineer interview questions
An UI UX and Graphic Designer was asked 5mo ago
Q. What is the difference between UI and UX?
Ans. 

UI focuses on the visual aspects of a design, while UX focuses on the overall user experience.

  • UI (User Interface) deals with the look and feel of a design, including colors, typography, and layout.

  • UX (User Experience) focuses on the overall experience of the user, including ease of use, accessibility, and efficiency.

  • UI is more about the visual elements, while UX is about the functionality and usability of a design...

View all UI UX and Graphic Designer interview questions
An UI UX and Graphic Designer was asked 5mo ago
Q. What are the UX laws?
Ans. 

UX laws are principles and guidelines that help designers create user-friendly and intuitive experiences.

  • Hick's Law - The time it takes to make a decision increases with the number of choices available.

  • Fitts's Law - The time to move to a target is a function of the distance to the target and the size of the target.

  • Law of Proximity - Objects that are near each other are perceived as a group.

  • Law of Similarity - Obje...

View all UI UX and Graphic Designer interview questions
Are these interview questions helpful?
An UI UX and Graphic Designer was asked 5mo ago
Q. What is Fitts's Law?
Ans. 

Fitts's Law predicts the time required to rapidly move to a target area, based on size and distance.

  • Fitts's Law formula: MT = a + b * log2(D/W), where MT is movement time, D is distance, and W is width of the target.

  • Larger targets are easier to hit, reducing movement time; for example, a big button is quicker to click than a small one.

  • Targets closer to the user are faster to reach; for instance, a menu item at the...

View all UI UX and Graphic Designer interview questions
A Quality Analyst was asked 7mo ago
Q. Write test cases for AC.
Ans. 

Test cases for an air conditioner (AC) to ensure functionality and performance under various conditions.

  • Verify power on/off functionality: Ensure the AC turns on and off with the remote and manual switch.

  • Check temperature settings: Test if the AC can be set to different temperatures (e.g., 16°C, 24°C, 30°C) and maintains them.

  • Test cooling efficiency: Measure the temperature drop in a room after a set period (e.g.,...

View all Quality Analyst interview questions
A Quality Analyst was asked 7mo ago
Q. How would you write test cases for an air conditioner?
Ans. 

Test cases for AC (air conditioning) system

  • Test the AC system in different temperature settings (low, medium, high)

  • Test the AC system in different modes (cooling, heating, fan only)

  • Test the AC system with different fan speeds

  • Test the AC system for proper air flow and temperature control

  • Test the AC system for noise levels

  • Test the AC system for energy efficiency

View all Quality Analyst interview questions

Nimap Infotech Interview Experiences

32 interviews found

QA Engineer Interview Questions & Answers

user image Shubham Barje

posted on 16 Mar 2025

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

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. What is TestNg framework and how to use data provider in it?
  • Ans. 

    TestNG is a testing framework inspired by JUnit, designed for test configuration and parallel execution.

    • Supports annotations like @Test, @BeforeMethod, @AfterMethod.

    • Allows grouping of tests using @Test(groups = {"group1"}).

    • Data Providers can be defined using @DataProvider annotation.

    • Example of Data Provider: @DataProvider(name = "data") public Object[][] dataMethod() { return new Object[][] { {1, 2}, {3, 4} }; }

    • Use Dat...

  • Answered by AI
  • Q2. How to make collection variable and environment variable in Postman api testing?
  • Ans. 

    Postman allows users to create collection and environment variables for efficient API testing.

    • To create a collection variable, go to the collection, click on 'Variables', and add key-value pairs.

    • Example: Add a variable 'authToken' with value '12345' for authentication in requests.

    • To create an environment variable, click on the 'Environment' dropdown, select 'Manage Environments', and add a new environment.

    • Example: Crea...

  • Answered by AI
  • Q3. How will you create Newman report in Postman
  • Ans. 

    Newman reports in Postman can be generated using the command line tool Newman to run collections and export results.

    • Install Newman globally using npm: `npm install -g newman`.

    • Run your Postman collection with Newman: `newman run <collection-file.json>`.

    • To generate an HTML report, use: `newman run <collection-file.json> -r html`. This creates an HTML report.

    • You can specify the output file for the report: `new...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. State the difference between ui and ux?
  • Ans. 

    UI focuses on the visual aspects of a design, while UX focuses on the overall user experience.

    • UI (User Interface) deals with the look and feel of a design, including colors, typography, and layout.

    • UX (User Experience) focuses on the overall experience of the user, including ease of use, accessibility, and efficiency.

    • UI is more about the visual elements, while UX is about the functionality and usability of a design.

    • Good...

  • Answered by AI
  • Q2. What are the UX laws?
  • Ans. 

    UX laws are principles and guidelines that help designers create user-friendly and intuitive experiences.

    • Hick's Law - The time it takes to make a decision increases with the number of choices available.

    • Fitts's Law - The time to move to a target is a function of the distance to the target and the size of the target.

    • Law of Proximity - Objects that are near each other are perceived as a group.

    • Law of Similarity - Objects t...

  • Answered by AI
  • Q3. State Fitts law
  • Ans. 

    Fitts's Law predicts the time required to rapidly move to a target area, based on size and distance.

    • Fitts's Law formula: MT = a + b * log2(D/W), where MT is movement time, D is distance, and W is width of the target.

    • Larger targets are easier to hit, reducing movement time; for example, a big button is quicker to click than a small one.

    • Targets closer to the user are faster to reach; for instance, a menu item at the top ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a great opportunity to work with Nimap Infotech, where you will have the chance to engage in a wide variety of projects.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

They have given machine test

Round 2 - Technical 

(2 Questions)

  • Q1. Java technical round
  • Q2. Coding questions from array and strings
Round 3 - Technical 

(1 Question)

  • Q1. Again technical round
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Write a test cases on ac
  • Ans. 

    Test cases for an air conditioner (AC) to ensure functionality and performance under various conditions.

    • Verify power on/off functionality: Ensure the AC turns on and off with the remote and manual switch.

    • Check temperature settings: Test if the AC can be set to different temperatures (e.g., 16°C, 24°C, 30°C) and maintains them.

    • Test cooling efficiency: Measure the temperature drop in a room after a set period (e.g., 30 m...

  • Answered by AI
  • Q2. Regression testing

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

MCQ , SQL Query , JavaScript

Round 2 - Machine Test 

(2 Questions)

  • Q1. Python Machine Test
  • Q2. The task is to develop project
Round 3 - Technical 

(2 Questions)

  • Q1. Basic Python Programming Question
  • Q2. What is variable & Rules? Loops & Type of Loops ? OOPs Concept
  • Ans. 

    Variables are containers for storing data. Loops are used to iterate over a sequence of elements. OOPs is a programming paradigm based on objects and classes.

    • Variables are used to store data in memory. They can be assigned different values and data types.

    • Rules for naming variables: must start with a letter or underscore, can contain letters, numbers, and underscores, cannot start with a number.

    • Loops are used to execute...

  • Answered by AI

Reactjs Developer Interview Questions & Answers

user image Pritesh Naikade

posted on 1 Feb 2025

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

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

I attended a walk-in interview on January 31, 2025. There was only one round, where the interviewer asked me several theoretical concepts related to JavaScript, including var, let, const, closures, promises, map, filter, reduce, and hoisting. He then asked me a few questions about React JS, such as "What is React?" and "What are hooks?" He also requested that I write the syntax for the useEffect hook. After that, he assigned me some coding tasks, which included finding the sum of an array, identifying the second largest number from array, filtering out the odd numbers from an array, and providing an example of the reduce method and filter method

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare coding questions related to arrays and strings.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Regression testing vs re-testing
  • Ans. 

    Regression testing is testing the entire application after changes, while re-testing is testing specific areas that were previously found to have issues.

    • Regression testing involves testing the entire application to ensure that new changes have not affected existing functionality.

    • Re-testing focuses on testing specific areas that were previously found to have issues to ensure they have been fixed.

    • Regression testing is ty...

  • Answered by AI
  • Q2. Agile methodology
  • Q3. Test cases of ac
  • Ans. 

    Test cases for AC (air conditioning) system

    • Test the AC system in different temperature settings (low, medium, high)

    • Test the AC system in different modes (cooling, heating, fan only)

    • Test the AC system with different fan speeds

    • Test the AC system for proper air flow and temperature control

    • Test the AC system for noise levels

    • Test the AC system for energy efficiency

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
4-6 weeks
Result
No response

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Basic python question
  • Q2. Find 3rd largest element
  • Ans. 

    To find the 3rd largest element in an array, we can sort the array and select the appropriate index.

    • Sort the array in descending order and select the element at index 2.

    • Example: For array [5, 3, 8, 1, 2], sorted array is [8, 5, 3, 2, 1]. 3rd largest is 3.

    • Alternatively, use a set to remove duplicates and then sort.

    • Example: For array [5, 5, 3, 8, 1], unique sorted array is [8, 5, 3, 1]. 3rd largest is 3.

  • Answered by AI
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. Basic angular question
  • Q2. Basic coding questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response
  • Q1. The first round consisted of two coding questions: one on finding the second largest number
  • Ans. 

    Find the second largest number in an array of integers using Java.

    • 1. Sort the array in descending order and pick the second element. Example: [3, 1, 4, 2] -> sorted: [4, 3, 2, 1] -> second largest: 3.

    • 2. Use a loop to track the largest and second largest numbers. Example: for array [5, 3, 9, 1], largest=9, secondLargest=5.

    • 3. Handle duplicates by checking if the current number is greater than the largest and not eq...

  • Answered by AI
  • Q2. And Second One of Pattern Problem

Interview Preparation Tips

Interview preparation tips for other job seekers - Pattern Problems , Array Problems , String Problems for Coding
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Coding Test 

There was 4 coding question to be done using java with easy-medium difficulty and an SQL query medium level. The process was online

Round 2 - Technical 

(2 Questions)

  • Q1. About my project and Technical concepts in Java Like Exception handling, Collection, Spring Boot, JDBC, etc
  • Q2. Two basic coding questions will be asked which we should write it down on paper
Round 3 - Machine task 

(1 Question)

  • Q1. We should complete the given task of springboot like building APIs like get, post,put,post etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Put your 100%, remember every concept that you've learnt and be thorough with your resume, like add only those stuff that you have good knowledge about

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Nimap Infotech?
Ask anonymously on communities.

Nimap Infotech Interview FAQs

How many rounds are there in Nimap Infotech interview?
Nimap Infotech interview process usually has 1-2 rounds. The most common rounds in the Nimap Infotech interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Nimap Infotech 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 Nimap Infotech. The most common topics and skills that interviewers at Nimap Infotech expect are Javascript, MySQL, GIT, CSS and HTML.
What are the top questions asked in Nimap Infotech interview?

Some of the top questions asked at the Nimap Infotech interview -

  1. What is TestNg framework and how to use data provider in ...read more
  2. what is variable & Rules? Loops & Type of Loops ? OOPs Conc...read more
  3. How to make collection variable and environment variable in Postman api testi...read more
How long is the Nimap Infotech interview process?

The duration of Nimap Infotech interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.6/5

based on 35 interview experiences

Difficulty level

Easy 22%
Moderate 72%
Hard 6%

Duration

Less than 2 weeks 68%
2-4 weeks 21%
4-6 weeks 11%
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
DotPe Interview Questions
3.1
 • 42 Interviews
IT By Design Interview Questions
3.6
 • 41 Interviews
View all

Nimap Infotech Reviews and Ratings

based on 112 reviews

3.4/5

Rating in categories

3.9

Skill development

3.3

Work-life balance

3.1

Salary

3.1

Job security

3.4

Company culture

3.1

Promotions

3.3

Work satisfaction

Explore 112 Reviews and Ratings
Software Developer
83 salaries
unlock blur

₹2.4 L/yr - ₹8.2 L/yr

Associate Software Developer
43 salaries
unlock blur

₹2 L/yr - ₹6.5 L/yr

Software Engineer
30 salaries
unlock blur

₹3.2 L/yr - ₹10.8 L/yr

Java Developer
20 salaries
unlock blur

₹1.9 L/yr - ₹6.5 L/yr

UI/UX Designer
17 salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Explore more salaries
Compare Nimap Infotech with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.1
Compare

Value Point Systems

3.6
Compare

F1 Info Solutions and Services

3.8
Compare
write
Share an Interview