i
Amadeus
Filter interviews by
I applied via Company Website and was interviewed in Mar 2024. There was 1 interview round.
I have experience in system design for current product, focusing on scalability and efficiency.
Analyze current system architecture and identify areas for improvement
Consider scalability, performance, security, and user experience in design
Collaborate with cross-functional teams to gather requirements and ensure alignment
Implement best practices and technologies to optimize system design
Regularly review and iterate on s...
NoSQL is a non-relational database management system that allows for flexible and scalable data storage, while RDBMS is a traditional relational database management system with structured data storage.
NoSQL databases are schema-less, allowing for easy scalability and flexibility in data storage.
RDBMS databases use structured query language (SQL) for data manipulation and retrieval.
NoSQL databases are better suited for ...
Top trending discussions
I applied via LinkedIn and was interviewed before Aug 2023. There were 2 interview rounds.
I consider this organization because of its strong reputation, innovative projects, and commitment to employee development.
Strong reputation in the industry
Innovative projects and initiatives
Commitment to employee development and growth opportunities
In the immediate term, I aim to excel in my new role as Senior Manager. In the long term, I aspire to take on more leadership responsibilities and contribute significantly to the company's growth.
Immediate term goal: Excel in new role as Senior Manager
Long term goal: Take on more leadership responsibilities and contribute to company's growth
Seek opportunities for professional development and growth within the organizat...
I will establish clear guidelines, disclose any potential conflicts, and prioritize the best interest of the organization.
Establish clear guidelines and policies regarding conflict of interest
Encourage open communication and disclosure of any potential conflicts
Prioritize the best interest of the organization over personal interests
Recuse myself from decision-making processes where a conflict exists
Seek advice from a h...
I will ensure DHCP servers are redundant and have failover mechanisms in place to maintain network connectivity.
Implementing DHCP server clustering for automatic failover
Configuring DHCP split scopes for load balancing
Utilizing DHCP relay agents to ensure DHCP requests are forwarded to multiple servers
Regularly monitoring DHCP server performance and availability
AD replication is the process of copying changes in Active Directory from one domain controller to another.
AD replication ensures that all domain controllers in a network have consistent and up-to-date information.
Replication occurs between domain controllers within the same site or between sites.
Site topology defines the replication connections between sites and helps optimize replication traffic.
Bridgehead servers ar...
A pac file is a configuration file used by web browsers to automatically choose the appropriate proxy server for a given URL.
Pac file stands for Proxy Auto-Configuration file.
It contains JavaScript functions that define the rules for choosing a proxy server based on the URL being accessed.
Pac files are used by web browsers to automatically select the most suitable proxy server for a given URL.
Pac files can be hosted on...
Managing stakeholders involves identifying their needs, communicating effectively, and building strong relationships.
Identify key stakeholders and their interests
Communicate regularly and transparently
Build trust and rapport through active listening and responsiveness
Address concerns and conflicts proactively
Involve stakeholders in decision-making processes
Monitor and evaluate stakeholder engagement
Adjust strategies as...
I applied via LinkedIn and was interviewed in Aug 2023. There was 1 interview round.
To design a schema that can scale up to billions of rows, consider partitioning, indexing, denormalization, and distributed systems.
Partition the data to distribute it across multiple servers or shards.
Use indexing techniques to optimize query performance.
Consider denormalizing the schema to reduce joins and improve read performance.
Utilize distributed systems and parallel processing to handle large data volumes.
Implem...
Case study including presentation on modeling techniques used
I applied via Monster and was interviewed before Apr 2020. There was 1 interview round.
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...
I appeared for an interview before Mar 2021.
Round duration - 45 minutes
Round difficulty - Medium
Technical Interview round with questions on DSA.
You are given a string of length N
. Your task is to reverse the string word by word. The input may contain multiple spaces between words and may have leading o...
Reverse words in a string while handling leading, trailing, and multiple spaces.
Split the input string by spaces to get individual words
Reverse the order of the words
Join the reversed words with a single space in between
Handle leading, trailing, and multiple spaces appropriately
You are given a stack of integers. Your task is to reverse the stack using recursion without using any extra space other than the internal stack space used due to recursion...
Reverse a stack using recursion without using any extra space other than the internal stack space.
Use recursion to pop all elements from the original stack and store them in function call stack.
Once the stack is empty, push the elements back in reverse order.
Base case of recursion should be when the original stack is empty.
Round duration - 45 minutes
Round difficulty - Medium
Technical Interview round with questions on DSA.
Given a binary tree, convert this binary tree into its mirror tree. A binary tree is a tree in which each parent node has at most two children. The mirror of a bin...
Convert a binary tree to its mirror tree by interchanging left and right children of all non-leaf nodes.
Traverse the binary tree in a recursive manner.
Swap the left and right children of each non-leaf node.
Continue this process until all nodes have been processed.
You are given a singly linked list with 'N' nodes, each containing integer data, and an integer 'K'. Your goal is to remove the 'K'th node counting from the end of ...
Remove the Kth node from the end of a singly linked list.
Use two pointers approach to find the Kth node from the end.
Handle edge cases like removing the head node or removing the last node.
Update the pointers to remove the Kth node and reconnect the list.
Round duration - 30 minutes
Round difficulty - Easy
Typical Managerial round.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
based on 1 interview experience
Difficulty level
based on 3 reviews
Rating in categories
Senior Software Engineer
686
salaries
| ₹17.9 L/yr - ₹37.8 L/yr |
Member Technical Staff
324
salaries
| ₹13 L/yr - ₹34 L/yr |
Software Development Engineer II
225
salaries
| ₹15.4 L/yr - ₹26 L/yr |
Senior Business Analyst
183
salaries
| ₹10 L/yr - ₹27.4 L/yr |
Software Developer
180
salaries
| ₹9.9 L/yr - ₹40 L/yr |
Oracle
Amdocs
Automatic Data Processing (ADP)
24/7 Customer