Filter interviews by
I was interviewed in Dec 2024.
Sales and distribution.
Top trending discussions
posted on 11 Aug 2024
I applied via Referral and was interviewed in Nov 2023. There were 3 interview rounds.
The ice cream industry is a competitive market that offers a wide variety of frozen desserts.
The ice cream industry is a multi-billion dollar industry globally.
It includes various types of frozen desserts such as ice cream, gelato, sorbet, and frozen yogurt.
Major players in the industry include brands like Ben & Jerry's, Häagen-Dazs, and Baskin-Robbins.
The industry is highly seasonal, with higher demand during the summ...
posted on 24 May 2024
I applied via Approached by Company and was interviewed in Nov 2023. There was 1 interview round.
Group Discussion and interview questions
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 applied via Walk-in and was interviewed before Mar 2022. There were 2 interview rounds.
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 26 reviews
Rating in categories
Area Sales Manager
31
salaries
| ₹4.2 L/yr - ₹8 L/yr |
Sales Officer
14
salaries
| ₹1.8 L/yr - ₹3.5 L/yr |
Sales Executive
10
salaries
| ₹2.4 L/yr - ₹2.5 L/yr |
Field Sales Officer
8
salaries
| ₹2 L/yr - ₹3 L/yr |
Sales Coordinator
7
salaries
| ₹2.2 L/yr - ₹4.8 L/yr |
Britannia
ITC
Nestle
Hindustan Unilever