Premium Employer

i

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

Ncsi Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Ncsi Technologies Interview Questions and Answers for Experienced

Updated 25 Mar 2025

Ncsi Technologies Interview Experiences for Experienced

Popular Designations

7 interviews found

Interview Questions & Answers

user image Sameer Mulla

posted on 25 Feb 2025

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. VMware Infrastructure
  • Q2. What is patch management, and why is it important in software maintenance?
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Fair

Round 1 - Aptitude Test 

Aptitude was take by telepath .

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 1 Sep 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Few programs were asked

Round 3 - Technical 

(1 Question)

  • Q1. What technogies worked on.
Round 4 - HR 

(1 Question)

  • Q1. Work experience details

Test Lead Interview Questions & Answers

user image Anonymous

posted on 5 Jan 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. Mostly from the experience you mention in resume
  • Q2. Scenario based question like how the deal with clients in difficult situation
Round 3 - One-on-one 

(1 Question)

  • Q1. From resume only

Test Lead Interview Questions asked at other Companies

Q1. If you put in an Agile project, Will you be able to do in sprint Automation
View answer (1)

Ncsi Technologies interview questions for popular designations

 Software Engineer

 (2)

 Senior Software Engineer

 (2)

 Associate Software Engineer

 (2)

 Test Lead

 (1)

 Technical Lead

 (1)

 Business System Analyst

 (1)

 Software Developer

 (1)

 Business Analyst

 (1)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

Oracle SQL PLSQL queries and some plsq blocks.

Round 3 - HR 

(2 Questions)

  • Q1. About previous work experience and salary expectation.
  • Q2. Are you able to travel onsite as per requirement.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your skill set.

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2022. There were 3 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 

(1 Question)

  • Q1. Write codes on Java
  • Ans. 

    Here are some Java codes.

    • Create a class with a main method

    • Declare variables with data types

    • Use loops and conditional statements

    • Implement object-oriented programming concepts

    • Handle exceptions with try-catch blocks

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Reason for change from previous jobs

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (223)

Jobs at Ncsi Technologies

View all

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

Interview Questionnaire 

2 Questions

  • Q1. MVC should be good
  • Q2. Just basic questions related to dot net

Interview Preparation Tips

Interview preparation tips for other job seekers - Company good for start up candidate

Business System Analyst Interview Questions asked at other Companies

Q1. 3. How will you manage the priority task when overloaded with work.
View answer (2)

Interview questions from similar companies

I applied via Recruitment Consulltant and was interviewed before Jun 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Where do we use BigInteger in java ?
  • Ans. 

    BigInteger is used for mathematical operations involving very large integers in Java.

    • BigInteger is used when the range of values supported by primitive data types like int and long is not sufficient.

    • It is commonly used in cryptography and security applications.

    • It provides methods for arithmetic, bitwise, and logical operations on large integers.

    • Example: calculating factorial of a large number, generating large prime nu

  • Answered by AI
  • Q2. Merge Sort Algo code in java
  • Ans. 

    Merge Sort Algo code in java

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

    • Time complexity: O(n log n)

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Genpact Software Engineer interview:
  • Core Java
  • DSA
Interview preparation tips for other job seekers - Not a very good interview experience. I was asked 2-3 questions only. Not satisfied with interview process.

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. How can we remove duplicate objects from array of multiple objects.
  • Ans. 

    Remove duplicate objects from an array of multiple objects.

    • Create a new array to store unique objects

    • Loop through the original array and check if the object already exists in the new array

    • If not, add it to the new array

    • Return the new array

  • Answered by AI
  • Q2. How to maintain state if code if repeated one.
  • Ans. 

    Maintain state by using a global variable or a state management system.

    • Use a global variable to store the state and access it whenever needed.

    • Use a state management system like Redux or MobX to manage the state.

    • Avoid using local variables or closures to store state as they will be lost when the code is repeated.

    • Consider using object-oriented programming principles to encapsulate state within objects.

    • Use functional prog...

  • Answered by AI

Interview Questionnaire 

3 Questions

  • Q1. Basic questions on OOP, Android system
  • Q2. Design patterns in android system
  • Ans. 

    Design patterns are reusable solutions to common software problems. Android system uses various design patterns.

    • MVC (Model-View-Controller) pattern is used in Android to separate UI logic from business logic.

    • Singleton pattern is used to ensure only one instance of a class is created.

    • Observer pattern is used to notify changes in data to multiple components.

    • Builder pattern is used to simplify complex object creation.

    • Adap...

  • Answered by AI
  • Q3. Dependency injection, SOLID

Skills evaluated in this interview

Ncsi Technologies Interview FAQs

How many rounds are there in Ncsi Technologies interview for experienced candidates?
Ncsi Technologies interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Ncsi Technologies interview process for experienced candidates are Resume Shortlist, Technical and HR.
How to prepare for Ncsi Technologies interview for experienced candidates?
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 Ncsi Technologies. The most common topics and skills that interviewers at Ncsi Technologies expect are Java, Python, Microservices, Javascript and DevOps.
What are the top questions asked in Ncsi Technologies interview for experienced candidates?

Some of the top questions asked at the Ncsi Technologies interview for experienced candidates -

  1. What technogies worked ...read more
  2. Write codes on J...read more
  3. Technical cum HR round was conducted by TB team again in which they checked the...read more

Tell us how to improve this page.

Ncsi Technologies Interview Process for Experienced

based on 4 interviews

Interview experience

2.5
  
Poor
View more
Join Ncsi Technologies #1 in IT services in Singapore and Southeast Asia*

Interview Questions from Similar Companies

Genpact Interview Questions
3.8
 • 3.2k Interviews
DXC Technology Interview Questions
3.7
 • 804 Interviews
Nagarro Interview Questions
4.0
 • 765 Interviews
NTT Data Interview Questions
3.8
 • 629 Interviews
Publicis Sapient Interview Questions
3.5
 • 623 Interviews
GlobalLogic Interview Questions
3.6
 • 594 Interviews
UST Interview Questions
3.8
 • 520 Interviews
View all

Ncsi Technologies Reviews and Ratings

based on 208 reviews

2.9/5

Rating in categories

2.8

Skill development

3.0

Work-life balance

3.2

Salary

2.7

Job security

2.9

Company culture

2.5

Promotions

2.7

Work satisfaction

Explore 208 Reviews and Ratings
Sailpoint Developer

Pune

3-5 Yrs

₹ 5.5-10 LPA

Frontend Team Lead

Pune

8-12 Yrs

₹ 18-30 LPA

Frontend Engineer (8-12 yrs)

8-12 Yrs

Not Disclosed

Explore more jobs
Software Engineer
134 salaries
unlock blur

₹4.8 L/yr - ₹17.5 L/yr

Associate Engineer
96 salaries
unlock blur

₹5 L/yr - ₹7.8 L/yr

Business System Analyst
80 salaries
unlock blur

₹7 L/yr - ₹17.5 L/yr

Senior Software Engineer
74 salaries
unlock blur

₹16.2 L/yr - ₹35.1 L/yr

Technical Lead
56 salaries
unlock blur

₹11 L/yr - ₹28 L/yr

Explore more salaries
Compare Ncsi Technologies with

Genpact

3.8
Compare

DXC Technology

3.7
Compare

Virtusa Consulting Services

3.7
Compare

CGI Group

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