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

BI Analyst Interview Questions & Answers

user image Anonymous

posted on 22 Apr 2023

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

I applied via Naukri.com and was interviewed before Apr 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. How would you shows any aggregation on whole data row by row in SQL. Example if I want total sales as a new column in existing table as a result.
  • Ans. 

    To show aggregation on whole data row by row in SQL, you can use the OVER() function with appropriate window specification.

    • Use the OVER() function to perform aggregation on the entire data set

    • Specify the window specification to define the scope of aggregation

    • Add the aggregated result as a new column in the existing table

    • Example: SELECT *, SUM(sales) OVER() AS total_sales FROM table_name

  • Answered by AI
  • Q2. Difference between functions and store procedures?
  • Ans. 

    Functions return a single value while stored procedures execute a set of SQL statements.

    • Functions are used to perform calculations and return a single value while stored procedures are used to execute a set of SQL statements.

    • Functions can be used in SELECT, WHERE, and HAVING clauses while stored procedures cannot.

    • Functions can be called from within stored procedures while stored procedures cannot be called from within ...

  • Answered by AI
  • Q3. What does All function does in dax?
  • Ans. 

    ALL function in DAX returns all the rows in a table, or all the values in a column, ignoring any filters that might have been applied.

    • ALL function can be used to remove filters from a table or column.

    • It can also be used to remove filters from a specific column in a table.

    • ALL function can be combined with other functions like CALCULATE to perform complex calculations.

    • Example: CALCULATE(SUM(Sales[Amount]), ALL(Sales[Prod...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for NSE.IT BI Analyst interview:
  • Windows function SQL
  • Dax
  • Joins in sql
Interview preparation tips for other job seekers - Overall interview in NSEIT was good, and of course interview questions depends on interviewer to interviewer, but make sure you go through basics to advance interview questions before appearing for technical interview in NSEIT.

Skills evaluated in this interview

BI Analyst Interview Questions asked at other Companies

Q1. How will you communicate the technical advantage to a business user?
View answer (3)

PMO Executive Interview Questions & Answers

user image Anonymous

posted on 20 Jan 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    Experienced PMO Executive with a background in project management and strategic planning.

    • Over 10 years of experience in leading project management offices

    • Skilled in developing and implementing project management processes

    • Strong background in strategic planning and resource allocation

    • Proven track record of delivering projects on time and within budget

    • Excellent communication and leadership skills

  • Answered by AI
  • Q2. Stakeholder management?
Round 2 - Technical 

(2 Questions)

  • Q1. Question on project management ,incident management
  • Q2. How would you rate yourself in excel and basic vlookup , hlookup and data formatting question?

Interview Preparation Tips

Interview preparation tips for other job seekers - Share your experience in details.
Question would be related to your past experiences only.

PMO Executive Interview Questions asked at other Companies

Q1. What is critical path and why it is important for project timeline?
View answer (1)
NSE.IT Interview Questions and Answers for Freshers
illustration image
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Technical round 1 was around java, microservices and your project.
  • Q2. He asked me simple java programs to check my logic programs were to check a number is palindrome or not and java streams programs
Round 2 - Technical 

(1 Question)

  • Q1. He asked me about project. How you used authentication in projects. Java core basics. Some tricky scenarios, solid principles and playing around oops concepts and its practical application

Interview Preparation Tips

Interview preparation tips for other job seekers - It was very good experience

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

They asked 30 aptitude questions from this 30, 10 were English , 10 were quant and 10 were logical. then there were 30 question of computer skills, which consists of c++,java and python code snippets, CN, DBMS, OOPS and OS questions/

Round 2 - Technical 

(2 Questions)

  • Q1. They ask completely about resume, all projects and skills mentioned in details.
  • Q2. Questions about core cse subjects, like CN, Oops.
Round 3 - HR 

(2 Questions)

  • Q1. They are general HR questions
  • Q2. Asked if im ready to relocate.

Application Developer Interview Questions asked at other Companies

Q1. Minimum Cost to Connect All Points Problem Statement Given an array COORDINATES representing the integer coordinates of some points on a 2D plane, determine the minimum cost required to connect all points. The cost to connect two points, (x... read more
View answer (2)

NSE.IT interview questions for popular designations

 Associate System Analyst

 (17)

 Java Developer

 (7)

 Chief Proctor

 (5)

 Software Engineer

 (4)

 Associate

 (4)

 Test Administrator

 (3)

 IT Supervisor

 (3)

 Software Developer

 (3)

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

SQL coding related questions like types of joins, cursor etc

Round 2 - Technical 

(4 Questions)

  • Q1. Few tricky question and advanced SQL questions
  • Q2. DDL and DML related questions
  • Q3. What are joins and their types
  • Ans. 

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

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • INNER JOIN returns rows when there is at least one match in both tables

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table

    • RIGHT JOIN returns all rows from the right table and the matched rows from the left table

    • FULL JOIN...

  • Answered by AI
  • Q4. What is cursor and their types
  • Ans. 

    A cursor is a database object used to retrieve data from a result set one row at a time.

    • Types of cursors: Forward-only, Static, Dynamic, Keyset-driven

    • Forward-only cursor: Can only move forward through the result set

    • Static cursor: Shows a snapshot of the data at the time the cursor was opened

    • Dynamic cursor: Reflects changes made to the data while the cursor is open

    • Keyset-driven cursor: Uses a unique identifier to fetch

  • Answered by AI

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)

Get interview-ready with Top NSE.IT Interview Questions

Chief Proctor Interview Questions & Answers

user image Anonymous

posted on 30 Oct 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Referral

Round 1 - Technical 

(2 Questions)

  • Q1. What is Networking?
  • Ans. 

    Networking is the practice of making and using contacts to exchange information and develop professional or social contacts.

    • Networking involves building relationships with people in your industry or field.

    • It can help you gain new opportunities, such as job leads or business partnerships.

    • Networking can also provide support, advice, and mentorship from others who have more experience.

    • Examples of networking include attend...

  • Answered by AI
  • Q2. Network Types ?

Skills evaluated in this interview

Top NSE.IT Chief Proctor Interview Questions and Answers

Q1. How to manage crowd of exam centre
View answer (2)

Chief Proctor Interview Questions asked at other Companies

Q1. How to manage crowd of exam centre
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Telephonic Call 

(2 Questions)

  • Q1. Basic angular questions
  • Q2. Let, var, const event emitter, middle ware

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 (197)

Associate Test Analyst Interview Questions & Answers

user image Anand Ajay Singh

posted on 26 Jul 2024

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

(1 Question)

  • Q1. Introduction which was mentioned in CV
Round 2 - One-on-one 

(1 Question)

  • Q1. About my roles and responsibilities in the project
Round 3 - Technical 

(1 Question)

  • Q1. About JIRA workflow and API

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. SQL types ,Joins,cursor etc
  • Q2. Whats yours vision towards company
  • Ans. 

    My vision towards the company is to contribute to its growth and success by providing efficient production support and continuously improving processes.

    • Strive to ensure maximum uptime for production systems

    • Proactively identify and resolve issues to minimize downtime

    • Collaborate with cross-functional teams to implement process improvements

    • Stay updated on industry trends and technologies to enhance support capabilities

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident

Production Support Interview Questions asked at other Companies

Q1. Which Linux commands you have used on daily basis??
View answer (2)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is exception handling
  • Ans. 

    Exception handling is a programming concept that deals with errors or exceptional situations in a program.

    • It is a mechanism to handle runtime errors in a program.

    • Exceptions are thrown when an error occurs and can be caught and handled by the program.

    • It helps in maintaining the flow of the program even when errors occur.

    • Examples include try-catch blocks in Java or try-except blocks in Python.

  • Answered by AI
  • Q2. Difference between java and cpp
  • Ans. 

    Java is a high-level, object-oriented programming language, while C++ is a low-level, procedural programming language.

    • Java is platform-independent, while C++ is platform-dependent.

    • Java uses automatic garbage collection, while C++ requires manual memory management.

    • Java has a simpler syntax compared to C++.

    • Java does not support pointers, while C++ does.

    • Java is more secure due to its bytecode verification process.

    • Java is ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Spring actuator
  • Q2. Spring qualifier

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)

Java Developer Interview Questions & Answers

user image Himanshu Vishwakarma

posted on 10 Apr 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Java, Collections, etc
Round 2 - Technical 

(1 Question)

  • Q1. Same Basic Java, collections, etc
Round 3 - HR 

(1 Question)

  • Q1. Basic discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep this company as a last option, as a java developer it was desk job working 6 days and after clearing all rounds they offer me best 3% hike before interview I told them 30-50% hike HR agreed but got 3% hike rubbish. Don't join I got the offer happily declined it. Please don't waste your time.

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)
Contribute & help others!
anonymous
You can choose to be anonymous

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.

Recently Viewed

INTERVIEWS

JW Marriott

No Interviews

INTERVIEWS

JW Marriott

No Interviews

INTERVIEWS

Le Méridien

No Interviews

INTERVIEWS

Ihg Group

No Interviews

INTERVIEWS

Ihg Group

No Interviews

INTERVIEWS

NSE.IT

No Interviews

INTERVIEWS

NSE.IT

No Interviews

INTERVIEWS

Le Méridien

No Interviews

INTERVIEWS

McDonald's

No Interviews

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.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
Cyient Interview Questions
3.6
 • 283 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

₹0 L/yr - ₹0 L/yr

IT Supervisor
220 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

System Analyst
191 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Test Analyst
190 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
164 salaries
unlock blur

₹0 L/yr - ₹0 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent