Upload Button Icon Add office photos

Filter interviews by

Wynncom Digital Devices Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Telephonic Call 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Your notice period , your work profile etc
Round 2 - Aptitude Test 

2 rounds of apti, 1 situation based questions, other normal maths, reasoning apti test around 1.3 hours long

Round 3 - One-on-one 

(3 Questions)

  • Q1. Explain your profile , what dod you do ?
  • Q2. Why should we hire you explain in 1 minute
  • Q3. How have you contributed to profitability of distributors
Round 4 - One-on-one 

(3 Questions)

  • Q1. Introduce yourself , then questions related to my previous job, explain the profile, etc
  • Q2. Why are you leaving your current organisation
  • Q3. Questions related to mechanical engg and cars, then general GK based questions related to pollution norms, industry stats, MSIL market share etc
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in

Round 1 - Technical 

(9 Questions)

  • Q1. What does a 4G GSM network diagram illustrate?
  • Q2. What is beamwidth in the context of antenna theory?
  • Q3. What steps would you take to observe the field if you were to visit it?
  • Q4. What is a threshold?
  • Q5. What is Voltage Standing Wave Ratio (VSWR)?
  • Q6. What is MIMO (Multiple Input Multiple Output) technology?
  • Q7. What is an E-Node B?
  • Q8. Why is a Base Station Controller (BSC) unnecessary in a 4G network?
  • Q9. What are the uplink and downlink speeds in a 4G network?
Round 2 - HR 

(3 Questions)

  • Q1. What reasons can you provide that would support the decision to hire you?
  • Q2. Can you provide details about your family and academic background?
  • Q3. What motivates you to want to join our organization?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

It was an aptitude test that included coding and various logical questions.

Round 2 - Technical 

(4 Questions)

  • Q1. Domain questions
  • Q2. Project level questions
  • Q3. Mid level python questions
  • Q4. Devops questions
Round 3 - Technical 

(2 Questions)

  • Q1. Scenario based question
  • Q2. DevSecOps Questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial Round. It was a casual discussion though about the project and role level activities.
Round 5 - HR 

(1 Question)

  • Q1. Its was just a formality

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared to answer questions regarding your role and domain expertise, as well as have a basic understanding of various logical concepts.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It's walkin, so they conducted 1 technical mcqs round.

Round 2 - Technical 

(11 Questions)

  • Q1. Multi threading
  • Q2. Internal working of hashmap
  • Ans. 

    HashMap in Java is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values based on keys.

    • HashMap uses an array of buckets to store key-value pairs.

    • Keys are hashed to determine the index in the array where the key-value pair will be stored.

    • In case of hash collisions, a linked list or a balanced tree is used to store multiple key-value pairs in the same bucket.

    • HashMap allows null keys...

  • Answered by AI
  • Q3. Spring batch related
  • Q4. Non repeating characters in a array
  • Ans. 

    Function to find and return all non-repeating characters in an array of strings.

    • Iterate through the array and count the occurrences of each character using a HashMap.

    • Then iterate through the array again and check if the count of each character is 1, if so add it to the result list.

    • Return the list of non-repeating characters.

  • Answered by AI
  • Q5. 3rd highest salary
  • Ans. 

    To find the 3rd highest salary in a database, we can use a SQL query with the 'LIMIT' and 'OFFSET' keywords.

    • Use a SQL query with 'ORDER BY salary DESC' to sort the salaries in descending order.

    • Use 'LIMIT 1 OFFSET 2' to skip the first two highest salaries and retrieve the third highest salary.

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1 OFFSET 2;

  • Answered by AI
  • Q6. Qualifier vs primary
  • Ans. 

    A qualifier in Java is used to specify additional information about a primary, which is the main data type or variable.

    • A primary in Java is the main data type or variable, while a qualifier provides additional information about the primary.

    • Qualifiers can be used to modify the behavior or characteristics of a primary.

    • For example, in Java, 'final' is a qualifier that can be used to make a variable constant.

  • Answered by AI
  • Q7. Controller vs restcontroller
  • Ans. 

    The main difference is that @RestController is a specialized version of @Controller that is used for RESTful web services.

    • Both @Controller and @RestController are used in Spring MVC to handle HTTP requests, but @RestController is specifically used for RESTful web services.

    • @Controller is used to create web pages, while @RestController is used to return data in JSON or XML format.

    • @RestController is a convenience annotati...

  • Answered by AI
  • Q8. Spring boot annotataions
  • Q9. Oops concepts with examples
  • Ans. 

    OOP concepts include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class Dog extends Animal.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorphism: Ability for objects to be treated as instances of their paren...

  • Answered by AI
  • Q10. Spring batch configuration
  • Q11. They covered all java, spring and Microservices
Round 3 - Technical 

(4 Questions)

  • Q1. Microservices architecture
  • Q2. How do Microservices communicate
  • Ans. 

    Microservices communicate with each other through various communication protocols like HTTP, messaging queues, and gRPC.

    • Microservices can communicate over HTTP using RESTful APIs.

    • Messaging queues like RabbitMQ or Kafka can be used for asynchronous communication between microservices.

    • gRPC is a high-performance, open-source RPC framework that can be used for communication between microservices.

    • Service discovery mechanism...

  • Answered by AI
  • Q3. How to access the Microservice end point
  • Ans. 

    Microservice endpoints can be accessed using HTTP requests with the appropriate URL

    • Use HTTP methods like GET, POST, PUT, DELETE to interact with the microservice

    • Construct the URL with the base URL of the microservice and the specific endpoint path

    • Include any necessary headers or parameters in the request for authentication or data filtering

  • Answered by AI
  • Q4. Why we use microservices
  • Ans. 

    Microservices allow for modular, scalable, and flexible software development by breaking down applications into smaller, independent services.

    • Microservices enable easier maintenance and updates as each service can be developed, deployed, and scaled independently.

    • They improve fault isolation, as failures in one service do not necessarily affect the entire application.

    • Microservices promote agility and faster time-to-mark...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Case Study 

2022 Bsc. And de pharma

Round 2 - One-on-one 

(4 Questions)

  • Q1. 1Employers may ask what you dislike about your current or previous job to determine whether you're going to be happy in a new position with their company. They want to know if the new position can provide ...
  • Q2. Employers may ask what you dislike about your current or previous job to determine whether you're going to be happy in a new position with their company. They want to know if the new position can provide y...
  • Q3. If you meant my current job, I like almost everything about the job. Colleagues are mostly friendly & helpful with job related matters. Bosses are understanding and reasonable. They provide you everything ...
  • Q4. If you meant my current job, I like almost everything about the job. Colleagues are mostly friendly & helpful with job related matters. Bosses are understanding and reasonable. They provide you everything ...
Round 3 - Case Study 

2022 BSc.. And De pharma running.

Interview Preparation Tips

Interview preparation tips for other job seekers - Quality control
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. How to verify car is Major accidental
  • Ans. 

    To verify if a car is major accidental, check for signs of extensive damage and repair work.

    • Look for mismatched paint or panels indicating repair work

    • Check for signs of frame damage or structural issues

    • Inspect for any airbag deployment or replacement

    • Review the vehicle history report for any past accidents

    • Consult with a professional mechanic or body shop for a thorough inspection

  • Answered by AI
  • Q2. How to check apron replace
  • Ans. 

    To check apron replace, inspect for wear and tear, measure thickness, check for cracks or damage, and ensure proper alignment.

    • Inspect apron for wear and tear

    • Measure thickness of apron material

    • Check for cracks or damage on the apron

    • Ensure proper alignment of the apron

  • Answered by AI
  • Q3. 1 check car piller roboting punching are proper visible aur not than confirm car are accidental aur not ..
  • Q4. Check apron replace1 point check apron selent are are original and 2 roboting punching than confirm apron replace ya repair..
  • Q5. Check uppar member lower member radiator support both side legs apron col top head light support than confirm car is Major accidental aur not ..

Interview Preparation Tips

Interview preparation tips for other job seekers - Verify the car is accidental to 1 point check body structure parts like piller roof and boot floor and upar cross member lower cross member and radiator support and both side legs than confirm car are major accidental aur not ..
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal

Round 1 - Technical 

(6 Questions)

  • Q1. Automobile field question
  • Q2. Production management
  • Q3. Team management
  • Q4. Safety awareness
  • Q5. Quality production
  • Q6. Working process step by step
  • Ans. 

    The working process step by step involves planning, executing, monitoring, and evaluating tasks to achieve desired outcomes.

    • 1. Planning: Identify goals, set objectives, and create a timeline.

    • 2. Execution: Carry out tasks according to the plan.

    • 3. Monitoring: Track progress, identify any issues, and make adjustments as needed.

    • 4. Evaluation: Assess the results against the initial goals and objectives.

    • 5. Reflection: Learn ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Improve my skill
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Basic pipeline,python,some simple coding
  • Q2. More on resume and based on ur answers
  • Q3. Docker multistage
