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 Member Technical Staff Interview Questions, Process, and Tips

Updated 18 Mar 2025

Top Oracle Member Technical Staff Interview Questions and Answers

  • Q1. Regular Expression Match Problem Statement Given a string str and a string pat , where str may contain wildcard characters '?' and '*'. If a character is '?', it can be ...read more
  • Q2. Merge Sort Problem Statement Given a sequence of numbers ARR , your task is to return a sorted sequence of ARR in non-descending order using the merge sort algorithm. Ex ...read more
  • Q3. Implementing a Priority Queue Using Heap Ninja has been tasked with implementing a priority queue using a heap data structure. However, he is currently busy preparing fo ...read more
View all 30 questions

Oracle Member Technical Staff Interview Experiences

24 interviews found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is the process for designing a thread-safe concurrent transaction application?
  • Ans. 

    Designing a thread-safe concurrent transaction application involves careful consideration of synchronization, locking mechanisms, and data consistency.

    • Identify critical sections of code that need to be synchronized to prevent race conditions

    • Use synchronization mechanisms such as locks, semaphores, or atomic operations to ensure mutual exclusion

    • Consider using transactional memory or software transactional memory for man...

  • Answered by AI
  • Q2. Find middle element of linkedlist
  • Ans. 

    To find the middle element of a linked list, use the slow and fast pointer approach.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move the slow pointer by one step and the fast pointer by two steps until the fast pointer reaches the end of the list.

    • The position of the slow pointer will be the middle element of the linked list.

  • Answered by AI

Member Technical Staff Interview Questions & Answers

user image Jayraj Singh Bundela

posted on 15 Jan 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What are the key components and considerations for low-level design in a healthcare system?

Member Technical Staff Interview Questions Asked at Other Companies

Q1. Next Smallest Palindrome Problem Statement Find the next smallest ... read more
asked in Salesforce
Q2. Buy and Sell Stock Problem Statement Imagine you are Harshad Meht ... read more
Q3. Check Permutation Problem Statement Given two strings 'STR1' and ... read more
asked in Salesforce
Q4. Optimal Strategy for a Coin Game You are playing a coin game with ... read more
asked in Salesforce
Q5. Longest Happy String Problem Statement Given three non-negative i ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. Encoding strings gfg
  • Q2. Merge two sorted linked lists - gfg
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Design and explain ext file system
  • Ans. 

    Ext file system is a widely used file system in Linux for organizing and managing files on storage devices.

    • Ext stands for Extended File System

    • Supports features like journaling, access control lists, and extended attributes

    • Uses inodes to store metadata about files and directories

    • Supports different block sizes for efficient storage allocation

  • Answered by AI
  • Q2. A question about networking and cryptography
Round 2 - Coding Test 

A problem on dynamic programming

Skills evaluated in this interview

Oracle interview questions for designations

 Principal Member Technical Staff

 (2)

 Associate Member Technical Staff

 (2)

 Senior Member of Technical Staff

 (12)

 Principal Technical Staff Member

 (4)

 Member Technical Staff 1

 (2)

 Member Technical Staff Software

 (1)

 Senior Technical Staff Member

 (1)

 Technical Member Staff Intern

 (1)

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

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

Round 1 - Coding Test 

Leetcode medium problems

Round 2 - Technical 

(1 Question)

  • Q1. System design questions
Round 3 - Coding Test 

This round was a culture fit round

Get interview-ready with Top Oracle Interview Questions

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

(2 Questions)

  • Q1. Asasdasd asdasdas asdasda dasdas
  • Q2. Asdasdasd sdasdasda asdasda asdad

Member Technical Staff Jobs at Oracle

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

(2 Questions)

  • Q1. Question 1(Medium)
  • Q2. Question 2(medium)
Round 2 - Coding Test 

DSA, java, previous projects

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

2 leetcode medium questions

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

I appeared for an interview before Mar 2024.

Round 1 - Assignment 

The 90-minute assessment consists of approximately 45 questions covering Java, SQL, Linux, flowchart-based questions, and one coding question.

Round 2 - Technical 

