Filter interviews by
I applied via Company Website and was interviewed in Dec 2022. There were 2 interview rounds.
Top trending discussions
I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.
Reasoning and aptitude test.
posted on 8 Feb 2024
I was interviewed in Jan 2024.
The question asks about various aspects of the candidate's experience and expectations for the Territory Sales Officer role.
Turnover: Mention the annual turnover achieved in previous roles.
Market size: Discuss the size and potential of the market you have worked in.
Outlet cover: Explain the number of outlets or customers you have managed.
Total experience: State the total number of years of experience in sales.
Number of...
posted on 26 Dec 2024
I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.
I have 5 years of experience in sales, including managing a team and exceeding sales targets.
Managed a team of 10 sales representatives
Exceeded sales targets by 20% for 3 consecutive years
Implemented new sales strategies that increased revenue by 30%
I was interviewed in Jan 2025.
posted on 18 Jan 2024
I applied via Recruitment Consulltant and was interviewed in Dec 2023. There was 1 interview round.
I applied via Referral and was interviewed in Nov 2023. There were 3 interview rounds.
I applied via Walk-in and was interviewed in Aug 2023. There were 3 interview rounds.
The last product I sold at my previous company was a cutting-edge CRM software tailored for small businesses.
Successfully demonstrated the software's features and benefits to potential clients
Negotiated pricing and contract terms with interested businesses
Provided training and ongoing support to clients post-sale
I applied via Walk-in and was interviewed before Jan 2024. There were 4 interview rounds.
Gl bbbbbzbbsnsnsnsnsnndnd
Here's a simpler version of the Selection Sort code:
#include
int main() {
int n, i, j, minIndex, temp;
// Input array size
printf("Enter the size of the array: ");
scanf("%d", &n);
int arr[n];
// Input array elements
printf("Enter %d elements: ", n);
for (i = 0; i < n; i++) {
scanf("%d", &arr[i]);
}
// Selection Sort
for (i = 0; i < n - 1; i++) {
minIndex = i;
for (j = i + 1; j < n; j++) {
if (arr[j] < arr[minIndex]) {
minIndex = j;
}
}
// Swap
temp = arr[minIndex];
arr[minIndex] = arr[i];
arr[i] = temp;
}
// Output sorted array
printf("Sorted array: ");
for (i = 0; i < n; i++) {
printf("%d ", arr[i]);
}
return 0;
}
Key Features of the Code:
Fewer comments for simplicity.
Uses basic variable names.
Easy to follow logic.
Interview experience
based on 30 reviews
Rating in categories
Senior Analyst
158
salaries
| ₹7 L/yr - ₹23 L/yr |
Consultant
148
salaries
| ₹12.2 L/yr - ₹31.4 L/yr |
Teritory Sales Officer
114
salaries
| ₹4.5 L/yr - ₹8.6 L/yr |
Analyst
108
salaries
| ₹4.8 L/yr - ₹13.5 L/yr |
Senior Executive
97
salaries
| ₹4.2 L/yr - ₹12.5 L/yr |
Kellogg
Nestle
Britannia
ITC