Round 2 - Technical 

(2 Questions)

  • Q1. Write the k8s deployment ymal with rolling update for given docker image
  • Ans. 

    Create a k8s deployment ymal with rolling update for a given docker image

    • Define a Deployment object in the YAML file

    • Specify the container image in the spec section

    • Set the update strategy to RollingUpdate

    • Define the number of replicas for the deployment

  • Answered by AI
  • Q2. Read json file and recursive way of geting value based on key

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the PPAP documents ?
  • Ans. 

    PPAP documents are a set of documents used in the automotive industry to ensure suppliers meet quality standards.

    • PPAP documents include items such as design records, engineering change documents, process flow diagrams, control plans, measurement system analysis, and more.

    • They are used to demonstrate that the supplier has understood the customer's requirements and has processes in place to consistently meet those requir...

  • Answered by AI
  • Q2. What level you know PPAP?
  • Ans. 

    PPAP stands for Production Part Approval Process and is a standardized process in the automotive industry to ensure suppliers meet quality requirements.

    • PPAP is a standardized process in the automotive industry to ensure suppliers meet quality requirements

    • It involves submitting documentation such as design records, process flow diagrams, and control plans

    • PPAP typically consists of 18 elements including dimensional resul...

  • Answered by AI
Round 2 - Group Discussion 

Tell me what is your strength about quality assurance?

Round 3 - One-on-one 

(1 Question)

  • Q1. Problem solving procedure for process.
  • Ans. 

    The problem-solving procedure for a process involves identifying the issue, analyzing the root cause, developing solutions, implementing the best solution, and monitoring the results.

    • Identify the problem or issue in the process

    • Analyze the root cause of the problem

    • Develop potential solutions to address the root cause

    • Implement the best solution

    • Monitor and evaluate the results to ensure effectiveness

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Tell me be frankly what's know strongly about quality & update yourself day by day ..
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - 15 minutes interview 

(2 Questions)

  • Q1. What features of playwright did you use in project
  • Q2. How would you do api chaining
  • Ans. 

    API chaining is the process of making multiple API calls in a sequence to achieve a desired outcome.

    • Identify the APIs that need to be called in sequence

    • Extract necessary data from the response of one API call to use in the next call

    • Handle errors and exceptions that may occur during the chaining process

    • Use tools like Postman, RestAssured, or programming languages like Python to automate the chaining process

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Write page object for login
  • Ans. 

    Page object for login functionality

    • Create a LoginPage class with methods for entering username, password, and clicking login button

    • Use locators to identify the username input field, password input field, and login button

    • Implement a method to perform the login action and return the next page object

  • Answered by AI
  • Q2. What is extension of eslint file and how do you combine rules in eslint
  • Ans. 

    Eslint file extension is .eslintrc.js and rules can be combined using extends property

    • Eslint file extension is .eslintrc.js

    • Rules can be combined using the 'extends' property in the eslint configuration file

    • For example, to combine rules from multiple eslint configurations, you can use: 'extends: ['eslint:recommended', 'plugin:react/recommended']

  • Answered by AI
  • Q3. Write a program on wellformed braces
  • Ans. 

    Program to check if braces are well-formed

    • Use a stack to keep track of opening braces

    • Iterate through the input string and push opening braces onto the stack

    • When a closing brace is encountered, pop from the stack and check if it matches the corresponding opening brace

    • If stack is empty at the end and all braces are matched, return true

  • Answered by AI

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

HCLTech Interview Questions
3.6
 • 3.6k Interviews
Tata Motors Interview Questions
4.2
 • 966 Interviews
FIS Interview Questions
3.9
 • 464 Interviews
iBall Interview Questions
3.4
 • 4 Interviews
Karbonn Mobile Interview Questions
4.1
 • 2 Interviews
DiGiSPICE Interview Questions
3.4
 • 2 Interviews
View all

Wynncom Digital Devices Reviews and Ratings

based on 6 reviews

4.0/5

Rating in categories

4.2

Skill development

3.9

Work-Life balance

3.8

Salary & Benefits

4.1

Job Security

4.0

Company culture

3.1

Promotions/Appraisal

4.0

Work Satisfaction

Explore 6 Reviews and Ratings
IOS Application Developer
3 salaries
unlock blur

₹11.5 L/yr - ₹12.9 L/yr

Explore more salaries
Compare Wynncom Digital Devices with

Micromax Informatics

3.6
Compare

Karbonn Mobile

4.1
Compare

Intex Technologies

3.7
Compare

Lava International

4.1
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview