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 5k Reviews

Filter interviews by

Oracle Mts Software Engineer Interview Questions and Answers

Updated 15 Apr 2024

Oracle Mts Software Engineer Interview Experiences

3 interviews found

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

(1 Question)

  • Q1. Find 2 element having sum equal to x.
  • Ans. 

    Use a hash set to find two elements in an array that sum up to a given value x.

    • Create a hash set to store elements as you iterate through the array.

    • For each element, check if the difference between x and the current element exists in the hash set.

    • If it does, return the current element and the difference as the two elements that sum up to x.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Basic Behavioural questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic database related Questions and aptitude questions for fresher

Skills evaluated in this interview

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

We were asked a couple of DSA questions around array and string manipulation

Round 2 - One-on-one 

(2 Questions)

  • Q1. DSA question - 2 sum. problem
  • Q2. DSA - island problem of leetcode
  • Ans. 

    The island problem on LeetCode involves finding the number of connected islands in a grid of 1s and 0s.

    • Use depth-first search (DFS) or breadth-first search (BFS) to traverse the grid and count the number of islands.

    • Keep track of visited cells to avoid redundant calculations.

    • Consider diagonal movements if specified in the problem.

    • Example: Given grid = [[1,1,0,0],[0,1,0,1],[1,0,0,1]], the number of islands is 3.

  • Answered by AI

Mts Software Engineer Interview Questions Asked at Other Companies

Q1. What are decorators in Python and how define it. and what is a fu ... read more
asked in Salesforce
Q2. Return k most frequent string from an array of strings
Q3. Add Two Numbers represented as linked lists into one linked list
Q4. Given two strings s1 and s2 find the missing character with TC: 0 ... read more
asked in Agnity
Q5. Explaining the IMS architecture with interfaces and protocols

Mts Software Engineer Interview Questions & Answers

user image PRADEEP KUMAR BATHAM

posted on 14 Feb 2023

Interview experience
4
Good
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2022. There were 2 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 - One-on-one 

(3 Questions)

  • Q1. Be true. if you mentioned any troubleshooting in your resume , be ready with each and every details mostly questions are use cases.
  • Q2. Why looking for change
  • Q3. Better opportunities

Interview Preparation Tips

Interview preparation tips for other job seekers - Be precious.
Be true.
Learn every day.
Focused on one skill rather than mentioning everything.

Interview questions from similar companies

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

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

Round 1 - Technical 

(8 Questions)

  • Q1. Difference between static and final
  • Ans. 

    Static is used to define class-level variables and methods, while final is used to define constants that cannot be changed.

    • Static variables belong to the class itself, while final variables are constants that cannot be modified.

    • Static methods can be called without creating an instance of the class, while final methods cannot be overridden.

    • Static variables are shared among all instances of a class, while final variables...

  • Answered by AI
  • Q2. ArraysList vs LinkedList
  • Ans. 

    ArrayList is better for random access, LinkedList is better for frequent insertions/deletions.

    • ArrayList uses dynamic array to store elements, LinkedList uses doubly linked list.

    • ArrayList provides fast random access to elements using index, LinkedList provides fast insertion/deletion at any position.

    • Example: ArrayList is suitable for scenarios where random access is required like searching, LinkedList is suitable for sc...

  • Answered by AI
  • Q3. Describe Java8 Features
  • Ans. 

    Java8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow you to write code in a more concise and readable way.

    • Functional interfaces are interfaces with a single abstract method, which can be implemented using lambda expressions.

    • Streams provide a way to work with collections of objects in a functional style.

    • Default methods allow inte...

  • Answered by AI
  • Q4. Gave one scenario to solve using streams in java8
  • Ans. 

    Using streams in Java 8 to filter and map a list of numbers

    • Create a list of numbers

    • Use stream to filter out even numbers

    • Use map to square each number

    • Collect the results into a new list

  • Answered by AI
  • Q5. Multithreading- Write program to print even and odd numbers from 1 to 20 using 2 threads. 1 thread will responsible for printing even and another for Odd. And print in such a manner it should be alternate....
  • Ans. 

    Program to print even and odd numbers from 1 to 20 using 2 threads alternately.

    • Create two threads, one for printing even numbers and one for printing odd numbers.

    • Use wait(), notify(), and notifyAll() to ensure alternate printing.

    • Ensure synchronization between the two threads to avoid race conditions.

    • Example: Thread 1 prints even numbers (2, 4, 6, ...) and Thread 2 prints odd numbers (1, 3, 5, ...).

  • Answered by AI
  • Q6. Why strings immutable
  • Ans. 

    Strings are immutable to ensure data integrity and security.

    • Immutable strings prevent accidental changes to data

    • Immutable strings allow for safe sharing of data between different parts of a program

    • Immutable strings help prevent security vulnerabilities like SQL injection attacks

  • Answered by AI
  • Q7. Outer Join SQL query
  • Q8. What is the purpose of using default methods in java8?
  • Ans. 

    Default methods in Java 8 allow interfaces to have method implementations, enabling backward compatibility and reducing code duplication.

    • Default methods were introduced in Java 8 to provide a way to add new methods to interfaces without breaking existing implementations.

    • They allow interfaces to have method implementations, which was not possible before Java 8.

    • Default methods can be overridden in implementing classes to...

  • Answered by AI
Round 2 - Technical 

(8 Questions)

  • Q1. 1 coding problem related to Anagrams
  • Q2. 1 Java8 streams problem
  • Ans. 

    Using Java8 streams to solve a problem

    • Use stream() method to convert a collection into a stream

    • Use filter() method to filter elements based on a condition

    • Use map() method to transform elements

    • Use collect() method to collect the elements into a new collection

  • Answered by AI
  • Q3. What are checked exceptions
  • Ans. 

    Checked exceptions are exceptions that must be either caught or declared in the method signature.

    • Checked exceptions are subclasses of Exception (excluding RuntimeException and its subclasses)

    • Checked exceptions must be either caught using try-catch block or declared in the method signature using 'throws' keyword

    • Examples of checked exceptions in Java include IOException, SQLException, and ClassNotFoundException

  • Answered by AI
  • Q4. Purpose of @SpringBootApplication annotation?
  • Ans. 

    Annotation used to mark a class as a Spring Boot application

    • Combines @Configuration, @EnableAutoConfiguration, and @ComponentScan annotations

    • Used to bootstrap and launch a Spring application

    • Automatically scans for Spring components in the package and sub-packages

  • Answered by AI
  • Q5. Use of @Qualifier
  • Ans. 

    Annotation used in Spring to specify which bean to autowire

    • Used to disambiguate when multiple beans of the same type are present

    • Can be used with @Autowired to specify which bean to inject

    • Helps in resolving dependencies when multiple beans of the same type are available

  • Answered by AI
  • Q6. What are microservices?
  • Ans. 

    Microservices are a software development technique where an application is composed of small, independent services that communicate with each other.

    • Microservices are designed to be small, focused on specific tasks, and independently deployable.

    • Each microservice typically runs its own process and communicates with other services through APIs.

    • Microservices allow for easier scalability, flexibility, and maintenance compar...

  • Answered by AI
  • Q7. Design patterns
  • Q8. How microservices communicate with each other
  • Ans. 

    Microservices communicate with each other through APIs, messaging queues, or service meshes.

    • APIs: Microservices can communicate with each other by exposing APIs that allow them to send and receive data.

    • Messaging queues: Microservices can use messaging queues like RabbitMQ or Kafka to send messages to each other asynchronously.

    • Service meshes: Microservices can communicate through a service mesh like Istio, which handles...

  • Answered by AI
Round 3 - Behavioral 

(3 Questions)

  • Q1. Asked about projects.
  • Q2. Complete flow and business use case of the project
  • Ans. 

    The project involves creating a web-based platform for online shopping with features like user registration, product browsing, shopping cart, and payment processing.

    • User registers on the platform with personal information

    • User browses products by category or search

    • User adds products to the shopping cart

    • User proceeds to checkout and makes payment

    • Order is confirmed and user receives a confirmation email

  • Answered by AI
  • Q3. Interviewer was more concerned about matching the tech stack with job description

Interview Preparation Tips

Topics to prepare for Deutsche Telekom Digital Labs Software Engineer interview:
  • java8
  • Multithreading
  • Spring Boot
  • Microservices
  • MySQL
  • Basic OOPS Concept
  • Streams
  • Exception Handling

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

Mintu Babu lives in a smaller house than her brother and in a larger house than her parents. Her children reside with her, and she has no other relatives. If Mintu Babu's relative U lives in a larger house than her relative S, then all the following may be true except: \n\n1) S is U's father \n\n2) S is U's mother \n\n3) U is younger than S \n\n4) S is younger than U

Round 2 - Technical 

(2 Questions)

  • Q1. 1. merge two linked list
  • Ans. 

    Merge two sorted linked lists without creating new nodes by rearranging existing nodes.

    • Traverse both linked lists simultaneously

    • Compare the values of nodes and rearrange pointers accordingly

    • Continue until one of the lists is fully traversed

  • Answered by AI
  • Q2. 2. reverse a linked list.
  • Ans. 

    Reverse a linked list by changing the direction of pointers.

    • Start with three pointers: current, previous, and next.

    • Iterate through the linked list, updating pointers to reverse the direction.

    • Update the head of the linked list to be the previous node once iteration is complete.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

OOPS , DBMS , OS , and DSA concepts

Round 2 - Technical 

(2 Questions)

  • Q1. DBMS related concepts
  • Q2. Networking and Network Security
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are React Queries?
  • Ans. 

    React Queries are a library for managing server state in React applications.

    • React Queries provide a way to fetch and cache data from an API in React components.

    • They offer features like caching, background fetching, and automatic refetching.

    • React Queries can handle complex data fetching requirements, such as pagination and infinite scrolling.

  • Answered by AI
  • Q2. Can useEffect() hook run twice?
  • Ans. 

    Yes, useEffect() hook can run twice under certain conditions.

    • useEffect() hook can run twice if the dependencies array changes between renders.

    • This can happen if the dependencies array contains values that change frequently.

    • For example, if a state variable is included in the dependencies array and it is updated in the component, useEffect() will run again.

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Problems related to Binary Search
  • Q2. Problem statement on BST

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA basics
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, previous, and next

    • Iterate through the linked list, updating pointers to reverse the direction

    • Update the head of the linked list to be the last node visited

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. It is related to windows application and basic c# coding

Oracle Interview FAQs

How many rounds are there in Oracle Mts Software Engineer interview?
Oracle interview process usually has 2 rounds. The most common rounds in the Oracle interview process are One-on-one Round, Resume Shortlist and Technical.
What are the top questions asked in Oracle Mts Software Engineer interview?

Some of the top questions asked at the Oracle Mts Software Engineer interview -

  1. DSA - island problem of leetc...read more
  2. Find 2 element having sum equal to...read more
  3. Be true. if you mentioned any troubleshooting in your resume , be ready with ea...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Oracle interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
IBM Interview Questions
4.1
 • 2.3k Interviews
Google Interview Questions
4.4
 • 832 Interviews
Cisco Interview Questions
4.2
 • 392 Interviews
SAP Interview Questions
4.2
 • 300 Interviews
Salesforce Interview Questions
4.1
 • 264 Interviews
Adobe Interview Questions
4.0
 • 246 Interviews
View all
Oracle Mts Software Engineer Salary
based on 17 salaries
₹16 L/yr - ₹47.2 L/yr
10% more than the average Mts Software Engineer Salary in India
View more details

Oracle Mts Software Engineer Reviews and Ratings

based on 9 reviews

3.4/5

Rating in categories

3.7

Skill development

3.8

Work-Life balance

3.2

Salary & Benefits

4.7

Job Security

4.5

Company culture

2.7

Promotions/Appraisal

3.6

Work Satisfaction

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

₹10 L/yr - ₹40 L/yr

Senior Consultant
2.1k salaries
unlock blur

₹9 L/yr - ₹24.4 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

₹12 L/yr - ₹45 L/yr

Senior Application Engineer
1.4k salaries
unlock blur

₹8.5 L/yr - ₹34 L/yr

Explore more salaries
Compare Oracle with

SAP

4.2
Compare

MongoDB

3.9
Compare

Salesforce

4.1
Compare

IBM

4.1
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview