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 Assistant Application Developer Interview Questions, Process, and Tips

Updated 18 Dec 2020

Oracle Assistant Application Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Stack implementation using Queue, Queue implementation using stack,
  • Ans. 

    Stack can be implemented using two queues, and Queue can be implemented using two stacks.

    • To implement Stack using Queue, we can use two queues. One queue will be used for storing elements and the other will be used for dequeuing elements. When we push an element, we enqueue it to the first queue. When we pop an element, we dequeue all the elements from the first queue and enqueue them to the second queue, except for th...

  • Answered by AI
  • Q2. Delete a head node from linked list given that head node is not given in list in qn.
  • Ans. 

    To delete a head node from a linked list without the head node given, we need to traverse the list.

    • Traverse the list until we find the node whose next node is the head node.

    • Make the next node of that node as the new head node.

    • Delete the original head node.

  • Answered by AI
  • Q3. Role/authentication/Authorization based application implementation
  • Q4. Qn based on Oops concept
  • Q5. Java api implementation approach and how you are connecting it from front end.
  • Ans. 

    Java api implementation approach and front-end connection.

    • Java api implementation involves creating classes and methods to interact with the api

    • The front-end can connect to the api using HTTP requests and JSON data

    • Frameworks like Spring can simplify the implementation process

    • API documentation is crucial for understanding how to use the api

  • Answered by AI
  • Q6. Common longest Substring from 2 or more than 2 string
  • Ans. 

    Finding the longest common substring among multiple strings.

    • Iterate through all substrings of the first string and check if it exists in all other strings.

    • Use dynamic programming to find the longest common substring among all strings.

    • If the strings are sorted, use binary search to find the common substring.

    • Example: For strings 'abcdef' and 'defghij', the longest common substring is 'def'.

  • Answered by AI
  • Q7. Lift implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - A total of 4 round had been taken in a single day. Result has been announced after the 15 day. hr inform me about the result. And then after 1 month they release the offer letter . Onboarding was very smooth. Overall I liked the interview process

Skills evaluated in this interview

Interview questions from similar companies

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

(1 Question)

  • Q1. Difference between class & interface
  • Ans. 

    Classes can have both implementation and data members, while interfaces can only have method signatures.

    • Classes can have constructors, interfaces cannot.

    • Classes can have access modifiers for their members, interfaces cannot.

    • A class can implement multiple interfaces, but can only inherit from one class.

    • Interfaces are used to achieve abstraction and multiple inheritance in Java.

    • Example: Class 'Animal' can have methods li...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. About current project

Interview Preparation Tips

Interview preparation tips for other job seekers - NA
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via AmbitionBox and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Explain the concept of multithreading and how is it differ from multiprocessing
  • Ans. 

    Multithreading allows multiple threads to exist within the context of a single process, while multiprocessing involves multiple processes running concurrently.

    • Multithreading allows multiple threads to share the same memory space and resources of a single process, while multiprocessing involves separate memory space for each process.

    • Multithreading is more lightweight and efficient compared to multiprocessing as threads ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zoho Mobile Application Developer interview:
  • Programming
  • Data Structures
  • Operating Systems
  • System Design
Interview preparation tips for other job seekers - Research the company thoroughly, tailor your resume and cover letter accordingly, practice interviewing and showcase your skill confidently

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain react dom in details
  • Ans. 

    React DOM is a package that provides methods for updating the DOM in response to React components.

    • React DOM is used to render React components to the DOM.

    • It provides methods like ReactDOM.render() to render components.

    • React DOM efficiently updates the DOM when the state of a component changes.

    • It handles events and updates the DOM accordingly.

    • React DOM is separate from React itself, allowing for flexibility in rendering

  • Answered by AI
  • Q2. Explain MVC in rails
  • Ans. 

    MVC in Rails is a software design pattern that separates the application into three main components: Model, View, and Controller.

    • Model: Represents the data and business logic of the application.

    • View: Represents the user interface of the application.

    • Controller: Acts as an intermediary between the Model and View, handling user input and updating the Model accordingly.

    • Example: In a Rails application, a User model would ha...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - brush up ror

Skills evaluated in this interview

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

Write code for micro service

Round 2 - Technical 

(1 Question)

  • Q1. Explain singleton
  • Ans. 

    Singleton is a design pattern that restricts the instantiation of a class to one object.

    • Singleton pattern ensures that a class has only one instance and provides a global point of access to it.

    • Commonly used in scenarios where only a single instance of a class is needed, such as database connections or configuration settings.

    • Implementation can involve a private constructor, a static method to access the instance, and a ...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Stacks queues data structures
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 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 

(2 Questions)

  • Q1. Project explanation,security concept question,integration basics,what are debug logs
  • Q2. Lwc lifecycle hooks and one trigger to code

Interview Preparation Tips

Topics to prepare for Salesforce Application Support Engineer interview:
  • Java
  • Lwc
Interview preparation tips for other job seekers - It's also like normal interview don't get pressure
Round 1 - One-on-one 

(1 Question)

  • Q1. Garbage collector algorithm
  • Ans. 

    Garbage collector algorithm manages memory allocation and deallocation in a program.

    • Garbage collector automatically frees up memory that is no longer in use.

    • It identifies and removes objects that are no longer referenced by the program.

    • There are different types of garbage collector algorithms such as mark-and-sweep, reference counting, and generational.

    • Java and .NET languages use garbage collector by default.

    • Garbage co...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Memory management questions

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best for new minds. Enjoy

I applied via Approached by Company and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Coding Test 

DS & Algo based programming

Round 2 - Coding Test 

Salesforce Apex coding also making use Queue and Recursive algo.

Round 3 - Technical 

(1 Question)

  • Q1. System Design and Scalable approach

Interview Preparation Tips

Topics to prepare for Google Applications Engineer interview:
  • Data Structures
  • Algorithms
  • Salesforce Apex
Interview preparation tips for other job seekers - This interview was for Application Engineer-Salesforce. Give more importance to medium difficult level competitive programming examples of LinkedList, Queue,Array from geeksforgeeks.

Oracle Interview FAQs

What are the top questions asked in Oracle Assistant Application Developer interview?

Some of the top questions asked at the Oracle Assistant Application Developer interview -

  1. Java api implementation approach and how you are connecting it from front en...read more
  2. Delete a head node from linked list given that head node is not given in list ...read more
  3. Common longest Substring from 2 or more than 2 str...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Google Interview Questions
4.4
 • 869 Interviews
Cisco Interview Questions
4.1
 • 396 Interviews
SAP Interview Questions
4.2
 • 306 Interviews
Salesforce Interview Questions
4.0
 • 270 Interviews
Adobe Interview Questions
4.0
 • 249 Interviews
View all
Senior Software Engineer
2.4k salaries
unlock blur

₹10.1 L/yr - ₹40 L/yr

Senior Consultant
2.1k salaries
unlock blur

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

₹9.5 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