AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

OCBC Bank

Compare button icon Compare button icon Compare
3.2

based on 29 Reviews

Play video Play video Video summary
  • About
  • Reviews
    29
  • Salaries
    195
  • Interviews
    9
  • Jobs
    -
  • Benefits
    -
  • Photos
    -

Filter interviews by

OCBC Bank Interview Questions and Answers

Updated 25 Nov 2024
Popular Designations

6 Interview questions

A Software Developer was asked 9mo ago
Q. What is the difference between an array and an ArrayList?
Ans. 

Array is a fixed-size data structure while ArrayList is a dynamic-size data structure in Java.

  • Array is a fixed-size collection of elements of the same data type, while ArrayList is a dynamic-size collection that can grow or shrink.

  • Arrays can store primitive data types and objects, while ArrayList can only store objects.

  • Arrays require a specified size during initialization, while ArrayList can dynamically resize it...

View all Software Developer interview questions
A Software Developer was asked 9mo ago
Q. Which design patterns do you usually use?
Ans. 

I usually use the MVC (Model-View-Controller) design pattern in my projects.

  • Separates the application into three main components: Model (data), View (UI), and Controller (logic)

  • Promotes code reusability, modularity, and maintainability

  • Examples: Laravel framework in PHP, Spring framework in Java

View all Software Developer interview questions
A Senior Software Engineer was asked
Q. What is the difference between ref and out parameters?
Ans. 

