Upload Button Icon Add office photos

Filter interviews by

Wonder Cars Senior HR Executive Interview Questions and Answers

Updated 21 Dec 2022

Wonder Cars Senior HR Executive Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(3 Questions)

  • Q1. Very rude HR guy ask very sensitive question like issues of family
  • Q2. Makes very personal questions.
  • Q3. Treat them as they are not favoring you by job offer.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer is not God. Be yourself while being interviewed.

Interview questions from similar companies

I applied via Referral and was interviewed before Mar 2021. There were 2 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 - Aptitude Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - Be positive and go through questions on internet

I applied via Naukri.com and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Aptitude questions and Project related questions
Round 2 - Technical 

(1 Question)

  • Q1. SQL, .NET, Reporting and case questions on real time scenarios
Round 3 - HR 

(1 Question)

  • Q1. Why this company, whereabouts of the company
  • Ans. 

    I chose this company because of its strong reputation in the software industry and its commitment to innovation.

    • The company has a track record of delivering high-quality software solutions.

    • It has a strong focus on innovation and staying ahead of industry trends.

    • The company values its employees and provides opportunities for growth and development.

    • The company has a positive work culture and fosters collaboration among t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your technical little bit as some of team members believe they know everything , but they are reluctant to understand you viewpoint on the same solution

I applied via Company Website and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. What is your DWM
  • Ans. 

    DWM stands for Desktop Window Manager, a Windows service responsible for managing visual effects and rendering of windows.

    • DWM is responsible for rendering the desktop, windows, and all associated visual effects.

    • It uses hardware acceleration to improve performance and reduce CPU usage.

    • DWM was introduced in Windows Vista and is still used in current versions of Windows.

    • Examples of visual effects managed by DWM include Ae

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - During explaining your previous job responsibilities, just link it with requirements JD.

I applied via Naukri.com and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Technical and Management questions related to my field

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview are in two round ,1st is technical and then second round is HR .and then final for Salary.

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is your Expertise in Quality

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly update your Skills and Knowledge according to market.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Java 1.8 questions
  • Q2. AWS related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I faced a challenge throughout the interview due to the interviewer's unstable internet connection. despite politely informing him about the connectivity issue multiple times (approx 10 to 15 times), the problem persisted, As a result, I missed several parts of the conversation and had to ask for clarification.
at one point the interviewer seemed annoyed, eventually, the interview concluded abruptly without proper communication.
It was disappointing that no effort was made to rectify the situation. It felt like a waste of time.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(11 Questions)

  • Q1. Difference between IOC and DI?
  • Ans. 

    IOC is a design pattern where control is inverted, while DI is a technique to achieve IOC by injecting dependencies into a class.

    • IOC stands for Inversion of Control, where the control of flow is inverted from the traditional top-down approach.

    • DI stands for Dependency Injection, a technique used to implement IOC by injecting dependencies into a class from an external source.

    • IOC is a design principle, while DI is a techn...

  • Answered by AI
  • Q2. Exception handling in the spiring Boot?
  • Ans. 

    Exception handling in Spring Boot allows developers to gracefully handle errors and provide meaningful responses to users.

    • Use @ControllerAdvice to handle exceptions globally

    • Use @ExceptionHandler to handle specific exceptions

    • Return custom error messages or responses to users

  • Answered by AI
  • Q3. @RequestBody annotation?
  • Ans. 

    Annotation used in Spring framework to bind the HTTP request body to a method parameter.

    • Used in Spring MVC to indicate that a method parameter should be bound to the body of the web request.

    • Can be used with various data types like JSON, XML, etc.

    • Helps in simplifying the process of handling request data in Spring applications.

  • Answered by AI
  • Q4. Function and BiFunction?
  • Q5. Equals and Hashcode ?
  • Q6. Type casting in the Java?
  • Ans. 

    Type casting in Java is the process of converting one data type into another.

    • Type casting can be done implicitly or explicitly in Java.

    • Implicit type casting is done when a smaller data type is converted to a larger data type, while explicit type casting is done when a larger data type is converted to a smaller data type.

    • Example of implicit type casting: int num = 10; double result = num;

    • Example of explicit type casting

  • Answered by AI
  • Q7. Intermediate and terminal operators in Java?
  • Ans. 

    Intermediate and terminal operators are used in Java streams to perform intermediate and terminal operations on elements.

    • Intermediate operators are used to transform, filter, or manipulate elements in a stream before passing them to the next operation. Examples include map(), filter(), and sorted().

    • Terminal operators are used to trigger the processing of elements in a stream and produce a result. Examples include forEa

  • Answered by AI
  • Q8. Functional interface in java?
  • Ans. 

    Functional interface in Java is an interface with only one abstract method. It can have multiple default or static methods.

    • Functional interfaces can be annotated with @FunctionalInterface to ensure they have only one abstract method.

    • Examples of functional interfaces in Java include Runnable, Callable, and ActionListener.

    • Lambda expressions can be used to implement functional interfaces concisely.

  • Answered by AI
  • Q9. Various methods in the RestApi?
  • Ans. 

    Various methods in RestApi include GET, POST, PUT, DELETE.

    • GET - Used to retrieve data from the server. Example: GET /users

    • POST - Used to send data to the server to create a new resource. Example: POST /users

    • PUT - Used to update an existing resource on the server. Example: PUT /users/1

    • DELETE - Used to delete a resource on the server. Example: DELETE /users/1

  • Answered by AI
  • Q10. Coding question find the first non repeting char in the string using java 8.
  • Ans. 

    Using Java 8, find the first non-repeating character in a string.

    • Use Java 8 streams to convert the string to a character array.

    • Use Collectors.groupingBy to group characters by count.

    • Filter out characters with count > 1 and find the first character with count 1.

  • Answered by AI
  • Q11. Find the sum of all even numbers without using inbuild methods using stream api.
  • Ans. 

    Sum of all even numbers without using inbuild methods using stream api

    • Create an array of numbers

    • Use stream to filter out even numbers

    • Use stream to sum up the filtered even numbers

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Duration : 1 hour
Topics : Java and DSA

Round 2 - Technical 

(2 Questions)

  • Q1. Linked List, Stack and Queue
  • Q2. BFS vs DFS. Graph Traversal
  • Ans. 

    BFS explores neighbors before moving to next level, while DFS explores as far as possible before backtracking.

    • BFS uses a queue to keep track of nodes to visit next, while DFS uses a stack or recursion.

    • BFS is optimal for finding shortest path in unweighted graphs, while DFS is more memory efficient.

    • BFS is typically implemented iteratively, while DFS can be implemented recursively.

    • Example: BFS is used in level order trav...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to join us
  • Q2. Where do you see yourself in next 5 years.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Java Question
  • Q2. Find out Second Highest Employee Salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Basic Java

Wonder Cars Interview FAQs

How many rounds are there in Wonder Cars Senior HR Executive interview?
Wonder Cars interview process usually has 2 rounds. The most common rounds in the Wonder Cars interview process are Resume Shortlist and One-on-one Round.
What are the top questions asked in Wonder Cars Senior HR Executive interview?

Some of the top questions asked at the Wonder Cars Senior HR Executive interview -

  1. Very rude HR guy ask very sensitive question like issues of fam...read more
  2. Makes very personal questio...read more

Tell us how to improve this page.

Wonder Cars Senior HR Executive Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Sonalika Tractors Interview Questions
3.7
 • 130 Interviews
Incheon Motors Interview Questions
4.7
 • 73 Interviews
Yamaha Motor Interview Questions
4.1
 • 68 Interviews
MG Motor Interview Questions
3.9
 • 65 Interviews
Volvo Interview Questions
4.1
 • 65 Interviews
Piaggio Interview Questions
3.5
 • 61 Interviews
Ather Energy Interview Questions
4.0
 • 56 Interviews
Volkswagen Interview Questions
4.2
 • 45 Interviews
View all
Relationship Manager
15 salaries
unlock blur

₹1.7 L/yr - ₹3.7 L/yr

Sales Executive
12 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Service Advisor
11 salaries
unlock blur

₹3 L/yr - ₹6.5 L/yr

Senior Technician
9 salaries
unlock blur

₹2.2 L/yr - ₹3.5 L/yr

Technician
8 salaries
unlock blur

₹2.2 L/yr - ₹5 L/yr

Explore more salaries
Compare Wonder Cars with

Sonalika Tractors

3.7
Compare

Ola Electric Mobility

3.3
Compare

Yamaha Motor

4.1
Compare

Daimler India Commercial Vehicles

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