Upload Button Icon Add office photos

Filter interviews by

NSE.IT DOT NET Developer Interview Questions and Answers

Updated 8 Dec 2023

NSE.IT DOT NET Developer Interview Experiences

1 interview found

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

I was interviewed before Dec 2022.

Round 1 - Technical 

(1 Question)

  • Q1. Technical Round with Basic ASp/MVC/SQL questions
Round 2 - Technical 

(1 Question)

  • Q1. SQL And WebAPI questions [BASIC]
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Friendly people with good support and understanding and also a good management team.
Limited in-house projects and most of the clients were in the BFSI sector.

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is Sql joins, cte, Sp vs function, user defined types,
  • Ans. 

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

    • SQL joins are used to retrieve data from multiple tables based on a related column.

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • CTE (Common Table Expression) is a temporary result set that can be referenced within a SELECT, INSERT, UPDATE, or DELETE statement.

    • Stored Procedures (SP) are pre...

  • Answered by AI
  • Q2. C# interfces, opps concepts, DI, asp page life cycle
  • Q3. Ado. Net & entity frework difference
  • Ans. 

    ADO.NET is a data access technology while Entity Framework is an ORM framework for data access in .NET applications.

    • ADO.NET is a set of classes used to interact with data sources like databases directly.

    • Entity Framework is an ORM framework that allows developers to work with data in terms of objects and classes.

    • ADO.NET requires writing SQL queries manually, while Entity Framework allows querying data using LINQ.

    • Entity ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Kellton DOT NET Developer interview:
  • OOPS
  • C#
  • SQL

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Which port used for LIVE deployment
  • Ans. 

    Port 80 is commonly used for LIVE deployment

    • Port 80 is the default port for HTTP traffic

    • Port 443 is commonly used for HTTPS traffic

    • Other ports like 8080 or 8000 can also be used for LIVE deployment

  • Answered by AI
  • Q2. ExecuteNonQuery return value or not
  • Ans. 

    ExecuteNonQuery does not return a value

    • ExecuteNonQuery method is used to execute a command that does not return any data

    • It is typically used for INSERT, UPDATE, DELETE operations

    • The return value is the number of rows affected by the command

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer don't have Technical knowledge given correct answer but they said wrong.
After waiting 2 hours HR conducted Technical interview.

Skills evaluated in this interview

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

I applied via AmbitionBox and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Simple discussion
Round 2 - Coding Test 

Any coding test in asp.net for 1 hour duration

Round 3 - Technical 

(1 Question)

  • Q1. Ask some technical questions
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Hackathon on chatbot development website

Round 2 - Technical 

(2 Questions)

  • Q1. OOPS basics like shallow copy deep copy
  • Q2. Sorting techniques and psuedo code
Round 3 - HR 

(2 Questions)

  • Q1. Questions on projects
  • Q2. Introduction and insights of comapny
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

General aptitude online test

Round 2 - Technical 

(2 Questions)

  • Q1. OOPS basic concepts with eg
  • Q2. C#,Sql,MVC concepts
Round 3 - Technical 

(2 Questions)

  • Q1. Project experience
  • Ans. 

    I have experience working on various projects including web development, mobile app development, and database management.

    • Developed a web application using React.js and Node.js for a client in the e-commerce industry

    • Created a mobile app using Swift for a healthcare startup to track patient data

    • Managed a MySQL database for a financial services company to store and retrieve customer information

  • Answered by AI
  • Q2. Coding related questions asked
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Prev job work and project details , roles and responsibility

Round 2 - Technical 

(2 Questions)

  • Q1. What is SDLC process
  • Ans. 

    SDLC process is a structured approach to software development that defines tasks performed at each stage of the software development life cycle.

    • SDLC stands for Software Development Life Cycle

    • It includes stages like planning, analysis, design, implementation, testing, and maintenance

    • Each stage has specific goals and deliverables to ensure the quality and success of the software project

  • Answered by AI
  • Q2. What is the ASp.net mean for ?
  • Ans. 

    ASP.NET stands for Active Server Pages .NET, a web application framework developed by Microsoft.

    • ASP.NET is a server-side web application framework used for building dynamic web pages and web applications.

    • It allows developers to create web applications using languages like C# or VB.NET.

    • ASP.NET provides tools and libraries for building web forms, MVC (Model-View-Controller) applications, and Web API services.

    • It is part o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on tech round

Skills evaluated in this interview

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

DSA questions and programming concepts

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse string and optimize it
  • Ans. 

    Reverse array of strings efficiently

    • Use two pointers approach to swap characters from start and end of each string

    • Optimize by using in-place reversal instead of creating new strings

    • Consider edge cases like empty strings or strings with only one character

  • Answered by AI
  • Q2. Reverse binary tree
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Joining location
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is Concrete class ?
  • Ans. 

    A concrete class is a class that can be instantiated, meaning it can be used to create objects.

    • Cannot be abstract

    • Can be instantiated

    • Can have concrete methods and properties

    • Example: class Car {}

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

(2 Questions)

  • Q1. What is simulink
  • Ans. 

    Simulink is a graphical programming environment for modeling, simulating and analyzing multidomain dynamical systems.

    • Simulink is a tool used for modeling and simulating dynamic systems.

    • It is widely used in industries such as automotive, aerospace, and robotics.

    • Simulink allows users to create block diagrams to represent systems and simulate their behavior.

    • It is often used in conjunction with MATLAB for system design and

  • Answered by AI
  • Q2. Stateflow logic

Skills evaluated in this interview

NSE.IT Interview FAQs

How many rounds are there in NSE.IT DOT NET Developer interview?
NSE.IT interview process usually has 4 rounds. The most common rounds in the NSE.IT interview process are Technical, Resume Shortlist and HR.
How to prepare for NSE.IT DOT NET Developer 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 MVC, .Net, ASP.Net, C# and ASP.Net MVC.
What are the top questions asked in NSE.IT DOT NET Developer interview?

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

  1. technical Round with Basic ASp/MVC/SQL questi...read more
  2. SQL And WebAPI questions [BAS...read more

Tell us how to improve this page.

NSE.IT DOT NET Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
NSE.IT DOT NET Developer Salary
based on 9 salaries
₹3.5 L/yr - ₹8.2 L/yr
At par with the average DOT NET Developer Salary in India
View more details

NSE.IT DOT NET Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Associate System Analyst
819 salaries
unlock blur

₹2.5 L/yr - ₹12 L/yr

IT Supervisor
205 salaries
unlock blur

₹1.2 L/yr - ₹3.5 L/yr

System Analyst
194 salaries
unlock blur

₹3.6 L/yr - ₹20.3 L/yr

Associate Test Analyst
186 salaries
unlock blur

₹2.3 L/yr - ₹10 L/yr

Associate
169 salaries
unlock blur

₹1.2 L/yr - ₹6.2 L/yr

Explore more salaries
Compare NSE.IT with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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