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

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

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
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Sep 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Write a program in .NET that outputs the characters appearing more than two times consecutively in a given string.
  • Q2. If there are five microservices, labeled as microservice one, microservice two, microservice three, microservice four, and microservice five. Microservice three breaks. Requests from microservice two to ...
  • Q3. What is an abstract class, and why is it necessary to use an abstract class when interfaces already exist?
  • Q4. What design patterns have you utilized in your projects?
  • Q5. Can you illustrate the architecture of your application?
Round 2 - Technical 

(10 Questions)

  • Q1. Given a list of strings that may contain duplicates, return a list of the duplicate strings using the most efficient approach.
  • Q2. Could you explain what your application does and the types of technology it utilizes?
  • Q3. When should we use MS SQL and NoSQL databases?
  • Q4. Which NoSQL database would you choose as an alternative to Elasticsearch, and what are your reasons for that choice?
  • Q5. What are the differences between MongoDB and PostgreSQL?
  • Q6. What are the differences between conventional URLs and attribute URLs in .NET Core Web API?
  • Q7. What is the working mechanism of OAuth authorization?
  • Q8. What steps do you take to ensure that an application remains maintainable?
  • Q9. Which design patterns have you utilized in your work?
  • Q10. How does Repository Pattern help in maintaining your codebase
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
-
Process Duration
-
Result
-
Round 1 - Interview Questions 

(20 Questions)

  • Q1. Explain the difference between ArrayList and LinkedList in Java. When would you choose one over the other?
  • Q2. What are the advantages and disadvantages of using Java’s synchronized keyword for thread synchronization? Can you explain how the ReentrantLock compares to synchronized?
  • Q3. What is the difference between == and .equals() in Java? When should each be used, and what issues can arise from improper usage?
  • Q4. How does the Java garbage collector work? Can you describe the different types of garbage collection algorithms available in Java?
  • Q5. What are the main features of Java 8? Can you explain how lambdas and the Stream API have changed the way Java applications are written?
  • Q6. Describe the differences between checked and unchecked exceptions in Java. Provide examples and explain how to handle them properly.
  • Q7. What is the Java Memory Model, and how does it affect multithreading and synchronization? How does volatile help ensure memory visibility?
  • Q8. Can you explain the difference between method overloading and method overriding in Java? Provide examples where each should be used.
  • Q9. What are functional interfaces in Java? How do they work with lambda expressions? Provide an example of a custom functional interface.
  • Q10. What is a Java Stream, and how does it differ from an Iterator? Explain how Streams can be used to process collections efficiently.
  • Q11. Explain the concept of immutability in Java. How does the String class achieve immutability, and what are the advantages of immutable objects?
  • Q12. What is the difference between final, finally, and finalize in Java? Provide examples to illustrate their usage.
  • Q13. Explain the Singleton design pattern in Java. How can you implement it safely to ensure thread safety?
  • Q14. What are Java annotations, and how are they used in frameworks like Spring? Explain the difference between built-in and custom annotations.
  • Q15. How do Java Streams handle parallel processing? What are the potential pitfalls of using parallel streams, and how can they be mitigated?
  • Q16. Explain the difference between ArrayList and LinkedList in Java. ArrayList is implemented as a dynamic array, while LinkedList is a doubly linked list. ArrayList provides fast random access (O(1) complexi...
  • Q17. What are the advantages and disadvantages of using Java’s synchronized keyword for thread synchronization? The synchronized keyword ensures that only one thread can access a block of code at a time. It pr...
  • Q18. What is the difference between == and .equals() in Java? == checks for reference equality, meaning it compares memory addresses. equals() checks for value equality, which can be overridden in user-defined...
  • Q19. How does the Java garbage collector work? Garbage collection in Java automatically reclaims memory occupied by unused objects. The JVM has different types of GC algorithms, including Serial, Parallel, CMS...
  • Q20. What are the main features of Java 8? Java 8 introduced lambda expressions, enabling functional-style programming. The Stream API allows efficient data processing with map, filter, and reduce operations. ...
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. JavaScript , coding questions
Round 2 - Technical 

(1 Question)

  • Q1. Coding problem, JavaScript and nodejs question
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Coding Test 

Their hiring managers are incompetent

Interview Preparation Tips

Interview preparation tips for other job seekers - This is a sick company. they donot want to pay . And will go out of way to harass those people who are paid on a higher side (instead of providing them more relevant task). When this company requires resources . they will hire you saying that they are the paymasters and other craps , but when they have alternatives, they'll treat you like shit, they will try to trap you into something bad, I have seen they have been very rude to some employees in a most unimaginable way, They also want that you marry their sick incompetent/outdated systems and never leave if you are less paid . they will not want you to learn anything. They will also access your phone, whatsapp, facebook, and their laptop comes with hidden microphones, so they will have access to your personal life as well. DONOT JOIN IF YOU ARE A SMART PROFESSIONAL
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
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

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

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Amazon Interview Questions
4.1
 • 5.1k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Google Interview Questions
4.4
 • 870 Interviews
Amdocs Interview Questions
3.7
 • 532 Interviews
Zoho Interview Questions
4.3
 • 516 Interviews
Cisco Interview Questions
4.1
 • 397 Interviews
View all
Oracle Pmts Salary
based on 146 salaries
₹15 L/yr - ₹55 L/yr
8% 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.4k salaries
unlock blur

₹10.2 L/yr - ₹40 L/yr

Senior Consultant
2.1k salaries
unlock blur

₹9.1 L/yr - ₹25 L/yr

Principal Consultant
2k salaries
unlock blur

₹14 L/yr - ₹36 L/yr

Senior Member of Technical Staff
1.8k salaries
unlock blur

₹12 L/yr - ₹45 L/yr

Senior Application Engineer
1.4k salaries
unlock blur

₹9.7 L/yr - ₹30 L/yr

Explore more salaries
Compare Oracle with

SAP

4.2
Compare

MongoDB

3.8
Compare

Salesforce

4.0
Compare

IBM

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