(2 Questions)

  • Q1. How can you detect a loop in a linked list?
  • Ans. 

    Detecting a loop in a linked list can be efficiently done using Floyd's Cycle-Finding Algorithm.

    • Use two pointers: slow and fast. Initialize both at the head of the list.

    • Move slow pointer one step at a time and fast pointer two steps at a time.

    • If there is a loop, the fast pointer will eventually meet the slow pointer.

    • If the fast pointer reaches the end of the list (null), there is no loop.

    • Example: In a list 1 -> 2 -&...

  • Answered by AI
  • Q2. Is it possible to move the fast pointer by an increment other than two nodes at a time while applying the slow and fast pointer approach?
  • Ans. 

    Yes, the fast pointer can move by different increments in the slow and fast pointer technique.

    • The slow and fast pointer technique is often used to detect cycles in linked lists.

    • If the fast pointer moves by 1 node instead of 2, it can still be effective for certain problems.

    • For example, moving the fast pointer by 3 nodes can help find the middle of a list in a different way.

    • Adjusting the increment can change the algorit

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Some DBMS and OS question and project discussion
  • Q2. What is thrashing in operating systems (OS)?
  • Ans. 

    Thrashing occurs when an OS spends more time swapping pages in and out of memory than executing processes.

    • Thrashing happens when there is insufficient physical memory to hold all active processes.

    • It leads to a significant decrease in system performance due to excessive paging.

    • Example: A system running multiple memory-intensive applications may thrash if RAM is insufficient.

    • To mitigate thrashing, the OS may implement pa...

  • Answered by AI
Round 4 - Technical 

(3 Questions)

  • Q1. It was technical+ HR around
  • Q2. Where do you envision yourself in five years?
  • Ans. 

    In five years, I see myself as a lead engineer, driving innovative projects and mentoring junior staff in a collaborative environment.

    • Leading a team on cutting-edge projects, such as developing scalable cloud solutions.

    • Mentoring junior engineers, helping them grow their skills and advance their careers.

    • Contributing to open-source projects to enhance my technical expertise and community involvement.

    • Pursuing advanced cer...

  • Answered by AI
  • Q3. What is the SQL query to find the manager who is managing more than 10 employees?

Interview Preparation Tips

Interview preparation tips for other job seekers - In my opinion, Oracle usually poses easy to moderately challenging coding questions, so it is essential to prepare accordingly.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. How do you convert a web application to mobile app and how do you scale it.
  • Q2. How to decouple monolith service and how they interact
  • Q3. Projects in resume
  • Q4. API's related basic questions
Round 2 - Technical 

(3 Questions)

  • Q1. Pointers related questions in C
  • Q2. Linked lists questions, loop detection, loop correction
  • Q3. OS related calls, like system calls
Round 3 - Technical 

(5 Questions)

  • Q1. Database questions like what is database, indexing, sharding, etc
  • Q2. How to manage memory in databases, how to convert sample data to relational data
  • Q3. Gave an example company scenario and asked how to improve their database based on the requirements
  • Q4. Java related questions
  • Q5. OOPS design patterns and importance

Oracle Interview FAQs

How many rounds are there in Oracle Member Technical Staff interview?
Oracle interview process usually has 2-3 rounds. The most common rounds in the Oracle interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Oracle Member Technical Staff 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 Oracle. The most common topics and skills that interviewers at Oracle expect are Python, Oracle, Debugging, Data Structures and Algorithms and Agile Coaching.
What are the top questions asked in Oracle Member Technical Staff interview?

Some of the top questions asked at the Oracle Member Technical Staff interview -

  1. Given a social networking graph find the density of a person. Density is how ma...read more
  2. You are given a list of n numbers. How would you find the median in this stream...read more
  3. Given 2 arrays of n and n - 1elements which have n - 1 in common find the uniqu...read more
How long is the Oracle Member Technical Staff interview process?

The duration of Oracle Member Technical Staff interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Oracle Member Technical Staff Interview Process

based on 15 interviews

3 Interview rounds

  • Technical Round - 1
  • Coding Test Round
  • Technical Round - 2
View more
Oracle Member Technical Staff Salary
based on 996 salaries
₹9.7 L/yr - ₹40.6 L/yr
68% more than the average Member Technical Staff Salary in India
View more details

Oracle Member Technical Staff Reviews and Ratings

based on 117 reviews

3.3/5

Rating in categories

2.9

Skill development

3.7

Work-life balance

3.0

Salary

3.8

Job security

3.3

Company culture

2.0

Promotions

2.7

Work satisfaction

Explore 117 Reviews and Ratings
Member Technical Staff

Bangalore / Bengaluru

1-6 Yrs

₹ 9-27 LPA

Software Engineer/Member of Technical Staff

Bangalore / Bengaluru

1-5 Yrs

₹ 10-42 LPA

Member of Technical Staff - UI

Kolkata,

Mumbai

+5

3-5 Yrs

₹ 7.8-47 LPA

Explore more jobs
Senior Software Engineer
2.4k salaries
unlock blur

₹10.3 L/yr - ₹40 L/yr

Principal Consultant
2.1k salaries
unlock blur

₹14.5 L/yr - ₹36 L/yr

Senior Consultant
2.1k salaries
unlock blur

₹8.7 L/yr - ₹28 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.6 L/yr - ₹30 L/yr

Explore more salaries
Compare Oracle with

SAP

4.2
Compare

MongoDB

3.7
Compare

Salesforce

4.0
Compare

IBM

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