ref is used for passing a variable by reference, out is used for returning a variable by reference

  • ref is used for passing a variable by reference, allowing the method to modify the variable

  • out is used for returning a variable by reference, typically used for returning multiple values from a method

  • Example: int x = 10; SomeMethod(ref x); // x can be modified inside SomeMethod

  • Example: int result; SomeMethod(out resul...

View all Senior Software Engineer interview questions
An Associate Vice President was asked
Q. How to handle concurrent projects? Dealing with different stakeholders
Ans. 

Concurrent projects require prioritization and effective communication with stakeholders.

  • Prioritize projects based on their importance and urgency

  • Create a project plan with clear timelines and milestones

  • Communicate regularly with stakeholders to keep them informed of progress and any changes

  • Delegate tasks to team members and ensure they have the necessary resources and support

  • Monitor progress and adjust plans as n...

View all Associate Vice President interview questions
A Softwaretest Engineer was asked 7mo ago
Q. TestNG Framework Explanation
Ans. 

TestNG is a testing framework for Java that supports various testing levels and annotations.

  • TestNG allows for easy configuration of test cases using annotations like @Test, @BeforeTest, @AfterTest, etc.

  • It supports parameterization of test cases using @DataProvider annotation.

  • TestNG provides features like grouping of test cases, dependency management, parallel execution, and reporting.

  • It integrates well with build ...

View all Softwaretest Engineer interview questions
A Softwaretest Engineer was asked
Q. Best practise design pattern
Ans. 

The best practice design pattern for software testing is the Page Object Model (POM).

  • POM separates the test logic from the UI, making tests more maintainable and reusable.

  • It improves test readability and reduces code duplication.

  • POM promotes modularity and allows for easier test maintenance and scalability.

  • It enhances collaboration between developers and testers.

  • Example: Using POM, each page of a web application i...

View all Softwaretest Engineer interview questions

OCBC Bank Interview Experiences

9 interviews found

Software Developer Interview Questions & Answers

user image Anonymous

posted on 23 Sep 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What design pattern you usually used?
  • Ans. 

    I usually use the MVC (Model-View-Controller) design pattern in my projects.

    • Separates the application into three main components: Model (data), View (UI), and Controller (logic)

    • Promotes code reusability, modularity, and maintainability

    • Examples: Laravel framework in PHP, Spring framework in Java

  • Answered by AI
    Add your answer
  • Q2. What is the difference between array and arraylist
  • Ans. 

    Array is a fixed-size data structure while ArrayList is a dynamic-size data structure in Java.

    • Array is a fixed-size collection of elements of the same data type, while ArrayList is a dynamic-size collection that can grow or shrink.

    • Arrays can store primitive data types and objects, while ArrayList can only store objects.

    • Arrays require a specified size during initialization, while ArrayList can dynamically resize itself.

    • ...

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 29 Aug 2024

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on statistics
  • Add your answer
  • Q2. Questions on pandas
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the following: Python (pandas, numpy), Statistics( anova, t-test, PCA etc), Tableau, Excel Pivot Tables, SQL
Anonymous

Softwaretest Engineer Interview Questions & Answers

user image Anonymous

posted on 25 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. TestNG Framework Explanation
  • Ans. 

    TestNG is a testing framework for Java that supports various testing levels and annotations.

    • TestNG allows for easy configuration of test cases using annotations like @Test, @BeforeTest, @AfterTest, etc.

    • It supports parameterization of test cases using @DataProvider annotation.

    • TestNG provides features like grouping of test cases, dependency management, parallel execution, and reporting.

    • It integrates well with build tools...

  • Answered by AI
    Add your answer
  • Q2. Selenium and Java concepts
  • Add your answer

Skills evaluated in this interview

Anonymous

Senior Software Engineer Interview Questions & Answers

user image Anonymous

posted on 19 Mar 2024

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between ref and out
  • Ans. 

    ref is used for passing a variable by reference, out is used for returning a variable by reference

    • ref is used for passing a variable by reference, allowing the method to modify the variable

    • out is used for returning a variable by reference, typically used for returning multiple values from a method

    • Example: int x = 10; SomeMethod(ref x); // x can be modified inside SomeMethod

    • Example: int result; SomeMethod(out result); /...

  • Answered by AI
    Add your answer
  • Q2. Ref needs to be initialized before passing and will change, out no need to be initialized and
  • Add your answer

Skills evaluated in this interview

Anonymous

Associate Vice President Interview Questions & Answers

user image Anonymous

posted on 31 May 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
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. Question on requirement gathering, workload modelling, tuning, cripting , scenario preparation. Question on Loadrunner, jmeter, Microservices, Kibana, any other application monitoring tool
  • Add your answer
Round 3 - One-on-one 

(1 Question)

  • Q1. How to handle concurrent projects? Dealing with different stakeholders
  • Ans. 

    Concurrent projects require prioritization and effective communication with stakeholders.

    • Prioritize projects based on their importance and urgency

    • Create a project plan with clear timelines and milestones

    • Communicate regularly with stakeholders to keep them informed of progress and any changes

    • Delegate tasks to team members and ensure they have the necessary resources and support

    • Monitor progress and adjust plans as needed

    • ...

  • Answered by AI
    Add your answer
Round 4 - HR 

(1 Question)

  • Q1. Why want to join ocbc and discussion on salary
  • Add your answer
Anonymous

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 12 Feb 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

20 mins java leetcode

Round 2 - Technical 

(1 Question)

  • Q1. 60 mins discussion by tech lead
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - well-prepare your resume
Anonymous

Softwaretest Engineer Interview Questions & Answers

user image Anonymous

posted on 12 Feb 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Two java coding testing - 20 mins each

Round 2 - Technical 

(3 Questions)

  • Q1. Q&A by tech lead around 1 hour
  • Add your answer
  • Q2. Project details in CV
  • Add your answer
  • Q3. Best practise design pattern
  • Ans. 

    The best practice design pattern for software testing is the Page Object Model (POM).

    • POM separates the test logic from the UI, making tests more maintainable and reusable.

    • It improves test readability and reduces code duplication.

    • POM promotes modularity and allows for easier test maintenance and scalability.

    • It enhances collaboration between developers and testers.

    • Example: Using POM, each page of a web application is rep...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Topics to prepare for OCBC Bank Softwaretest Engineer interview:
  • system design
  • Java
  • Design Patterns

Skills evaluated in this interview

Anonymous

Interview Questions & Answers

user image Anonymous

posted on 16 Sep 2024

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

I applied via Recruitment Consulltant and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. What do you do in your free time ?
  • Ans. 

    I enjoy reading, hiking, and trying out new recipes in my free time.

    • Reading books from various genres

    • Hiking in local trails and national parks

    • Experimenting with new recipes in the kitchen

  • Answered by AI
    Add your answer
Anonymous

Interview Questions & Answers

user image Anonymous

posted on 7 Feb 2020

I applied via Referral and was interviewed in Aug 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I was asked about my previous job in complete details with all the major and minor points, then was followed by small market questions and product knowledge for the unit trust, bonds and structure products...
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and confident. .be updated about the markets.
Anonymous

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 OCBC Bank?
Ask anonymously on communities.

Interview questions from similar companies

company Logo

Team Lead Interview Questions & Answers

IDFC FIRST Bank user image Anonymous

posted on 23 Apr 2022

I applied via Company Website and was interviewed before Apr 2021. 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 - Case Study 
Round 3 - One-on-one 

(1 Question)

  • Q1. Good work this company
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Good working this company last working this company
Anonymous
More about working at OCBC Bank
  • HQ - Singapore, Singapore
  • Banking
  • 11-50 Employees (India)
  • Financial Services

OCBC Bank Interview FAQs

How many rounds are there in OCBC Bank interview?
OCBC Bank interview process usually has 1-2 rounds. The most common rounds in the OCBC Bank interview process are Technical, Coding Test and One-on-one Round.
What are the top questions asked in OCBC Bank interview?

Some of the top questions asked at the OCBC Bank interview -

  1. How to handle concurrent projects? Dealing with different stakehold...read more
  2. what is the difference between array and arrayl...read more
  3. What design pattern you usually us...read more

Tell us how to improve this page.

OCBC Bank Interviews By Designations

  • OCBC Bank Softwaretest Engineer Interview Questions
  • OCBC Bank Software Engineer Interview Questions
  • OCBC Bank Data Analyst Interview Questions
  • OCBC Bank Software Developer Interview Questions
  • OCBC Bank Senior Software Engineer Interview Questions
  • OCBC Bank Associate Vice President Interview Questions

Interview Questions for Popular Designations

  • Associate Interview Questions
  • Executive Interview Questions
  • Analyst Interview Questions
  • Software Engineer Interview Questions
  • Senior Associate Interview Questions
  • Business Analyst Interview Questions
  • Associate Software Engineer Interview Questions
  • HR Executive Interview Questions
  • Show more
  • Sales Officer Interview Questions
  • Assistant Manager Interview Questions

Overall Interview Experience Rating

2.7/5

based on 7 interview experiences

Difficulty level

Moderate 80%
Hard 20%

Duration

Less than 2 weeks 60%
6-8 weeks 40%
View more

Interview Questions from Similar Companies

ICICI Bank
ICICI Bank Interview Questions
4.0
 • 2.6k Interviews
HDFC Bank
HDFC Bank Interview Questions
3.9
 • 2.5k Interviews
Axis Bank
Axis Bank Interview Questions
3.7
 • 1.6k Interviews
Kotak Mahindra Bank
Kotak Mahindra Bank Interview Questions
3.7
 • 1.2k Interviews
IDFC FIRST Bank
IDFC FIRST Bank Interview Questions
3.9
 • 754 Interviews
IndusInd Bank
IndusInd Bank Interview Questions
3.5
 • 675 Interviews
Bandhan Bank
Bandhan Bank Interview Questions
3.7
 • 625 Interviews
AU Small Finance Bank
AU Small Finance Bank Interview Questions
4.2
 • 583 Interviews
Yes Bank
Yes Bank Interview Questions
3.7
 • 478 Interviews
Equitas Small Finance Bank
Equitas Small Finance Bank Interview Questions
4.4
 • 472 Interviews
View all

OCBC Bank Reviews and Ratings

based on 29 reviews

3.2/5

Rating in categories

3.2

Skill development

3.0

Work-life balance

3.4

Salary

2.9

Job security

3.2

Company culture

2.6

Promotions

3.0

Work satisfaction

Explore 29 Reviews and Ratings
OCBC Bank Salaries in India
Assistant Vice President
30 salaries
unlock blur

₹26 L/yr - ₹101 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹18.2 L/yr - ₹48.5 L/yr

AVP
4 salaries
unlock blur

₹43 L/yr - ₹60 L/yr

Senior Java Developer
4 salaries
unlock blur

₹19 L/yr - ₹50 L/yr

Associate Vice President
4 salaries
unlock blur

₹60 L/yr - ₹95 L/yr

Explore more salaries
Compare OCBC Bank with
HDFC Bank

HDFC Bank

3.9
Compare
ICICI Bank

ICICI Bank

4.0
Compare
Axis Bank

Axis Bank

3.7
Compare
Kotak Mahindra Bank

Kotak Mahindra Bank

3.7
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • OCBC Bank Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter