Upload Button Icon Add office photos

Filter interviews by

USG Automobiles - India Interview Questions and Answers

Updated 18 Jul 2022

USG Automobiles - India Interview Experiences

1 interview found

I applied via Newspaper Ad and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Tell us about a periodic service
  • Ans. 

    Periodic service refers to regular maintenance or check-ups performed on a product or equipment.

    • It helps to ensure that the product or equipment is functioning properly and efficiently.

    • It can prevent potential problems or breakdowns in the future.

    • Examples include oil changes for cars, cleaning and maintenance of HVAC systems, and regular check-ups for medical equipment.

    • Periodic service schedules may vary depending on t...

  • Answered by AI
  • Q2. How to assure a customer about best quality service
  • Ans. 

    Assure customers of best quality service by providing guarantees, offering refunds or discounts, and consistently meeting or exceeding expectations.

    • Provide clear guarantees of service quality

    • Offer refunds or discounts for any issues or problems

    • Consistently meet or exceed customer expectations

    • Communicate regularly with customers to ensure satisfaction

    • Train customer care executives to handle customer complaints effective

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Fill out a form for insurance claim & complete all papers

Interview Preparation Tips

Interview preparation tips for other job seekers - update yourself with latest knowledge of 2 wheelers

Customer Care Executive Interview Questions asked at other Companies

Q1. What would you do if you win 1billion dollar lottey?
View answer (39)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. C and Cpp all concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. DSA - Linked List, Array and Strings
Round 2 - HR 

(1 Question)

  • Q1. Why should we hire you
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What is hyperparameter tuning?
  • Ans. 

    Hyperparameter tuning is the process of selecting the best set of hyperparameters for a machine learning model.

    • Hyperparameters are parameters that are set before the learning process begins.

    • Hyperparameter tuning involves adjusting hyperparameters to optimize the model's performance.

    • Common techniques for hyperparameter tuning include grid search, random search, and Bayesian optimization.

  • Answered by AI
  • Q2. How do we train neural networks?
  • Ans. 

    Neural networks are trained using algorithms that adjust the weights and biases of the network based on the input data and desired output.

    • Neural networks are trained using a process called backpropagation, where the error between the predicted output and the actual output is used to adjust the weights and biases of the network.

    • Training data is fed into the neural network, and the network's output is compared to the des...

  • Answered by AI
  • Q3. What is overfitting?
  • Ans. 

    Overfitting occurs when a machine learning model learns the training data too well, including noise and outliers, leading to poor generalization on new data.

    • Overfitting happens when a model is too complex and captures noise in the training data.

    • It can be identified when a model performs well on training data but poorly on unseen data.

    • Techniques to prevent overfitting include cross-validation, regularization, and early ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join. Too much politics and racism. They only prefer regional candidates.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude was quite easy with simple python questions

Round 2 - Coding Test 

Asked basic questions on numpy and pandas

Interview Preparation Tips

Topics to prepare for Seagate Intern interview:
  • Python
  • SQL
Interview preparation tips for other job seekers - Prepare for basic questions dont stress too much
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 rounds online, dsa, hr

Round 2 - One-on-one 

(2 Questions)

  • Q1. Dsa on dp topic
  • Q2. Dsa on dp topics
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was online coding test consist of 2 question
One from DP and other graph

Round 2 - Coding Test 

One question of DP within in 45 min time constraints

Round 3 - Technical 

(1 Question)

  • Q1. Floor value of square root of a number
  • Ans. 

    Floor value of square root of a number is the largest integer less than or equal to the square root.

    • The floor value of square root of a number can be found using mathematical functions like floor() or integer division.

    • For example, the floor value of square root of 16 is 4, as sqrt(16) = 4.

    • For non-perfect square numbers, the floor value of square root can be calculated using approximation methods.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through DSA and core subjects

Intern Interview Questions & Answers

Seagate user image Shivani Mukunde

posted on 1 Aug 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Python program questions
  • Q2. OOPS based programming questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q2. Find missing number from nth number array.
  • Ans. 

    Find missing number from nth number array.

    • Iterate through the array and calculate the sum of all numbers

    • Calculate the sum of numbers from 1 to n using the formula n*(n+1)/2

    • Subtract the sum of array from the sum of numbers from 1 to n to find the missing number

  • Answered by AI
  • Q3. Explain inheritance and it types
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows a class to reuse code from another class.

    • Types of inheritance include single inheritance, where a class inherits from only one parent class, and multiple inheritance, where a class inherits from multiple parent classes.

    • Example: Class B inherits from Class A, so Class B can access

  • Answered by AI
  • Q4. Find 2nd max elements from aaray
  • Ans. 

    Find 2nd max element from array of strings

    • Sort the array in descending order

    • Skip the first element (max element)

    • Return the second element

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself

USG Automobiles - India Interview FAQs

How many rounds are there in USG Automobiles - India interview?
USG Automobiles - India interview process usually has 3 rounds. The most common rounds in the USG Automobiles - India interview process are Resume Shortlist, Technical and HR.
What are the top questions asked in USG Automobiles - India interview?

Some of the top questions asked at the USG Automobiles - India interview -

  1. how to assure a customer about best quality serv...read more
  2. tell us about a periodic serv...read more
  3. fill out a form for insurance claim & complete all pap...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

CGS Interview Questions
3.6
 • 25 Interviews
KLA-Tencor Interview Questions
4.0
 • 18 Interviews
Seagate Interview Questions
3.3
 • 17 Interviews
TRIGO Group Interview Questions
2.7
 • 13 Interviews
P&O Cruises Interview Questions
4.1
 • 10 Interviews
B4S Solutions Interview Questions
3.9
 • 9 Interviews
Nando's Interview Questions
3.8
 • 6 Interviews
View all

USG Automobiles - India Reviews and Ratings

based on 8 reviews

1.8/5

Rating in categories

2.1

Skill development

2.3

Work-life balance

1.3

Salary

1.6

Job security

1.5

Company culture

1.3

Promotions

1.4

Work satisfaction

Explore 8 Reviews and Ratings
Compare USG Automobiles - India with

Recipharm Pharmaservices

3.9
Compare

P&O Cruises

4.1
Compare

Abbott Nutrition International

3.9
Compare

B4S Solutions

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview