Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Oracle Team. If you also belong to the team, you can get access from here

Oracle Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 5.1k Reviews

Filter interviews by

Oracle Pmts Interview Questions and Answers

Updated 11 Sep 2024

Oracle Pmts Interview Experiences

3 interviews found

Pmts Interview Questions & Answers

user image Vipank Shree

posted on 20 Jun 2024

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

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

Round 1 - Coding Test 

Practice Leetcode medium

Pmts Interview Questions & Answers

user image Ravneet Singh

posted on 5 Feb 2024

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

(1 Question)

  • Q1. Fibonacci series recursion problem
  • Ans. 

    The Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • The Fibonacci series starts with 0 and 1.

    • Each subsequent number is the sum of the two preceding numbers.

    • The series can be generated using recursion or iteration.

    • Example: 0, 1, 1, 2, 3, 5, 8, 13, 21, ...

  • Answered by AI

Skills evaluated in this interview

Pmts Interview Questions Asked at Other Companies

asked in Oracle
Q1. how many threads can be run on n-cores?
asked in Oracle
Q2. Fibonacci series recursion problem

Pmts Interview Questions & Answers

user image Anonymous

posted on 11 Sep 2024

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

I applied via Referral and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. How many threads can be run on n-cores?
  • Ans. 

    The number of threads that can be run on n-cores depends on the specific hardware and software configurations.

    • The number of threads that can be run on n-cores is influenced by factors such as the type of processor, operating system, and workload.

    • In general, the number of threads that can be run on n-cores is limited by the number of physical and logical cores available.

    • For example, a quad-core processor with hyper-thre...

  • Answered by AI
Round 2 - Case Study 

Design online movie ticket portal

Skills evaluated in this interview

Interview questions from similar companies

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

I was interviewed in Dec 2024.

Round 1 - Aptitude Test 

A standardized assessment that measures a person's skills, cognitive abilities, and potential to perform in a specific role.

Round 2 - Technical 

(4 Questions)

  • Q1. Technical interview questions at Automatic Data Processing (ADP) may cover topics such as programming, databases, and software development.
  • Q2. They may also ask about problem-solving and how you approach challenging tasks.
  • Q3. Emphasize a structured method that involves clearly defining the issue, gathering relevant information, brainstorming potential solutions, evaluating options carefully, implementing the chosen solution, an...
  • Q4. Data structures, algorithms, SQL querying, object-oriented programming principles, software development lifecycle, database concepts (relational vs. NoSQL), coding challenges in relevant languages (like Py...
Round 3 - HR 

(2 Questions)

  • Q1. May ask about your background, skills, and how you handle challenges
  • Q2. Background questions Tell me about yourself, What are your career goals, What are your strengths and weaknesses, What do you know about ADP, and Why do you want to work at ADP.

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on tailoring your resume and cover letter to each role, thoroughly researching companies and potential interview questions, actively networking, attending career fairs, practicing your interview skills, following up after interviews, and maintaining a strong online presence on platforms like LinkedIn.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Topics on electronics and C programming

Round 2 - Technical 

(4 Questions)

  • Q1. Questions on simple python programs and electronics basics
  • Q2. Question on simple linked list
  • Q3. Program for fibonacci seq
  • Ans. 

    Program to generate Fibonacci sequence

    • Start with two initial numbers, 0 and 1

    • Add the previous two numbers to get the next number in the sequence

    • Repeat this process to generate the Fibonacci sequence

    • Example: 0, 1, 1, 2, 3, 5, 8, 13, ...

  • Answered by AI
  • Q4. Questions on mosfets
Round 3 - HR 

(1 Question)

  • Q1. Why you would like to join the company, and other questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience in the interview
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was a great session that taught me many overlapping concepts and helped upgrade my skills.

Round 2 - Coding Test 

It was a great session; I discovered my potential skills as well as the areas where I need improvement.

Round 3 - Group Discussion 

It was a highly interactive session characterized by a friendly conversation, which greatly assisted me in progressing to subsequent rounds.

Round 4 - HR 

(1 Question)

  • Q1. Can you provide a self-introduction, explain why you chose this role, and discuss what makes you a suitable candidate for the program architect position?

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on improving your communication skills, and if you don't know the answer, try to create confusion rather than appearing uninformed. By upgrading your skills, an offer letter will be within your reach.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at Indian Institute of Technology (IIT), Patna and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

The coding questions were at Leetcode difficulty level and were derived from the Striver sheet.

Round 2 - Technical 

(2 Questions)

  • Q1. BFS graph level
  • Q2. Minimum flight distance . I was not shortlisted for interview.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well and computer fundamentals.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I was interviewed in Nov 2024.

Round 1 - Coding Test 

It was codility test with 2 questions

Round 2 - One-on-one 

(1 Question)

  • Q1. One codility question
Round 3 - One-on-one 

(1 Question)

  • Q1. Design system like uber eats
Round 4 - One-on-one 

(1 Question)

  • Q1. Design system like youtube
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Data structure related question

Round 2 - Technical 

(4 Questions)

  • Q1. Quesitions related to data structure, cloud
  • Q2. Find the second highest integer
  • Ans. 

    To find the second highest integer in an array, sort the array in descending order and return the second element.

    • Sort the array in descending order

    • Return the second element in the sorted array

    • Handle edge cases like duplicates or small arrays

  • Answered by AI
  • Q3. Question related to two sum
  • Q4. Some sliding window problems
Round 3 - HR 

(1 Question)

  • Q1. General Behavioral Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for the basics

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Opps, overloading and overriding, factory n singleton patteren
  • Q2. Collections HashMap internal working

Oracle Interview FAQs

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

Some of the top questions asked at the Oracle Pmts interview -

  1. how many threads can be run on n-cor...read more
  2. Fibonacci series recursion prob...read more

Tell us how to improve this page.

Oracle Pmts Interview Process

based on 3 interviews in last 1 year

Interview experience

4.3
  
Good

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
IBM Interview Questions
4.1
 • 2.4k Interviews
Google Interview Questions
4.4
 • 847 Interviews
Cisco Interview Questions
4.2
 • 395 Interviews
SAP Interview Questions
4.2
 • 303 Interviews
Salesforce Interview Questions
4.1
 • 267 Interviews
Adobe Interview Questions
4.0
 • 248 Interviews
View all
Oracle Pmts Salary
based on 146 salaries
₹15 L/yr - ₹55 L/yr
9% less than the average Pmts Salary in India
View more details

Oracle Pmts Reviews and Ratings

based on 10 reviews

3.0/5

Rating in categories

2.3

Skill development

3.3

Work-life balance

2.4

Salary

3.2

Job security

2.8

Company culture

2.3

Promotions

2.5

Work satisfaction

Explore 10 Reviews and Ratings
Senior Software Engineer
2.3k salaries
unlock blur

₹10.1 L/yr - ₹40 L/yr

Senior Consultant
2.1k salaries
unlock blur

₹9 L/yr - ₹30 L/yr

Principal Consultant
2k salaries
unlock blur

₹10.9 L/yr - ₹36 L/yr

Senior Member of Technical Staff
1.8k salaries
unlock blur

₹13.4 L/yr - ₹45 L/yr

Senior Application Engineer
1.4k salaries
unlock blur

₹9.4 L/yr - ₹29 L/yr

Explore more salaries
Compare Oracle with

SAP

4.2
Compare

MongoDB

3.8
Compare

Salesforce

4.1
Compare

IBM

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