i
Oracle
Filter interviews by
File handling involves creating, reading, writing, and managing files in a computer system.
Opening a file: Use 'open(filename, mode)' to access a file. Example: 'open('data.txt', 'r')' for reading.
Reading from a file: Use 'read()' or 'readlines()' to get file content. Example: 'content = file.read()'.
Writing to a file: Use 'write(data)' to add content. Example: 'file.write('Hello, World!')'.
Closing a file: Always ...
OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.
OOPs is a way of organizing and designing code around objects
It emphasizes on encapsulation, inheritance, and polymorphism
It helps in creating reusable and modular code
Examples of OOPs languages are Java, C++, Python, etc.
Yes, an array can have elements of different data types.
An array can have elements of different data types, but it's not recommended.
It can make the code harder to read and maintain.
For example, an array can have both strings and numbers: ['apple', 5, 'banana']
Transactions in a bank involve the movement of funds between accounts or the exchange of currency.
Transactions can be initiated by customers or by the bank itself
Common types of transactions include deposits, withdrawals, transfers, and loans
Transactions are recorded in the bank's ledger and may be subject to fees or interest
Electronic transactions have become increasingly popular, such as online banking and mobil...
Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.
Data structures can be linear or non-linear
Examples of linear data structures include arrays, linked lists, and stacks
Examples of non-linear data structures include trees and graphs
Choosing the right data structure is important for optimizing performance and memory usage
Microcontrollers integrate CPU, memory, and peripherals; microprocessors focus on CPU performance and require external components.
Microcontrollers are designed for specific tasks, e.g., Arduino boards.
Microprocessors are general-purpose, e.g., Intel Core i7.
Microcontrollers have built-in memory and I/O ports; microprocessors need external components.
Microcontrollers are used in embedded systems; microprocessors ar...
A linked list is a linear data structure where each element is a separate object linked together by pointers.
Linked list is used to implement stacks, queues, and hash tables.
It is used in computer memory allocation.
It is used in image processing to represent pixels.
It is used in music player to create a playlist.
It is used in web browsers to store the history of visited web pages.
4 levels. English comprehension, aptitude, psychometry and finance
Group of 6 in each GD
Case study solving and presentation
I applied via Campus Placement and was interviewed before Jun 2023. There were 2 interview rounds.
2 DSA Question, 1- SQL Question
I applied via Campus Placement and was interviewed in May 2021. There were 3 interview rounds.
File handling involves creating, reading, writing, and managing files in a computer system.
Opening a file: Use 'open(filename, mode)' to access a file. Example: 'open('data.txt', 'r')' for reading.
Reading from a file: Use 'read()' or 'readlines()' to get file content. Example: 'content = file.read()'.
Writing to a file: Use 'write(data)' to add content. Example: 'file.write('Hello, World!')'.
Closing a file: Always close...
I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.
Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.
Data structures can be linear or non-linear
Examples of linear data structures include arrays, linked lists, and stacks
Examples of non-linear data structures include trees and graphs
Choosing the right data structure is important for optimizing performance and memory usage
A linked list is a linear data structure where each element is a separate object linked together by pointers.
Linked list is used to implement stacks, queues, and hash tables.
It is used in computer memory allocation.
It is used in image processing to represent pixels.
It is used in music player to create a playlist.
It is used in web browsers to store the history of visited web pages.
Yes, an array can have elements of different data types.
An array can have elements of different data types, but it's not recommended.
It can make the code harder to read and maintain.
For example, an array can have both strings and numbers: ['apple', 5, 'banana']
Transactions in a bank involve the movement of funds between accounts or the exchange of currency.
Transactions can be initiated by customers or by the bank itself
Common types of transactions include deposits, withdrawals, transfers, and loans
Transactions are recorded in the bank's ledger and may be subject to fees or interest
Electronic transactions have become increasingly popular, such as online banking and mobile pay...
I have worked on various projects related to software development and data analysis.
Developed a web application for a client using React and Node.js
Analyzed customer data to identify trends and improve marketing strategies
Created a machine learning model to predict customer churn for a telecom company
Implemented a data pipeline using Apache Spark for processing large datasets
Collaborated with a team to develop a mobile...
I would be thrilled to accept the offer and would work hard to excel in the consulting role.
Express gratitude and excitement for the opportunity
Assure the interviewer that you are eager to take on the role
Emphasize your commitment to working hard and excelling in the position
Thank the interviewer for considering you for the role
Top trending discussions
I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.
posted on 16 Sep 2021
I appeared for an interview before Sep 2020.
Round duration - 50 minutes
Round difficulty - Easy
This was a Data Structural round.
Given a two-dimensional array/list consisting of integers 0s and 1s, where 1 represents land and 0 represents water, determine the number of distinct islands. A group of...
Count the number of distinct islands in a 2D array of 0s and 1s.
Identify islands by performing depth-first search (DFS) on the grid
Use a set to store the shape of each island and check for duplicates
Consider translations to determine distinct islands
Round duration - 50 minutes
Round difficulty - Easy
This was a Data Structural round.
You are tasked with arranging 'N' words of varying lengths such that each line contains at most 'M' characters, with each word separated by a space. The challenge is to minimiz...
The goal is to minimize the total cost of arranging 'N' words on each line with a maximum character limit 'M'.
Calculate the cost of each line as the cube of extra space characters needed to reach 'M'.
Minimize the total cost by arranging words to fit within the character limit on each line.
Ensure each word appears fully on one line without breaking across lines.
Round duration - 60 minutes
Round difficulty - Easy
This was a System Design round.
Design a system similar to Red Bus for handling bookings and onboarding vendors and customers.
Implement a user-friendly interface for customers to search and book tickets
Create a vendor portal for vendors to manage their offerings and availability
Include payment gateway integration for secure transactions
Develop a robust backend system for managing bookings, cancellations, and refunds
Utilize a database to store user in...
Round duration - 50 minutes
Round difficulty - Easy
This was a System Design round
Round duration - 50 minutes
Round difficulty - Easy
This was an HR round.
Tip 1 : Practice as much as you can.
Tip 2 : Prepare for company, not in general.
Tip 3 : Your past work should be objective and your contribution should be very clear
Tip 1 : Keep only relevant things for the job you are applying.
Tip 2 : Minimal data with measurable contribution and effect.
A generic swap function swaps two values of any data type.
The function should take two parameters of any data type.
Use a temporary variable to store the value of one parameter.
Assign the value of the second parameter to the first parameter.
Assign the value of the temporary variable to the second parameter.
Search for an element in a rotated sorted linked list.
Find the pivot point where the list is rotated.
Divide the list into two sublists based on the pivot point.
Perform binary search on the appropriate sublist.
Handle edge cases such as empty list and list with only one element.
Search an element in a rotated sorted array
Find the pivot point where the array is rotated
Divide the array into two sub-arrays based on pivot point
Perform binary search on the appropriate sub-array
Repeat until element is found or sub-array size is 1
Given a Sudoku board, find possible numbers for an empty cell.
Iterate through empty cells and check possible numbers using row, column, and box constraints.
Use a set to keep track of possible numbers for each empty cell.
Return the set of possible numbers for the given empty cell.
Find integer average of 4 unsigned integers without typecasting
Add all the integers and divide by 4
Use bit shifting to divide by 4
Handle overflow by using long long data type
Use unsigned int data type for input
Code to identify 32 bit or 64 bit architecture of a processor
Check if the operating system is 32 bit or 64 bit
If OS is 32 bit, processor is 32 bit
If OS is 64 bit, check if processor supports 64 bit architecture
Use CPUID instruction to check if processor supports 64 bit architecture
Convert binary number to base 64 integer
Divide the binary number into groups of 6 bits
Convert each group of 6 bits to decimal
Map the decimal value to the corresponding base 64 character
Concatenate the base 64 characters to form the final integer
Creating test cases for random scenarios ensures software reliability and robustness through diverse input validation.
Identify edge cases: Test with minimum and maximum input values, e.g., an empty array vs. a large array.
Use random data: Generate random inputs to simulate real-world usage, e.g., random user names or passwords.
Test invalid inputs: Ensure the system handles unexpected inputs gracefully, e.g., negative n...
The duration of Oracle Associate Consultant interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 2 interview experiences
Difficulty level
Duration
based on 75 reviews
Rating in categories
Senior Software Engineer
2.5k
salaries
| ₹20 L/yr - ₹37 L/yr |
Principal Consultant
2.3k
salaries
| ₹20.2 L/yr - ₹35 L/yr |
Senior Consultant
2.2k
salaries
| ₹14 L/yr - ₹24 L/yr |
Senior Member of Technical Staff
1.8k
salaries
| ₹23.8 L/yr - ₹41.9 L/yr |
Software Developer
1.6k
salaries
| ₹15.2 L/yr - ₹28 L/yr |
SAP
MongoDB
Salesforce
IBM