Upload Button Icon Add office photos

Nomura Holdings

Compare button icon Compare button icon Compare

Filter interviews by

Nomura Holdings Quality Analyst Interview Questions and Answers

Updated 7 Sep 2024

Nomura Holdings Quality Analyst Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Good tha bro m doing this because want to check the question for analyst

Round 2 - Coding Test 

Html, css , java evert thing they ask

Interview Preparation Tips

Interview preparation tips for other job seekers - sahi tha bro

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Basic questions about securities market.
  • Q2. About communication skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident thats it. All the best for the people who is attending Interview in JP.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. OOPS Concepts of Java
  • Ans. 

    OOPS Concepts of Java include Inheritance, Polymorphism, Encapsulation, and Abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Encapsulation hides the internal state of an object and only allows access through methods.

    • Abstraction focuses on the essential qualities of an object rather than specific deta

  • Answered by AI
  • Q2. Collections Hierarchy in Java
  • Ans. 

    Collections hierarchy in Java includes interfaces like List, Set, Map and their implementations like ArrayList, HashSet, HashMap.

    • Java collections framework provides interfaces like List, Set, Map

    • List interface allows duplicate elements and maintains insertion order, examples are ArrayList, LinkedList

    • Set interface does not allow duplicate elements, examples are HashSet, TreeSet

    • Map interface stores key-value pairs, examp

  • Answered by AI

Skills evaluated in this interview

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

It was a quite good exp and i clerd that round and i got an offer in those in that company company company company company

Round 2 - Technical 

(2 Questions)

  • Q1. First round was self intro
  • Q2. Coding questiond
Round 3 - HR 

(2 Questions)

  • Q1. Salary exp and high
  • Q2. Salary exp in high
  • Ans. 

    I have experience with high salary expectations.

    • I have experience negotiating high salaries based on my skills and experience.

    • I have successfully secured high salary offers in previous roles.

    • I am confident in my ability to justify and negotiate for a high salary based on market rates and my qualifications.

  • Answered by AI

I applied via Referral and was interviewed before Jun 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Process is throwing Out of Memory Error , describe the steps you will take to debug and then interviewer went down in Memory Management concepts and garbage collection algo's of JVM in great detail.
  • Ans. 

    To debug Out of Memory Error, analyze memory usage and garbage collection algorithm of JVM.

    • Analyze heap dump to identify memory leaks

    • Check if JVM is running out of heap space

    • Analyze garbage collection logs to identify any issues

    • Tune JVM parameters to optimize memory usage

    • Consider using a profiler to identify memory-intensive code

    • Check for any large objects or arrays that may be causing the issue

  • Answered by AI
  • Q2. Design automated Parking Lot.
  • Ans. 

    Automated parking lot design with efficient space utilization and user-friendly interface.

    • Use sensors to detect available parking spots

    • Implement a central computer system to manage parking allocation

    • Incorporate user-friendly interface for easy navigation and payment

    • Maximize space utilization with multi-level parking and compact car storage

    • Ensure safety measures are in place for pedestrians and vehicles

  • Answered by AI
  • Q3. Design Something similar as auto correct/suggestions functionality of Google search.
  • Ans. 

    Design an auto-suggestion feature for a search engine.

    • Implement a search algorithm that suggests relevant keywords based on user input.

    • Use machine learning to improve the accuracy of suggestions over time.

    • Allow users to easily select and add suggested keywords to their search query.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - When interviewer asked you to design a system (any system) , its important that we don't jump on solution immediately.

First define the problem statement and write down all requirements on paper.
Writing down the requirements and clarify the assumptions are two most important task in any system design question.

Remember nobody expects you to design fully functional auto-correct functionality, or Zomato app, or parking lot in one hour.
It took many months for any development team to get these kind of design right and sometime applications have to be redesign multiple times in reality.

In interview what people want to see is that how well you think,are you able to connect the dots in your design and can you come up with high level prototype which is generic and scalable.
I have seen people got lost in little nuances/edge scenarios which doesn't matter in larger scheme of things, so
1. Focus on big picture first.
2. Get your high level entity design, Schema Design right.
3. Then connect the dots and focus of if we can scale the system or enhance the system if required.
4. Try to accommodate any edge case scenario.

Generally, if you get first three steps rights , in one hour or so that's enough for you to crack the round.

Skills evaluated in this interview

I was interviewed in Dec 2020.

Interview Questionnaire 

2 Questions

  • Q1. Why do you think you are fit for this role? (Depending upon the role you applied for)
  • Q2. What changes will you bring to the existing process to streamline it better?

Interview Preparation Tips

Interview preparation tips for other job seekers - Take you time to answer - don't rush
Speak slowly and avoid using jargons
If you don't know something, say so and do not lie
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(4 Questions)

  • Q1. CompletableFuture VS Future
  • Ans. 

    CompletableFuture is an enhanced version of Future in Java that provides more flexibility and functionality.

    • CompletableFuture is part of the Java 8 concurrency framework.

    • It allows chaining of multiple asynchronous operations.

    • CompletableFuture can be explicitly completed or cancelled.

    • It supports callbacks and combinators for handling completion.

    • Future is a basic interface for representing the result of an asynchronous c...

  • Answered by AI
  • Q2. ConcurrentHashmap
  • Q3. Composition Vs inheritance
  • Ans. 

    Composition is a design principle where objects are composed of other objects, while inheritance is a mechanism where objects inherit properties and behaviors from a parent object.

    • Composition promotes code reusability and flexibility by allowing objects to be composed of other objects.

    • Inheritance allows objects to inherit properties and behaviors from a parent object, promoting code reuse.

    • Composition is more flexible t...

  • Answered by AI
  • Q4. Spring boot, microservices, Design patterns

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Parallel Calls in java
  • Ans. 

    Parallel calls in Java allow multiple tasks to be executed simultaneously, improving performance.

    • Parallel calls can be achieved using threads or the Executor framework.

    • Threads allow concurrent execution of tasks, but require manual management of synchronization and resource sharing.

    • The Executor framework provides higher-level abstractions for managing parallel tasks, such as thread pools and task scheduling.

    • Example: us...

  • Answered by AI
  • Q2. Lock Vs Sync Block
  • Ans. 

    Lock and Sync Block are mechanisms used for thread synchronization in multi-threaded programming.

    • Lock is a low-level synchronization mechanism that provides exclusive access to a shared resource.

    • Sync Block is a higher-level synchronization mechanism that allows multiple threads to access a shared resource concurrently.

    • Lock is more flexible and can be used in various scenarios, but it requires explicit acquisition and r...

  • Answered by AI
  • Q3. Hsshmap internal working , Checked Exception

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Walk-in and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. How long u worked in privacy company
  • Ans. 

    I have worked in a privacy company for 3 years.

    • I have 3 years of experience working in a privacy company

    • During my time at the privacy company, I have gained expertise in data protection regulations

    • I have successfully implemented privacy policies and procedures to ensure compliance

  • Answered by AI
  • Q2. Tell ur experience in privacy company
  • Ans. 

    I have 3 years of experience working in a privacy company specializing in data protection and compliance.

    • Implemented privacy policies and procedures to ensure compliance with data protection regulations

    • Conducted privacy impact assessments to identify and mitigate privacy risks

    • Provided training to employees on data protection best practices

    • Responded to data subject access requests and managed data breach incidents

  • Answered by AI
  • Q3. Ask about what is meant by an insurnce
Round 2 - One-on-one 

(2 Questions)

  • Q1. Asked about y u want to leave in privacy company
  • Q2. Self introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview has conducted iam happy with the interview
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Phycometric test in round 1

Nomura Holdings Interview FAQs

How many rounds are there in Nomura Holdings Quality Analyst interview?
Nomura Holdings interview process usually has 2 rounds. The most common rounds in the Nomura Holdings interview process are Aptitude Test and Coding Test.
How to prepare for Nomura Holdings Quality Analyst 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 Nomura Holdings. The most common topics and skills that interviewers at Nomura Holdings expect are Selenium, Core Java, JIRA, Test Cases and Agile.

Tell us how to improve this page.

Nomura Holdings Quality Analyst Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

HSBC Group Interview Questions
3.9
 • 484 Interviews
Goldman Sachs Interview Questions
3.5
 • 376 Interviews
Deutsche Bank Interview Questions
3.9
 • 362 Interviews
UBS Interview Questions
3.9
 • 331 Interviews
Morgan Stanley Interview Questions
3.7
 • 291 Interviews
Barclays Interview Questions
3.8
 • 269 Interviews
Bank of America Interview Questions
4.2
 • 235 Interviews
MNC Group Interview Questions
4.2
 • 102 Interviews
View all
Nomura Holdings Quality Analyst Salary
based on 4 salaries
₹3.9 L/yr - ₹11.7 L/yr
73% more than the average Quality Analyst Salary in India
View more details
Analyst
827 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Analyst
734 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
449 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate
423 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Vice President
196 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Nomura Holdings with

Morgan Stanley

3.7
Compare

Goldman Sachs

3.5
Compare

JPMorgan Chase & Co.

4.0
Compare

UBS

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