Upload Button Icon Add office photos

Visteon

Compare button icon Compare button icon Compare

Filter interviews by

Visteon Design Engineer Interview Questions and Answers

Updated 14 Dec 2021

Visteon Design Engineer Interview Experiences

1 interview found

Interview Questionnaire 

3 Questions

  • Q1. Experience related question
  • Q2. Few technical
  • Q3. Automation related question

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and confdent

Top trending discussions

View All
Interview Tips & Stories
2w (edited)
timepasstiwari
·
A Digital Markter
Nailed the interview, still rejected
Just had the BEST interview ever – super positive and encouraging! But got rejected. Interviewer said I was the most prepared, knew it was a full-time role (unlike others), and loved my answers. One of my questions was even called "the best ever asked!" He showed me around, said I was exactly what they wanted, and would get back by Friday. I was so hyped! Then today, I got the rejection email. No reason given, just "went with someone else." Feels bad when your best isn't enough. Anyone else been there? How'd you cope?
Got a question about Visteon?
Ask anonymously on communities.

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewer had less knowledge on the current technologies and was more stereo type.

Design Engineer Interview Questions Asked at Other Companies

Q1. Stress Strain curve, What will happen if you use petrol in diesel ... read more
Q2. What is the difference between a lathe and a milling machine?
Q3. What sheet metal operations can increase its strength without cha ... read more
Q4. What design considerations should be made while designing a part?
asked in TCE
Q5. How would you lift a 10kg box to a height of 1 meter?

I applied via Referral and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Why can’t a columns with unique with a not null constraint be used as a primary key?
  • Ans. 

    A unique not null column can be used as a primary key, but not vice versa.

    • Primary key must be unique and not null, but not all unique not null columns need to be primary keys.

    • Primary key is used to identify each row uniquely, while unique not null column is used to ensure data integrity.

    • A table can have multiple unique not null columns, but only one primary key.

  • Answered by AI
  • Q2. Because null can’t be equated
  • Ans. 

    Null cannot be equated as it represents absence of a value.

    • Null is not equal to any value, including itself.

    • Attempting to equate null can result in unexpected behavior.

    • Null is often used to represent the absence of a value or unknown value.

  • Answered by AI
  • Q3. We have 2 procedures with the same names. One with 2 parameters.. second one with 3 parameters. The procedure with 3 parameters has a null also. What will be invoked when we call the procedure
  • Ans. 

    Procedure overloading allows calling the correct procedure based on the number of parameters provided.

    • Procedure overloading is based on the number of parameters.

    • If calling with 2 arguments, the 2-parameter procedure is invoked.

    • If calling with 3 arguments, the 3-parameter procedure is invoked.

    • Passing a null as one of the parameters will still invoke the 3-parameter procedure if 3 arguments are provided.

  • Answered by AI

Design Engineer Interview Questions & Answers

Adobe user image Darshan Singh Karki

posted on 9 Nov 2021

I applied via Walk-in and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What would you suggest to take design to an advance level?
  • Ans. 

    To take design to an advanced level, one should focus on continuous learning, exploring new technologies, collaborating with others, and seeking feedback.

    • Continuously learn and stay updated with the latest design trends and technologies.

    • Explore new tools and software that can enhance the design process and improve efficiency.

    • Collaborate with other designers, engineers, and stakeholders to gain different perspectives an...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Always thought creative.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jul 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java core microservices

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was very good
Interviewer was knowledgeable

I applied via Company Website and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Linked list, data structure
  • Q2. Map,

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn data structure and analysis

I applied via Referral and was interviewed before Apr 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly Basic concepts of javascript, html and css

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure to prepare basic concepts properly. Don't hurry to highlight advance topics.
Answer questions only if you are sure about the correct answer.
Are these interview questions helpful?

I applied via Monster and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic java

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared

Software Engineer Interview Questions & Answers

Chetu user image Nirban Chatterjee

posted on 11 Oct 2020

I applied via Naukri.com and was interviewed before Oct 2019. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Normal php questions like overriding,overloading,traits,interface,abstarct class nothing else.. It was online but in 2016.
  • Q2. Go though those topic as they are very important and asked in most companies.

Interview Preparation Tips

Interview preparation tips for other job seekers - Read those topics and try to understand with example and doing on your own.Before entering Chetu prepare yourself that you may get fire anytime.Because hiring and firing is lot in Chetu but in terms of salary it is good.

Software Engineer Interview Questions & Answers

Adobe user image Devendra Bendkhale

posted on 4 Dec 2015

Interview Questionnaire 

8 Questions

  • Q1. WRITE A GENERIC SWAP FUNCTION
  • Ans. 

    A generic swap function swaps two values of any data type.

    • The function should take two parameters of any data type.

    • Use a temporary variable to store the value of one parameter.

    • Assign the value of the second parameter to the first parameter.

    • Assign the value of the temporary variable to the second parameter.

  • Answered by AI
  • Q2. SEARCH AN ELEMENT IN ROTATED SORTED LINKLIST .
  • Ans. 

    Search for an element in a rotated sorted linked list.

    • Find the pivot point where the list is rotated.

    • Divide the list into two sublists based on the pivot point.

    • Perform binary search on the appropriate sublist.

    • Handle edge cases such as empty list and list with only one element.

  • Answered by AI
  • Q3. SEARCH AN ELEMENT IN ROTATED SORTED ARRAY. WRITED A CODE FOR IT
  • Ans. 

    Search an element in a rotated sorted array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

    • Repeat until element is found or sub-array size is 1

  • Answered by AI
  • Q4. In an Array of size 95 contain numbers in range 1 to 100. each number is at max once in the array. find the 5 missing numbers in array between 1-100
  • Q5. Given sudoku as id array of size . in a given empty cell find the possible numbers that could be possible. Asked me to write code for it
  • Ans. 

    Given a Sudoku board, find possible numbers for an empty cell.

    • Iterate through empty cells and check possible numbers using row, column, and box constraints.

    • Use a set to keep track of possible numbers for each empty cell.

    • Return the set of possible numbers for the given empty cell.

  • Answered by AI
  • Q6. Given 4 unsigned integers find their integer average (eg. (2,2,2,3) => (2+2+2+3)/4 = 2) consider integer division ) without typecasting
  • Ans. 

    Find integer average of 4 unsigned integers without typecasting

    • Add all the integers and divide by 4

    • Use bit shifting to divide by 4

    • Handle overflow by using long long data type

    • Use unsigned int data type for input

  • Answered by AI
  • Q7. Write a code to identify wheter given processor is of 32 bit architecture or 64 bit architecture
  • Ans. 

    Code to identify 32 bit or 64 bit architecture of a processor

    • Check if the operating system is 32 bit or 64 bit

    • If OS is 32 bit, processor is 32 bit

    • If OS is 64 bit, check if processor supports 64 bit architecture

    • Use CPUID instruction to check if processor supports 64 bit architecture

  • Answered by AI
  • Q8. Convert a binary number into base 64 integer
  • Ans. 

    Convert binary number to base 64 integer

    • Divide the binary number into groups of 6 bits

    • Convert each group of 6 bits to decimal

    • Map the decimal value to the corresponding base 64 character

    • Concatenate the base 64 characters to form the final integer

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: SIMPLE CODING QUESTIONS SPEED MATTERS.
Duration: 60 minutes
Total Questions: 3

Skills: Analytics And Coding
College Name: IIT Guwahati

Skills evaluated in this interview

Visteon Interview FAQs

How to prepare for Visteon Design Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Visteon. The most common topics and skills that interviewers at Visteon expect are Automotive, Analog, EMC, Ethernet and thermal.

Tell us how to improve this page.

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 889 Interviews
Amdocs Interview Questions
3.7
 • 528 Interviews
Adobe Interview Questions
3.9
 • 247 Interviews
Salesforce Interview Questions
4.0
 • 233 Interviews
Chetu Interview Questions
3.3
 • 190 Interviews
24/7 Customer Interview Questions
3.5
 • 179 Interviews
Dassault Systemes Interview Questions
3.9
 • 175 Interviews
AVASOFT Interview Questions
2.9
 • 173 Interviews
Freshworks Interview Questions
3.5
 • 170 Interviews
View all
Visteon Design Engineer Salary
based on 4 salaries
₹2 L/yr - ₹6.7 L/yr
17% less than the average Design Engineer Salary in India
View more details

Visteon Design Engineer Reviews and Ratings

based on 3 reviews

2.6/5

Rating in categories

4.0

Skill development

1.4

Work-life balance

3.3

Salary

2.3

Job security

1.6

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 3 Reviews and Ratings
Embedded Software Engineer
358 salaries
unlock blur

₹4.5 L/yr - ₹17.5 L/yr

Software Engineer
325 salaries
unlock blur

₹3.6 L/yr - ₹13 L/yr

Senior Embedded Software Engineer
289 salaries
unlock blur

₹7.5 L/yr - ₹23.9 L/yr

Senior Software Engineer
197 salaries
unlock blur

₹9.9 L/yr - ₹28.2 L/yr

Technical Lead
171 salaries
unlock blur

₹13 L/yr - ₹40 L/yr

Explore more salaries
Compare Visteon with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

4.0
Compare

24/7 Customer

3.5
Compare
write
Share an Interview