Upload Button Icon Add office photos

Filter interviews by

OCBC Bank Interview Questions, Process, and Tips

Updated 25 Nov 2024

Top OCBC Bank Interview Questions and Answers

View all 6 questions

OCBC Bank Interview Experiences

Popular Designations

9 interviews found

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
  • 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

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

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
  • Q2. Questions on pandas

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

Data Analyst Interview Questions asked at other Companies

Q1. Suppose there is a room in the office and X people enter room throughout the day, Y people leave throughout the day [continuously people are entering the room, some are staying there, and rest are going out] .. so tell me the code to calcul... read more
View answer (11)
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
  • Q2. Selenium and Java concepts

Skills evaluated in this interview

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)
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
  • Q2. Ref needs to be initialized before passing and will change, out no need to be initialized and

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

OCBC Bank interview questions for popular designations

 Softwaretest Engineer

 (2)

 Software Engineer

 (1)

 Data Analyst

 (1)

 Software Developer

 (1)

 Senior Software Engineer

 (1)

 Associate Vice President

 (1)

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
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
Round 4 - HR 

(1 Question)

  • Q1. Why want to join ocbc and discussion on salary

Associate Vice President Interview Questions asked at other Companies

Q1. Discuss a case study on a preferred topic or use sample problems to explain a difficult concept. First name the topic and then the concept/case study to be illustrated within 5 mins. CBSE Hot questions are preferred.
View answer (1)
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

Interview Preparation Tips

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

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (196)
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
  • Q2. Project details in CV
  • 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

Interview Preparation Tips

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

Skills evaluated in this interview

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

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

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...

Interview Preparation Tips

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

Interview questions from similar companies

I was interviewed before Sep 2016.

Interview Questionnaire 

1 Question

  • Q1. Growth prospects and compensation

Interview Preparation Tips

Round: Test
Duration: 25 minutes
Total Questions: 40

Round: Group Discussion
Tips: You should show how you can stand out in the competitive crowd
Duration: 5 minutes

Skills: Selling Skills, Analytical Skills

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, One-on-one Round and Coding Test.
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 Interview Process

based on 7 interviews

Interview experience

2.7
  
Poor
View more

Interview Questions from Similar Companies

ICICI Bank Interview Questions
4.0
 • 2.4k Interviews
HDFC Bank Interview Questions
3.9
 • 2.1k Interviews
Axis Bank Interview Questions
3.8
 • 1.5k Interviews
IndusInd Bank Interview Questions
3.5
 • 602 Interviews
Yes Bank Interview Questions
3.7
 • 429 Interviews
Federal Bank Interview Questions
3.9
 • 126 Interviews
Bank of Baroda Interview Questions
3.6
 • 106 Interviews
View all

OCBC Bank Reviews and Ratings

based on 27 reviews

3.4/5

Rating in categories

3.5

Skill development

3.3

Work-life balance

3.5

Salary

3.1

Job security

3.5

Company culture

2.9

Promotions

3.4

Work satisfaction

Explore 27 Reviews and Ratings
Assistant Vice President
24 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Application Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare OCBC Bank with

State Bank of India

3.8
Compare

HDFC Bank

3.9
Compare

ICICI Bank

4.0
Compare

Axis Bank

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