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 19 Mar 2025

Top NSE.IT Interview Questions and Answers

View all 91 questions

NSE.IT Interview Experiences

Popular Designations

127 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 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)
Round 1 - Aptitude Test 

Numerical and logical question

Round 2 - Aptitude Test 

Aptitude text contants basic mathematical and english languages questions

Round 3 - Technical 

(3 Questions)

  • Q1. What is Linux? How it works
  • Ans. 

    Linux is an open-source operating system based on Unix. It is free to use and highly customizable.

    • Linux is a kernel that manages hardware resources and provides services to applications

    • It is highly customizable and can be modified to suit specific needs

    • Linux is open-source, meaning its source code is freely available for anyone to use and modify

    • It is widely used in servers, supercomputers, and embedded systems

    • Examples ...

  • Answered by AI
  • Q2. What are the commands used in linux
  • Ans. 

    Linux commands are used to interact with the operating system and perform various tasks.

    • ls - list directory contents

    • cd - change directory

    • mkdir - make directory

    • rm - remove file or directory

    • cp - copy file or directory

    • mv - move or rename file or directory

    • grep - search for a pattern in a file

    • chmod - change file permissions

    • sudo - execute a command as superuser

    • apt-get - package manager for Debian-based systems

  • Answered by AI
  • Q3. How to copy file in linux
  • Ans. 

    Copying files in Linux involves using the 'cp' command.

    • Use the 'cp' command followed by the source file and destination directory to copy a file.

    • If you want to keep the same file name, specify the destination directory only.

    • To copy a file with a new name, provide the new name as the destination.

    • You can also copy multiple files by providing multiple source files and a destination directory.

    • Use the '-r' option to copy di

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while interview
Prepare for Aptitude

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)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Technical linux question
Round 2 - Technical 

(1 Question)

  • Q1. Technical linux questions
Round 3 - Technical 

(1 Question)

  • Q1. Manager round questions were asked. Are you comfotable working in shifts. How will you handle if you face any issue at midnight?
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiation

Production Engineer Interview Questions asked at other Companies

Q1. How to solve the problem in robot means how to detect fault?
View answer (9)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. One to one and it's good
Round 2 - One-on-one 

(1 Question)

  • Q1. One to one with HR and comercial head
Round 3 - One-on-one 

(1 Question)

  • Q1. With RM regards process

Interview Preparation Tips

Interview preparation tips for other job seekers - Excellent tell about your oas and present experience

Branch Operation Incharge Interview Questions asked at other Companies

Q1. E-WAYBILL REQUIRED WHICH REASON
View answer (1)

NSE.IT interview questions for popular designations

 Associate System Analyst

 (17)

 Java Developer

 (7)

 Chief Proctor

 (5)

 Software Engineer

 (4)

 Associate

 (4)

 Technical Support Engineer

 (3)

 IT Supervisor

 (3)

 Software Developer

 (3)

I applied via Naukri.com and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Java basics oops concepts, collection is must , Android basic core concepts questions etc
  • Q2. Services , content provider, broadcast reciver , jet pack etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your core concepts as more questions related to that

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)

Get interview-ready with Top NSE.IT Interview Questions

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 2022. There were 4 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. Current job role .
Round 3 - Client Interview 

(1 Question)

  • Q1. Current job role .
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare current job role.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Some basic question like window server, troubleshooting, lan, wan, installation

Interview Preparation Tips

Interview preparation tips for other job seekers - Avoid choosing Spacely for career growth. The workload is excessively heavy, often requiring overtime without extra compensation. There are no appraisals or salary increments, and the management is unsupportive. It's also advisable to avoid roles through third-party arrangements, as the work pressure tends to be even higher.

Test Administrator Interview Questions asked at other Companies

Q1. Past experience in same field (online examination)
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. First round is going to be 30 mins to 1 hr round where you will assessed on basics knowledge of the skills.
Round 2 - Technical 

(1 Question)

  • Q1. This round is a combination of technical and case study round, you will be asked to technical coding question and questions about basic system design.

Interview Preparation Tips

Interview preparation tips for other job seekers - be sure of everything that you have written on resume.

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)
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 - Group Discussion 

The gd was on topic operaring system ubantu windows

Round 3 - Technical 

(2 Questions)

  • Q1. What is VLan in netorking
  • Ans. 

    A VLAN is a logical grouping of network devices that share the same broadcast domain.

    • VLANs are used to segment a network into smaller, more manageable subnetworks.

    • Each VLAN has its own broadcast domain, which means that broadcasts are contained within the VLAN.

    • VLANs can be configured on switches and routers to control traffic flow and improve network security.

    • VLANs can be used to separate different types of traffic, su...

  • Answered by AI
  • Q2. What is Azure cloud infra
  • Ans. 

    Azure cloud infra is a cloud computing platform provided by Microsoft.

    • It offers a wide range of services including virtual machines, storage, and networking.

    • It allows users to build, deploy, and manage applications and services through a global network of Microsoft-managed data centers.

    • It provides scalability, security, and reliability to businesses of all sizes.

    • Some examples of Azure services include Azure Virtual Mac

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - the interview is goo and i like itmost. and joinded the company.

Skills evaluated in this interview

System Engineer Interview Questions asked at other Companies

Q1. Election Winner Determination In an ongoing election between two candidates A and B, there is a queue of voters that includes supporters of A, supporters of B, and neutral voters. Neutral voters have the power to swing the election results ... read more
View answer (9)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Dec 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 

(5 Questions)

  • Q1. Oops concept, Spring basic Question, interface Abstract class, HaspMap,
  • Q2. Oracle database select max salary, second max, index, trigger, store procedure
  • Q3. Project flow and system tier
  • Q4. How project deployed?
  • Ans. 

    A project is deployed by following a series of steps to ensure its successful implementation.

    • The project deployment process involves planning, testing, and executing the deployment plan.

    • The deployment plan includes tasks such as configuring the system, installing necessary software, and migrating data.

    • Deployment can be done manually or through automated tools.

    • Testing is crucial to identify and resolve any issues or bug...

  • Answered by AI
  • Q5. Hibernate query
Round 3 - HR 

(1 Question)

  • Q1. Basic Hr question

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple prepare core java and resume project. Existing working module details. Project flow.

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)

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 88 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

3i Infotech Interview Questions
3.4
 • 143 Interviews
Microland Interview Questions
3.4
 • 129 Interviews
Sonata Software Interview Questions
3.4
 • 115 Interviews
Maveric Systems Interview Questions
3.5
 • 115 Interviews
Tietoevry Interview Questions
4.3
 • 91 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
842 salaries
unlock blur

₹3.2 L/yr - ₹14 L/yr

IT Supervisor
223 salaries
unlock blur

₹1.2 L/yr - ₹3.6 L/yr

System Analyst
191 salaries
unlock blur

₹4.5 L/yr - ₹17.7 L/yr

Associate Test Analyst
188 salaries
unlock blur

₹2.5 L/yr - ₹9.1 L/yr

Associate
166 salaries
unlock blur

₹1.2 L/yr - ₹7.6 L/yr

Explore more salaries
Compare NSE.IT with

3i Infotech

3.5
Compare

Microland

3.4
Compare

Newgen Software Technologies

3.7
Compare

Tietoevry

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