i
Pickyourtrail
Filter interviews by
Clear (1)
I applied via Campus Placement and was interviewed in Aug 2022. There were 2 interview rounds.
They asked about controversial topics being spoken in the society
Sales is about closing deals and generating revenue, while marketing is about creating awareness and interest in a product or service.
Sales involves direct interaction with customers to persuade them to make a purchase
Marketing involves creating a brand image, advertising, and promoting products or services
Sales is focused on short-term goals, while marketing is focused on long-term goals
Sales is more about personal re...
Top trending discussions
I applied via Walk-in and was interviewed before Aug 2021. There were 2 interview rounds.
General Questions regards my education questions and answers, hobbies and some sport's questions.
I applied via Referral and was interviewed before Apr 2023. There were 3 interview rounds.
I handle escalations by actively listening to the customer, empathizing with their situation, and finding a solution that meets their needs.
Listen to the customer's concerns without interrupting
Acknowledge their feelings and show empathy
Offer solutions or alternatives to resolve the issue
Escalate to a supervisor if necessary
Sales refers to the process of persuading a potential customer to purchase a product or service.
Sales involves identifying customer needs and demonstrating how a product or service can meet those needs.
It also includes negotiating prices, terms, and agreements with customers.
Sales professionals often use various techniques such as cold calling, networking, and follow-up to close deals.
Building relationships with custom...
posted on 3 Jan 2025
I applied via Recruitment Consulltant and was interviewed in Dec 2024. There were 2 interview rounds.
Our company has 100 employees working in various departments.
We have a total of 100 workers in our company.
The employees are distributed across different departments such as sales, marketing, operations, and finance.
Each department has a varying number of employees based on their functions and workload.
Our company opened in 2005, specializing in luxury travel experiences.
Opened in 2005
Specializes in luxury travel experiences
Our company opened in 2005 and has been providing travel services for over 15 years.
Our company was established in 2005
We have been in operation for over 15 years
We have a proven track record of providing travel services since our opening
I applied via LinkedIn and was interviewed in Jun 2024. There were 3 interview rounds.
I am a passionate traveler with extensive experience in planning and organizing trips for clients.
I have a strong knowledge of various travel destinations and accommodations
I excel in customer service and communication skills
I am proficient in using booking platforms and travel software
I have successfully planned and executed complex travel itineraries for clients
End to end operation refers to the complete process from start to finish in a particular operation or project.
Start with understanding client requirements
Research and plan the trip itinerary
Book flights, accommodations, and activities
Provide necessary travel documents and information to the client
Ensure smooth travel experience and handle any issues that may arise
Follow up with the client for feedback and future bookin
I applied via Campus Placement and was interviewed in Dec 2024. There were 3 interview rounds.
Basic Aptitude question were asked.
Great gd on Remote work vs Traditional work
I am a recent graduate with a degree in Business Administration and a passion for leadership and problem-solving.
Graduated with a degree in Business Administration
Passionate about leadership and problem-solving
Completed internships in marketing and finance
Led a team project to increase sales by 20%
I am confident in my abilities and believe I can bring valuable skills to the team.
I have a strong work ethic and am dedicated to achieving success.
I am a quick learner and adapt well to new environments.
I have relevant experience and skills that align with the requirements of the role.
I applied via Monster and was interviewed in Dec 2017. There was 1 interview round.
I was interviewed before Feb 2021.
Round duration - 65 minutes
Round difficulty - Easy
There were 2 sections –
Aptitude and Logical Reasoning and MCQ based on Java question ,C++, coding for 20 min and 45 min respectively.
Section A- Not very difficult to clear this round although less time was a problem.
Section B- It contains 15 multiple choice question on c/c++,java and 4 simple coding questions
Determine if a given singly linked list of integers forms a cycle or not.
A cycle in a linked list occurs when a node's next
points back to a previous node in the ...
Detect if a singly linked list forms a cycle by checking if a node's next pointer points back to a previous node.
Traverse the linked list using two pointers, one moving at double the speed of the other.
If the two pointers meet at any point, there is a cycle in the linked list.
Use Floyd's Cycle Detection Algorithm for O(N) time complexity and O(1) space complexity.
Round duration - 75 minutes
Round difficulty - Medium
It was an online coding test in which 3 coding question were given.
Given two strings, S
and X
, your task is to find the smallest substring in S
that contains all the characters present in X
.
S = "abdd", X = "bd"
Find the smallest substring in string S that contains all characters in string X.
Iterate through string S and keep track of characters in X found in a window
Use two pointers to maintain the window and slide it to find the smallest window
Return the smallest window containing all characters in X
Given a non-decreasing sorted array ARR
of N
positive numbers, determine the smallest positive integer that cannot be expressed as the sum of elements from...
Find the smallest positive integer that cannot be expressed as the sum of elements from any proper subset of a non-decreasing sorted array of positive numbers.
Start with the smallest possible integer that cannot be represented, which is 1.
Iterate through the array and update the smallest integer that cannot be represented.
If the current element is greater than the smallest integer that cannot be represented, return tha...
Given a square chessboard of size 'N x N', determine the minimum number of moves a Knight requires to reach a specified target position from its initial position...
Calculate the minimum number of moves a Knight needs to reach a target position on a chessboard.
Implement a function that takes knight's starting position, target position, and chessboard size as input
Use breadth-first search algorithm to find the shortest path for the Knight
Consider all possible 8 movements of the Knight on the chessboard
Return the minimum number of moves required for the Knight to reach the target po
Round duration - 60 minutes
Round difficulty - Easy
It started with a discussion on the programs given in coding round. They asked me about my interest field after that they directly jumped into Networking, Linux and Ethical Hacking part looking my interest domain. They asked me various question on networking and linux.
Then they asked me to code a simple c program
Given a singly linked list of integers, return the head of the reversed linked list.
Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
Reversed link...
Reverse a singly linked list of integers and return the head of the reversed linked list.
Iterate through the linked list and reverse the pointers to point to the previous node.
Keep track of the current, previous, and next nodes while reversing the linked list.
Update the head of the reversed linked list as the last node encountered during reversal.
FTP uses port number 21 and SMTP uses port number 25.
FTP uses port 21 for data transfer and port 20 for control information.
SMTP uses port 25 for email communication.
Understanding port numbers is important for network communication.
The OSI Model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven layers.
The OSI Model stands for Open Systems Interconnection Model.
It consists of seven layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.
Each layer has specific functions and communicates with the adjacent layers.
Example: Layer 1 (Physical) deals with physi...
To copy files in Linux, you can use the 'cp' command.
Use the 'cp' command followed by the source file and destination directory to copy a file.
To copy a directory and its contents, use the '-r' flag with the 'cp' command.
You can also use wildcards like '*' to copy multiple files at once.
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.
Travel Consultant
50
salaries
| ₹0 L/yr - ₹0 L/yr |
Management Trainee
20
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Developer
7
salaries
| ₹0 L/yr - ₹0 L/yr |
Finance Manager
7
salaries
| ₹0 L/yr - ₹0 L/yr |
Sales Manager
7
salaries
| ₹0 L/yr - ₹0 L/yr |
MakeMyTrip
Cleartrip
Yatra
Goibibo