Upload Button Icon Add office photos

NSE.IT

Compare button icon Compare button icon Compare

Filter interviews by

NSE.IT Senior Engineer 3 Interview Questions and Answers

Updated 15 Jul 2023

NSE.IT Senior Engineer 3 Interview Experiences

1 interview found

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

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

(1 Question)

  • Q1. Overall about employee
Round 3 - Technical 

(4 Questions)

  • Q1. Explain ITIL in brief ? what is service and incident and all
  • Ans. 

    ITIL (Information Technology Infrastructure Library) is a set of best practices for IT service management.

    • ITIL is a framework that outlines best practices for IT service management.

    • It focuses on aligning IT services with the needs of the business.

    • ITIL defines processes for service design, transition, operation, and continual improvement.

    • A service in ITIL is a means of delivering value to customers by facilitating outco...

  • Answered by AI
  • Q2. Sql questions like basic queries etc
  • Q3. Explain sql joins and about shell scripting.
  • Ans. 

    SQL joins are used to combine rows from two or more tables based on a related column between them. Shell scripting is a way to automate tasks using command line scripts.

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

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

    • Shell scripting involves writing scripts to automate tasks using command line commands

    • She...

  • Answered by AI
  • Q4. Subset of sql , keys in sql
  • Ans. 

    SQL keys are used to uniquely identify records in a table. They include primary, foreign, and unique keys.

    • Primary key: uniquely identifies each record in a table, must be unique and not null

    • Foreign key: links two tables together, ensures referential integrity

    • Unique key: ensures that all values in a column are unique

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont join very bad politics favouritism.
No life.DONT JOIN.

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. About your self
  • Q2. Jwt token
  • Q3. Cors and its working
  • Q4. Session storage
Round 2 - Behavioral 

(3 Questions)

  • Q1. Tell me About yourself.
  • Q2. Challenges faced
  • Q3. How many years you will stay here
Round 3 - HR 

(2 Questions)

  • Q1. Why you want to switch
  • Q2. Salary negotiations
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. How to print numbers 1-100 using two go routines sequentially
  • Ans. 

    Use two go routines to print numbers 1-100 sequentially

    • Create two go routines, one for printing odd numbers and one for printing even numbers

    • Use channels to synchronize the two go routines and ensure sequential printing

    • Start the odd number go routine first, then start the even number go routine

  • Answered by AI
  • Q2. How to write generator functions using go language
  • Ans. 

    Generator functions in Go language allow for efficient iteration over a sequence of values.

    • Use the 'yield' keyword to return values one at a time from the generator function.

    • Generator functions are defined with a 'func' keyword followed by the function name and 'chan' keyword.

    • Example: func myGenerator() chan int { }

    • Use a 'for' loop to iterate over the values returned by the generator function.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Why do we use sync.Cond and sync.once
  • Ans. 

    sync.Cond is used for signaling between goroutines and sync.Once is used for running initialization code only once.

    • sync.Cond is used for goroutines to wait for or signal each other when a certain condition is met

    • sync.Once is used to ensure a function is only executed once, typically used for initialization tasks

    • Example: Using sync.Cond to coordinate multiple goroutines accessing a shared resource

    • Example: Using sync.Onc...

  • Answered by AI
  • Q2. Understanding about reflect package
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions on Javascript like closure, event loop,hoisting and some coding questions on map,filter, reduce
  • Q2. Basic conceptual questions on React, redux
Round 2 - One-on-one 

(1 Question)

  • Q1. Coding questions on JS and React
Round 3 - HR 

(1 Question)

  • Q1. Salary Expectation
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test with aptitude based questions

Round 2 - Technical 

(2 Questions)

  • Q1. What is variable hoisting.
  • Ans. 

    Variable hoisting is a behavior in JavaScript where variable declarations are moved to the top of their scope during compilation.

    • Variable declarations are hoisted to the top of their function or global scope.

    • Only the declarations are hoisted, not the initializations.

    • This can lead to unexpected behavior if variables are accessed before they are declared.

  • Answered by AI
  • Q2. What is closures in js
  • Ans. 

    Closures in JavaScript allow functions to access variables from an outer function even after the outer function has finished executing.

    • Closures are created whenever a function is defined within another function.

    • Inner functions have access to the outer function's variables even after the outer function has returned.

    • Closures are commonly used to create private variables and functions in JavaScript.

    • Example: function outer...

  • Answered by AI

Skills evaluated in this interview

Senior Consultant Interview Questions & Answers

Kellton user image SAI GANESH ARISETTY

posted on 8 May 2024

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Say about the job description that what you understood
  • Q2. Why do you want to join as a consultant as you have good coding knowledge
  • Q3. Why do you want to become a consultant.. though you have good coding knowledge

Interview Preparation Tips

Topics to prepare for Kellton Senior Consultant interview:
  • Job description
Interview preparation tips for other job seekers - if they have no requirement they will expect a lot from you
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do you read an external text file
  • Ans. 

    To read an external text file, you can use file handling techniques in programming languages like Python or Java.

    • Use file handling functions like open(), read(), and close() in Python to read an external text file.

    • In Java, use classes like FileReader and BufferedReader to read text files.

    • Specify the file path and mode (read mode) when opening the file.

    • Read the contents of the file line by line or as a whole, depending ...

  • Answered by AI
  • Q2. Write a java program to find the occurrences of characters
  • Ans. 

    Java program to find occurrences of characters in a string

    • Create a HashMap to store characters and their counts

    • Iterate through the string and update the counts in the HashMap

    • Print the characters and their counts from the HashMap

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hard work is a must

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is Pricing condition
  • Ans. 

    Pricing condition is a rule or criteria used to determine the price of a product or service.

    • Pricing conditions can include factors such as quantity discounts, promotional offers, and contract terms.

    • They are typically set in pricing tables within a company's ERP system.

    • Pricing conditions are used to calculate the final price that a customer will pay for a product or service.

    • Examples of pricing conditions include discoun...

  • Answered by AI
  • Q2. What is structure of Order
  • Ans. 

    The structure of an Order typically includes customer information, product details, quantity, price, and payment information.

    • Customer information (name, address, contact details)

    • Product details (name, description, SKU)

    • Quantity of each product ordered

    • Price of each product

    • Payment information (payment method, total amount)

    • Order status (pending, shipped, delivered)

  • Answered by AI
  • Q3. How plant will be determine in Sales order
  • Ans. 

    Plants in a sales order are determined based on the customer's requirements, availability, pricing, and shipping logistics.

    • Plants are determined based on the customer's location and delivery preferences.

    • Availability of the product at different plant locations is considered.

    • Pricing and discounts may vary based on the plant from which the product is shipped.

    • Shipping logistics such as distance, transportation costs, and d...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Must read basic of SAP SD

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Questions on nodejs concepts.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding test was on Java programs. Basically for loop programs.

NSE.IT Interview FAQs

How many rounds are there in NSE.IT Senior Engineer 3 interview?
NSE.IT interview process usually has 3 rounds. The most common rounds in the NSE.IT interview process are Resume Shortlist, HR and Technical.
What are the top questions asked in NSE.IT Senior Engineer 3 interview?

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

  1. Explain ITIL in brief ? what is service and incident and ...read more
  2. explain sql joins and about shell scripti...read more
  3. Subset of sql , keys in ...read more

Tell us how to improve this page.

NSE.IT Senior Engineer 3 Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k 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
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
Cyient Interview Questions
3.7
 • 283 Interviews
View all
NSE.IT Senior Engineer 3 Salary
based on 4 salaries
₹9 L/yr - ₹10.1 L/yr
36% less than the average Senior Engineer 3 Salary in India
View more details
Associate System Analyst
822 salaries
unlock blur

₹2.5 L/yr - ₹12 L/yr

IT Supervisor
222 salaries
unlock blur

₹1.2 L/yr - ₹3.5 L/yr

System Analyst
191 salaries
unlock blur

₹5 L/yr - ₹21 L/yr

Associate Test Analyst
185 salaries
unlock blur

₹2.5 L/yr - ₹9.1 L/yr

Associate
167 salaries
unlock blur

₹1.2 L/yr - ₹7.6 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