i
Utazzo.com
Filter interviews by
I applied via Referral and was interviewed in Nov 2023. There were 2 interview rounds.
A layover flight involves a stop at an intermediate airport, while a direct flight goes directly from the origin to the destination.
A layover flight requires passengers to change planes at an intermediate airport.
A direct flight takes passengers from the origin to the destination without any stops.
Layover flights usually have longer travel times compared to direct flights.
Direct flights are often more expensive than la...
PNR stands for Passenger Name Record.
PNR is a unique alphanumeric code assigned to each passenger or group of passengers traveling on a reservation.
It contains important information about the journey, such as passenger details, flight/train details, seat assignments, and ticket status.
PNR is used by airlines, railways, and travel agencies to manage reservations and track passenger information.
It helps in facilitating c...
Pricing in GDS System involves a complex process of aggregating fares and fees from multiple airlines and suppliers.
GDS (Global Distribution System) is a computerized network used by travel agents to access real-time information about flights, hotels, car rentals, etc.
The pricing in GDS System is based on the fares and fees set by airlines and suppliers.
GDS System collects and consolidates fares and fees from multiple ...
ADM stands for Application Dependency Mapping. We decrease the risk of ADM by implementing proper monitoring and documentation.
ADM is the process of identifying and mapping the dependencies between different applications and systems within an organization.
By having a clear understanding of the dependencies, we can minimize the risk of disruptions and failures.
To decrease the risk of ADM, we need to implement proper mon...
A Dupe PNR refers to a duplicate Passenger Name Record in the travel industry.
A Dupe PNR is created when multiple reservations are made for the same passenger or itinerary.
It can occur due to system errors, manual mistakes, or intentional fraud.
Dupe PNRs can cause confusion, overbooking, and discrepancies in passenger information.
Travel agents and airlines have processes in place to identify and resolve Dupe PNRs.
Examp...
I appeared for an interview before Jun 2024, where I was asked the following questions.
I served as a Senior Product Manager at Tech Innovations, leading cross-functional teams to develop cutting-edge payment solutions.
Led a team of 10 in the development of a mobile payment app that increased user engagement by 30%.
Collaborated with marketing to launch a campaign that resulted in a 25% increase in new user sign-ups.
Implemented agile methodologies, reducing product development cycles by 15%.
I am passionate about travel, technology, and enhancing customer experiences in the travel industry.
Travel fosters cultural exchange; I want to facilitate meaningful connections between people.
The industry is rapidly evolving with technology; I am excited to contribute to innovations like contactless payments.
I believe in the power of travel to create unforgettable experiences; I want to help people explore the world.
W...
I bring a unique blend of skills, experience, and passion for innovation that aligns perfectly with Visa's goals and values.
Proven track record in driving successful projects, such as leading a team that increased operational efficiency by 30%.
Strong analytical skills demonstrated through data-driven decision-making that improved customer satisfaction scores by 15%.
Excellent communication abilities, having successfully...
I appeared for an interview before Jun 2024, where I was asked the following questions.
I am passionate about accounting and eager to contribute my skills to your team while growing professionally in a dynamic environment.
I admire your company's commitment to integrity and transparency in financial reporting.
I am excited about the opportunity to work with a talented team and learn from experienced professionals.
I believe my skills in financial analysis and budgeting can add value to your organization.
I am...
My career goals include advancing my accounting skills, achieving certifications, and contributing to financial strategy in a leadership role.
Pursue CPA certification to enhance my professional credibility and expertise.
Gain experience in financial analysis to support strategic decision-making.
Aim for a managerial position within five years to lead a team and drive financial performance.
Continuously update my knowledge...
I am motivated by challenges, continuous learning, and the opportunity to contribute to a team's success in achieving financial goals.
I thrive on challenges, such as resolving complex financial discrepancies, which enhance my problem-solving skills.
Continuous learning motivates me; I regularly pursue professional development courses to stay updated on accounting standards.
I find motivation in teamwork, collaborating wi...
My dream job is to be a senior accountant in a dynamic firm, where I can lead projects and mentor junior staff while ensuring financial accuracy.
Work in a collaborative environment that values teamwork and innovation.
Lead financial projects that drive strategic decision-making, like budgeting for new initiatives.
Mentor junior accountants, helping them grow their skills and confidence.
Utilize advanced accounting softwar...
I applied via Recruitment Consulltant and was interviewed before Dec 2022. There were 2 interview rounds.
I applied via Referral and was interviewed before Jul 2021. There were 2 interview rounds.
Top trending discussions
posted on 24 Sep 2024
I applied via Recruitment Consulltant and was interviewed in Aug 2024. There were 4 interview rounds.
Qualitative, Logical and IOS related question
Qualitative, Logical and IOS related question
I appeared for an interview in Nov 2020.
Round duration - 90 minutes
Round difficulty - Medium
Basically a hackerrank link was shared and I was suppose to take the test within a day. Online Test comprised of 3 algorithmic Questions. Duration of round was 90 minutes.
Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...
The task is to find the total number of ways to make change for a specified value using given denominations.
Use dynamic programming to solve this problem efficiently.
Create a 2D array to store the number of ways to make change for each value up to the specified value.
Iterate through the denominations and update the array based on the current denomination.
The final answer will be in the last cell of the array correspond...
Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This...
Find the length of the longest strictly increasing subsequence in an array of integers.
Use dynamic programming to solve this problem efficiently.
Initialize an array to store the length of the longest increasing subsequence ending at each index.
Iterate through the array and update the length of the longest increasing subsequence for each element.
Return the maximum value in the array as the length of the longest increasi...
Round duration - 70 minutes
Round difficulty - Medium
It was a 60 minute virtual face 2 face round with 2 senior software engineers of the company. Interview started with brief introduction by the engineers followed by my Introduction. Interview started at 3:00 P.M and lasted till 4:10 P.M. Google Doc was used for coding purposes.
Given a sorted array that has been rotated, the task is to find the index of a specific element. The array is initially sorted in ascending order and then rotated ...
Search for an element in a rotated sorted array in O(logN) time complexity.
Implement binary search to find the pivot point where rotation occurs.
Divide the array into two subarrays and perform binary search on the appropriate subarray.
Handle cases where the element lies in the left or right subarray after rotation.
Given an array parent
which represents a binary tree, the parent-child relationship is defined by (PARENT[i], i)
, meaning that the parent of i
is PAR...
Construct a binary tree from parent array representation ensuring specific conditions are met.
Iterate through the parent array to create the binary tree
Handle cases where a node has both left and right children
Ensure left child is smaller than the right child if both exist
If a node has only one child, make it the left child
Round duration - 60 minutes
Round difficulty - Medium
It was a face 2 face algorithmic round taken by Senior Backend engineer. Interview Round Started at around 2:00 P.M and lasted till 3:05 P.M. Interview started with the brief introduction followed by 2 algorithmic questions. Interviewer was focusing problem solving skills. After discussing the approach, Coding part was to be done on google doc.
Given an N*M matrix filled with integer numbers, determine the maximum sum that can be obtained from a path starting from any cell in the first row to any cell in the last row...
Find the maximum sum that can be obtained from a path in a matrix from the first row to the last row.
Use dynamic programming to keep track of the maximum sum at each cell in the matrix.
Consider moving down, diagonally left, and diagonally right to calculate the maximum sum.
Start from the second row and update each cell with the maximum sum from the cell above it and the diagonally adjacent cells.
Continue this process u...
Given an array ARR
consisting of 'N' positive integers, determine if it is possible to partition the array into two subsets such that the sum of the elements in both sub...
The problem is to determine if it is possible to partition an array into two subsets with equal sum.
Use dynamic programming to solve this problem efficiently.
Create a 2D array to store if a subset with a particular sum is possible.
Check if it is possible to form a subset with half the total sum of the array.
Round duration - 120-130 minutes
Round difficulty - Medium
It was a face 2 face round which was taken by Line manager. Interview started at 11:00 A.M and lasted around 2 hours approx. Interviewer was very friendly and supportive. Interview started with brief introduction of the interviewer followed by mine. Then a System design question was asked by the interviewer over google doc. Interviewer was focusing on how I'm approaching the problem. Overall It was a good experience.
Tip 1 : We should focus on other topics apart from DSA. Knowledge of LLD, HLD, OOPS and other subjects also plays a very important role.
Tip 2 : Communication also plays a key role in interviews. We should be able to explain our solution precisely and also able to catch hints given by Interviewer.
Tip 3 : While practising DSA focus should be on logic building rather than cramming the solution because proper reasoning will hep you to solve other new questions.
Tip 4 : Always remember interview is two way communication.
Tip 1 : Mention only those projects and skills in which you are confident.
Tip 2 : Resume should be of one page(preferrable).
I applied via Referral and was interviewed in Feb 2022. There were 4 interview rounds.
Hackerrank test : 3 questions
1. Simple Array
2. Recursion followed by DP
3. DFS/BFS Graph Question
IRCTC reserves seats using a complex system of availability checks and booking processes.
IRCTC uses a combination of real-time availability checks and booking processes to reserve seats.
The system checks for availability of seats in real-time and reserves them for a short period of time while the booking process is completed.
IRCTC uses a locking mechanism to ensure that the same seat is not booked by multiple users at ...
Makemytrip blocks seat for 15 mins by using a hold on the seat inventory.
Makemytrip uses a hold on the seat inventory to block the seat for 15 mins.
If the payment doesn't go through, the hold is released and the seat becomes available again.
This ensures that the seat is not booked by someone else during the payment process.
The hold time can vary depending on the airline's policy.
Makemytrip also sends reminders to compl...
Checked exceptions are checked at compile-time while unchecked exceptions are not.
Checked exceptions are those that are checked at compile-time and must be handled by the programmer.
Unchecked exceptions are those that are not checked at compile-time and can be handled or not handled by the programmer.
Checked exceptions are subclasses of Exception class while unchecked exceptions are subclasses of RuntimeException class...
Comparison of in-memory and distributed databases
In-memory databases are faster due to data being stored in RAM
Distributed databases offer better scalability and fault tolerance
In-memory databases are limited by available RAM
Distributed databases require more complex setup and maintenance
In-memory databases are suitable for real-time applications
Distributed databases are suitable for large-scale applications with high ...
I appeared for an interview before Mar 2023.
LC Medium+ easy questions
I applied via Job Portal and was interviewed in Feb 2024. There were 2 interview rounds.
1. Slowest Key
2. Junggle Box
3. Kind of Sum
I have experience working on various software projects in different industries.
Developed web applications using Java, Spring Boot, and Angular for a finance company
Worked on mobile app development using React Native for a healthcare startup
Implemented machine learning algorithms in Python for a data analytics project
based on 3 interview experiences
Difficulty level
Duration
based on 20 reviews
Rating in categories
Assistant Manager
3
salaries
| ₹5.5 L/yr - ₹6 L/yr |
Accountant
3
salaries
| ₹2.5 L/yr - ₹5 L/yr |
Sales Manager
3
salaries
| ₹5 L/yr - ₹8.4 L/yr |
P&O Cruises
Costa Cruise Lines
Carzonrent
Fragomen Immigration Services