Upload Button Icon Add office photos

Filter interviews by

National Stock Exchange of India Java Developer Interview Questions and Answers

Updated 8 Jun 2022

National Stock Exchange of India Java Developer Interview Experiences

1 interview found

Java Developer Interview Questions & Answers

user image Vaibhav Bhatewara

posted on 8 Jun 2022

Round 1 - Technical 

(5 Questions)

  • Q1. Explain solid principal
  • Q2. Explain CURD operation
  • Ans. 

    CURD stands for Create, Update, Read, and Delete. It is a set of basic operations used in database management.

    • Create - inserting new data into the database

    • Update - modifying existing data in the database

    • Read - retrieving data from the database

    • Delete - removing data from the database

  • Answered by AI
  • Q3. What is marker interface
  • Q4. Different between array and linklist
  • Q5. Coding on Hashmap in java
  • Ans. 

    HashMap in Java is a part of the Collections Framework that stores key-value pairs for efficient data retrieval.

    • 1. HashMap allows null values and one null key. Example: HashMap<String, String> map = new HashMap<>();

    • 2. It is not synchronized, meaning it's not thread-safe. Use ConcurrentHashMap for thread safety.

    • 3. HashMap uses hashing for storage, which provides O(1) average time complexity for get and put o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear concept of core Java.And if Possible some concept of Advance java .not all concept required.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about National Stock Exchange of India?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Walk-in and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They have asked the question related to my field.

Interview Preparation Tips

Interview preparation tips for other job seekers - You should have very well knowledge about your field. Your communication skills should be strong.

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk(). Parent run() calls walk(). Chi ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
Q4. How do you sort a list of students based on their first name?
asked in Cognizant
Q5. What array list and linkedlist difference,how hashmap internally ... read more

I applied via Referral and was interviewed in Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. How you will handle your team in pressure situations??
  • Q2. Y should we prefer you???

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be bold and tension free

Interview Questionnaire 

2 Questions

  • Q1. What is credit card and its uses ??
  • Ans. 

    A credit card is a payment card issued to users as a method of payment. It allows the cardholder to borrow funds from a bank or financial institution.

    • Credit cards are widely used for online and offline purchases.

    • They offer convenience and flexibility in making payments.

    • Credit cards also offer rewards and cashback programs to users.

    • They can be used for emergency expenses and to build credit history.

    • However, credit cards...

  • Answered by AI
  • Q2. Customer approach ??

I applied via Naukri.com and was interviewed in Feb 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 - Group Discussion 

Self

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident qefqqqqc qcq wefwef ewfwef

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

The round consisted of 3 coding Questions and 20 Technical MCQs.

  • Q1. 

    Connect Ropes Problem Statement

    Given a number of ropes denoted as 'N' and an array containing the lengths of these ropes, your task is to connect the ropes into one single rope. The cost to connect two r...

  • Ans. 

    The task is to find the minimum cost required to connect all the ropes by summing their lengths.

    • Iterate through the ropes and connect the two shortest ropes at each step to minimize cost

    • Use a priority queue to efficiently find the shortest ropes

    • Keep track of the total cost as you connect the ropes

    • Example: For input [4, 3, 2, 6], connect 2 and 3 (cost 5), then connect 4 and 5 (cost 9), then connect 9 and 6 (cost 15) for...

  • Answered by AI
  • Q2. 

    Idempotent Matrix Verification

    Determine if a given N * N matrix is an idempotent matrix. A matrix is considered idempotent if it satisfies the following condition:

    M * M = M

    Input:

    The first line cont...
  • Ans. 

    Check if a given matrix is idempotent by verifying if M * M = M.

    • Iterate through the matrix and multiply it with itself to check if it equals the original matrix.

    • If the condition M * M = M is satisfied, then the matrix is idempotent.

    • If the condition is not satisfied, then the matrix is not idempotent.

  • Answered by AI
  • Q3. 

    Sum of LCM Problem Statement

    Given an integer 'N', calculate and print the sum of the least common multiples (LCM) for each integer from 1 to N with N.

    The sum is represented as:
    LCM(1, N) + LCM(2, N) + ....

  • Ans. 

    Calculate and print the sum of least common multiples (LCM) for each integer from 1 to N with N.

    • Iterate from 1 to N and calculate LCM of each number with N

    • Add all the calculated LCM values to get the final sum

    • Return the sum for each test case

  • Answered by AI
Round 2 - Coding Test 

Round duration - 120 minutes
Round difficulty - Medium

This round is a Long Coding Round. Every Candidate was assigned with a mentor who guides them, We were given a real-life scenario for which we have to construct a database with required tables. We should draw an ER Diagram to demonstrate the Database. After the Database Completion, We have to Start Coding the Application. The Design(like Placing the button or background colour) is not given much importance. They mainly test the practical knowledge of candidates in OOPS and expertise in a C, C++, Java, Android or any other language were OOPS Concepts can be applied.

Round 3 - Video Call 

(1 Question)

Round duration - 180 Minutes
Round difficulty - Medium

This Round is a technical Interview. I was asked Questions to test my Technical Knowledge.

  • Q1. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of 0s, 1s, and 2s while iterating through the array.

    • Swap elements based on the values encountered to sort the array in-place.

    • Time complexity of the algorithm should be O(N) where N is the size of the array.

  • Answered by AI
Round 4 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in ChennaiEligibility criteria7 CGPAMr. Cooper interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Dynamic Programming, OOPS, Database Management SystemTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Do Atleast 2 Projects
Tip 2 : Be Strong in what you have in your resume
Tip 3 : Be Confident and Polite

Application resume tips for other job seekers

Tip 1 : Keep it Short to one or two pages
Tip 2 : Keep it standout..as it is what projects you uniquely.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Why Analytics? Why Blackrock?
  • Ans. 

    I am passionate about analytics for its power to drive informed decisions, and BlackRock's innovative approach aligns with my career goals.

    • Analytics transforms data into actionable insights, enabling better decision-making in finance.

    • BlackRock's commitment to technology and data-driven strategies resonates with my desire to work at the forefront of the industry.

    • The opportunity to contribute to sustainable investing ini...

  • Answered by AI
  • Q2. Questions on Fixed Income, Yield Curve, Some puzzles, Credit Risk
  • Q3. What are swaptions? How do you price an Option?
  • Ans. 

    Swaptions are options on interest rate swaps. Option pricing involves calculating the expected future value of the underlying asset.

    • Swaptions give the holder the right to enter into an interest rate swap at a future date.

    • Pricing involves calculating the expected future value of the underlying asset using models such as Black-Scholes or binomial trees.

    • Factors that affect option pricing include the underlying asset price...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Finance portion well. Basics of Credit Risk Management and Option pricing will also help.
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

(1 Question)

  • Q1. Why did you leave previous company?
  • Ans. 

    I left my previous company to seek new challenges and opportunities for professional growth in a dynamic environment.

    • I was looking for a role that offered more opportunities for advancement, as my previous position had limited growth potential.

    • I wanted to work in a more innovative environment where I could contribute to exciting projects and collaborate with diverse teams.

    • The company culture was not aligned with my val...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What is the salary expectation and other benefits?

Interview Preparation Tips

Interview preparation tips for other job seekers - Too much of internal politics. Limited vertical growth. Annual increments too less.
Backoffice for US

I applied via Recruitment Consultant and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What ur future goal in conpany ?
  • Ans. 

    My future goal in the company is to become a respected and effective leader, driving team success and contributing to the company's growth.

    • To develop strong leadership skills and inspire my team to achieve their full potential.

    • To foster a positive and collaborative work environment.

    • To consistently meet and exceed team and company goals.

    • To actively seek opportunities for professional growth and development.

    • To contribute...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. I see my self working with this organisation in any responsible position depending on my hard work.
2.i love the challenges and I love to learn new things . Ea was

I appeared for an interview before Jun 2021.

Round 1 - Coding Test 

Round duration - 90 Minutes
Round difficulty - Medium

Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Validate Binary Search Tree Problem Statement

    Your task is to determine if a given binary tree with 'N' nodes is a valid Binary Search Tree (BST). A BST is defined by the following properties:

    • The lef...
  • Ans. 

    Validate if a given binary tree is a valid Binary Search Tree (BST) based on its properties.

    • Check if the left subtree of a node has only nodes with data less than the node's data.

    • Verify if the right subtree of a node has only nodes with data greater than the node's data.

    • Ensure that both the left and right subtrees are also binary search trees.

    • Implement a validation function for a BST.

    • Output 'true' if the binary tree is...

  • Answered by AI
Round 3 - HR 

Round duration - 60 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteria8 CGPABlackrock interview preparation:Topics to prepare for the interview - Data Structure , Oops , Dynamic Programming, Memory Management, DBMSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Pratice regularly atleast 5 problem . Make it habit .Try to cover Leetcode medium questions as many as possible 
Tip 2 : Be through with your projects . At some point interviewer will ask you some project related questions 
Tip 3 : Be strong in your CS fundamentals.

Application resume tips for other job seekers

Tip 1 : Do not put irrelevant information such as DOB
Tip 2 : Put only those skill which you can defend in cross questioning

Final outcome of the interviewSelected

Skills evaluated in this interview

National Stock Exchange of India Interview FAQs

How many rounds are there in National Stock Exchange of India Java Developer interview?
National Stock Exchange of India interview process usually has 1 rounds. The most common rounds in the National Stock Exchange of India interview process are Technical.
What are the top questions asked in National Stock Exchange of India Java Developer interview?

Some of the top questions asked at the National Stock Exchange of India Java Developer interview -

  1. What is marker interf...read more
  2. Different between array and linkl...read more
  3. Explain solid princi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Morningstar Interview Questions
3.9
 • 251 Interviews
Kotak Securities Interview Questions
3.6
 • 126 Interviews
Pine Labs Interview Questions
3.3
 • 122 Interviews
TresVista Interview Questions
2.7
 • 117 Interviews
Blackrock Interview Questions
3.7
 • 100 Interviews
Mr Cooper Interview Questions
4.0
 • 93 Interviews
Axis Direct Interview Questions
3.7
 • 83 Interviews
View all
National Stock Exchange of India Java Developer Salary
based on 9 salaries
₹5 L/yr - ₹13 L/yr
38% more than the average Java Developer Salary in India
View more details
Deputy Manager
882 salaries
unlock blur

₹6 L/yr - ₹14.2 L/yr

Manager
445 salaries
unlock blur

₹12.6 L/yr - ₹22 L/yr

System Analyst
231 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Senior Manager
165 salaries
unlock blur

₹21.6 L/yr - ₹38.4 L/yr

Assistant Manager
121 salaries
unlock blur

₹4 L/yr - ₹9.2 L/yr

Explore more salaries
Compare National Stock Exchange of India with

SBI Cards & Payment Services

3.7
Compare

Axis Direct

3.7
Compare

Kotak Securities

3.6
Compare

Aadhar Housing Finance

4.1
Compare
write
Share an Interview