Upload Button Icon Add office photos

NSE.IT

Compare button icon Compare button icon Compare

Filter interviews by

NSE.IT Interview Questions, Process, and Tips

Updated 9 Feb 2025

Top NSE.IT Interview Questions and Answers

View all 87 questions

NSE.IT Interview Experiences

Popular Designations

126 interviews found

I applied via campus placement at Mumbai University and was interviewed before Sep 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Oops concepts
  • Q2. Difference between encapsulation and abstraction
  • Ans. 

    Encapsulation is hiding the implementation details while abstraction is hiding the complexity of the system.

    • Encapsulation is achieved through access modifiers like private, protected, and public.

    • Abstraction is achieved through abstract classes and interfaces.

    • Encapsulation is used to protect the data from outside interference.

    • Abstraction is used to provide a simplified view of the system.

    • Encapsulation is a way to achiev...

  • Answered by AI
  • Q3. Db related questions like find 2nd highest salary

Interview Preparation Tips

Interview preparation tips for other job seekers - 1.If you are an experienced candidate you can join nseit as nseit gives good salary to experienced candidates. Because many people I knew with 2 years of experience had gotten 7 lpa package.
2. For fresher's I would advice not to expect a lot from nseit. As most the projects (not all but most of ) are very old . But if you must join make sure you are leaning hot technologies on your own in the mean time till your bond is over.
NSE is a big name , employees switching from nseit to some other organisations get much higher packages.
Do not get comfortable with the job I mean it else you won't learn anything. Take out your personal time and lean new tech as much as you can. Future is bright for CS and IT grads and employers are willing to pay the salary you want, just make sure you have the right skills.

Skills evaluated in this interview

Top NSE.IT Associate System Analyst Interview Questions and Answers

Q1. What are the OOPS concepts ? Explain all the pillers of OOPS concepts.
View answer (1)

Associate System Analyst Interview Questions asked at other Companies

Q1. What are the OOPS concepts ? Explain all the pillers of OOPS concepts.
View answer (1)

ATA Interview Questions & Answers

user image Nagesh K

posted on 10 Sep 2020

Interview Questionnaire 

3 Questions

  • Q1. 1. About candidate
  • Q2. If the He/ She getting the work in company, How can they will mingle with other employees.
  • Q3. He/ She ready to doing the hard work for company?

I applied via Recruitment Consulltant and was interviewed before Mar 2021. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Informatica questions on Development
  • Q2. SQL questions on Development
Round 2 - Technical 

(2 Questions)

  • Q1. Informatica Scenario based questions
  • Q2. Unix related questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Managerial Questions
Round 4 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Why should we hire you?
  • Q4. Why are you looking for a change?

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview questions aren't difficult

Senior System Analyst Interview Questions asked at other Companies

Q1. Do you write SQL Queries, or comfortable with it?
View answer (1)

I applied via Campus Placement and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions about myself, Trade Life cycle, derivatives, types of derivatives.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. There are 2 technical rounds and HR round at last.

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)

NSE.IT interview questions for popular designations

 Associate System Analyst

 (17)

 Java Developer

 (7)

 Chief Proctor

 (5)

 Associate

 (4)

 Software Engineer

 (4)

 Business Analyst

 (3)

 IT Supervisor

 (3)

 Software Developer

 (3)

I applied via Referral and was interviewed before Apr 2021. 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 - Aptitude Test 

40 questions - 1 hour

Round 3 - One-on-one 

(2 Questions)

  • Q1. From CV only they will ask questions
  • Q2. From previous job profile only we need to answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Use your experience while answering

Senior Officer Interview Questions asked at other Companies

Q1. How you can Increase Selling of Banks Products and how you can connect more and more persons With Bank.????
View answer (7)

Get interview-ready with Top NSE.IT Interview Questions

I applied via Naukri.com and was interviewed before May 2020. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. What are collections in java ? Explain all the collections..
  • Ans. 

    Collections in Java are classes that implement data structures like lists, sets, maps, etc.

    • Collections are used to store and manipulate groups of objects

    • List interface is used to store ordered elements, ArrayList and LinkedList are implementations of List

    • Set interface is used to store unique elements, HashSet and TreeSet are implementations of Set

    • Map interface is used to store key-value pairs, HashMap and TreeMap are i...

  • Answered by AI
  • Q2. What are the types of JDBC statements ?
  • Ans. 

    There are three types of JDBC statements: Statement, PreparedStatement, and CallableStatement.

    • Statement: used for executing a static SQL statement

    • PreparedStatement: used for executing a precompiled SQL statement with parameters

    • CallableStatement: used for executing a stored procedure or function

  • Answered by AI
  • Q3. What are the OOPS concepts ? Explain all the pillers of OOPS concepts.
  • Ans. 

    OOPS concepts are the fundamental principles of Object-Oriented Programming. There are four pillars of OOPS concepts.

    • Encapsulation - binding data and functions together in a single unit (class).

    • Abstraction - hiding implementation details and showing only necessary information to the user.

    • Inheritance - creating a new class from an existing class, inheriting properties and methods.

    • Polymorphism - ability of an object to t...

  • Answered by AI
  • Q4. What is IOC container ?
  • Ans. 

    IOC container is a software component that manages the dependencies between objects.

    • IOC stands for Inversion of Control

    • It is used to achieve loose coupling between objects

    • It allows objects to be created and wired together at runtime

    • Examples include Spring Framework's ApplicationContext and Google Guice's Injector

    • IOC containers use dependency injection to provide objects with their dependencies

  • Answered by AI
  • Q5. What are Joins ? Explain all types of joins...
  • Ans. 

    Joins are used to combine data from two or more tables based on a related column.

    • Inner join returns only the matching rows from both tables.

    • Left join returns all rows from the left table and matching rows from the right table.

    • Right join returns all rows from the right table and matching rows from the left table.

    • Full outer join returns all rows from both tables.

    • Cross join returns the Cartesian product of both tables.

  • Answered by AI
  • Q6. What is DDL, DML. Write a query for some scenarios.
  • Q7. What is multi-threading ? How to start a new thread ? What is synchronisation ?
  • Ans. 

    Multi-threading is a technique of executing multiple threads concurrently. New threads can be started using the Thread class. Synchronization is the process of controlling the access to shared resources by multiple threads.

    • Multi-threading allows multiple threads to run concurrently, improving performance.

    • New threads can be started by creating a new instance of the Thread class and calling its start() method.

    • Synchroniza...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The above questions are for a fresher java developer interview.
Be calm and firm with your answer. Many a times interviewer will try to confuse you just to see your confidence.

Skills evaluated in this interview

Top NSE.IT Associate System Analyst Interview Questions and Answers

Q1. What are the OOPS concepts ? Explain all the pillers of OOPS concepts.
View answer (1)

Associate System Analyst Interview Questions asked at other Companies

Q1. What are the OOPS concepts ? Explain all the pillers of OOPS concepts.
View answer (1)

I applied via Naukri.com and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Client will take first round and will ask insurance related questions. Insurance terms and terminology
Round 2 - HR 

(1 Question)

  • Q1. What are your salary expectations?

Interview Preparation Tips

Topics to prepare for NSE.IT Associate Test Analyst interview:
  • Life Insurance
Interview preparation tips for other job seekers - Don't join NSEIT if they ask you to abscond your current company. They won't even pay you bonus.

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

Round 1 - HR 

(2 Questions)

  • Q1. Normal bgv questuins
  • Q2. Bakdgeiud quaryims last company experience salary and all.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good environmemt, in interview they will ask Linux basic and more preferably on osi model.

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)

I applied via Approached by Company and was interviewed before Apr 2021. There were 2 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 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Why are you looking for a change?

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't believe especially recruitment team words and dont take decisions. think twice about their offerings and then only take decisions
Mainly if u already have a job never ever accept this company. They are bluffed me and they terminated me job after 9 months. Even i got best employ award in that same organisation

Technical Support Engineer Interview Questions asked at other Companies

Q1. Admin Questions :- What is Relationships what are types of relationships
View answer (4)

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

Round 1 - Aptitude Test 

Basic technical , mathematical and logical questions MCQ

Round 2 - Group Discussion 

Basic java and c,c++ questions and SQL questions

Round 3 - HR 

(5 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. Where do you see yourself in 5 years?
  • Q3. Why should we hire you?
  • Q4. Tell me about yourself.
  • Q5. Why did you choose this company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics clear.
Having basic knowledge of any programming language and SQL queries is must for this role.

Application Support Engineer Interview Questions asked at other Companies

Q1. what do you know about SQL , Unix , explain in brief
View answer (2)

NSE.IT Interview FAQs

How many rounds are there in NSE.IT interview?
NSE.IT interview process usually has 2-3 rounds. The most common rounds in the NSE.IT interview process are Technical, Resume Shortlist and HR.
How to prepare for NSE.IT 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 NSE.IT. The most common topics and skills that interviewers at NSE.IT expect are Java, SQL, Linux, Hibernate and Javascript.
What are the top questions asked in NSE.IT interview?

Some of the top questions asked at the NSE.IT interview -

  1. What is bug life cycl...read more
  2. What are the different types of testin...read more
  3. How would you shows any aggregation on whole data row by row in SQL. Example if...read more
How long is the NSE.IT interview process?

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

Tell us how to improve this page.

NSE.IT Interview Process

based on 87 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 810 Interviews
Cyient Interview Questions
3.6
 • 284 Interviews
View all

NSE.IT Reviews and Ratings

based on 1.2k reviews

3.6/5

Rating in categories

3.3

Skill development

3.4

Work-life balance

3.1

Salary

3.3

Job security

3.4

Company culture

2.7

Promotions

3.2

Work satisfaction

Explore 1.2k Reviews and Ratings
Associate System Analyst
826 salaries
unlock blur

₹2.5 L/yr - ₹12 L/yr

IT Supervisor
220 salaries
unlock blur

₹1.2 L/yr - ₹3.5 L/yr

System Analyst
191 salaries
unlock blur

₹5 L/yr - ₹17.5 L/yr

Associate Test Analyst
189 salaries
unlock blur

₹2.5 L/yr - ₹9.1 L/yr

Associate
164 salaries
unlock blur

₹1 L/yr - ₹7.8 L/yr

Explore more salaries
Compare NSE.IT with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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