Upload Button Icon Add office photos

Filter interviews by

SEG Automotive Softwaretest Engineer Interview Questions and Answers

Updated 30 Jul 2024

SEG Automotive Softwaretest Engineer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Can and can fd difference
  • Ans. 

    Can and Can FD are two different communication protocols used in automotive industry for Controller Area Network (CAN) bus systems.

    • CAN (Controller Area Network) is a standard communication protocol used in automotive industry for high-speed communication between electronic control units (ECUs).

    • CAN FD (Flexible Data-rate) is an enhanced version of CAN protocol that allows for higher data rates and larger data payloads.

    • C...

  • Answered by AI
  • Q2. Set a bit with out using shift operations
  • Ans. 

    Use bitwise OR operation to set a bit without using shift operations.

    • Use bitwise OR operator (|) with a mask to set a specific bit.

    • For example, to set the 3rd bit of a number 'num', you can do: num = num | (1 << 2).

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well which contains in resume

Interview questions from similar companies

Round 1 - Aptitude Test 

Quite easy and straight forward

Round 2 - One-on-one 

(2 Questions)

  • Q1. Sort a array of integers
  • Ans. 

    Sort an array of integers

    • Use a sorting algorithm like bubble sort, insertion sort, or quicksort

    • Consider the size of the array and the efficiency of the algorithm

    • Check for edge cases like empty arrays or arrays with only one element

  • Answered by AI
  • Q2. Remove element from doubly linked list
  • Ans. 

    To remove an element from a doubly linked list, we need to update the pointers of the previous and next nodes.

    • Find the node to be removed

    • Update the pointers of the previous and next nodes to skip the node to be removed

    • Free the memory occupied by the removed node

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What will you do if you have a conflict with manger
  • Q2. How good are you at multitasking

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer to the point. Tell the recruiter if you do not know the answers

Skills evaluated in this interview

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

I applied via campus placement at PES School of Engineering, Bangalore and was interviewed in Oct 2023. 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 - Aptitude Test 

Questions on DBMS, CN and OS

Round 3 - Technical 

(3 Questions)

  • Q1. What's a view in SQL
  • Ans. 

    A view in SQL is a virtual table that is based on the result of a query. It can be used to simplify complex queries and provide a logical representation of data.

    • A view is created by using the CREATE VIEW statement in SQL.

    • It is defined by a query that retrieves data from one or more tables.

    • Views can be used to hide complexity and provide a simplified interface to the underlying data.

    • They can also be used to restrict acc...

  • Answered by AI
  • Q2. How a kernel works in OS
  • Ans. 

    The kernel is the core component of an operating system that manages system resources and provides a bridge between hardware and software.

    • The kernel is loaded into memory during the boot process.

    • It manages memory, processes, and device drivers.

    • It provides system calls for applications to interact with hardware.

    • Examples of kernels include Linux kernel, Windows NT kernel, and macOS kernel.

  • Answered by AI
  • Q3. What happens when you delete files in Linux
  • Ans. 

    When files are deleted in Linux, they are not immediately removed from the disk but rather marked as available for reuse.

    • Deleting a file in Linux removes its entry from the file system's directory structure.

    • The file's data blocks are not immediately erased but are marked as available for reuse.

    • The file's inode, which contains metadata about the file, is also marked as available for reuse.

    • Until the space occupied by the...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Mostly related to C programming, projects done.

I applied via Referral and was interviewed in Nov 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(3 Questions)

  • Q1. Previous Experiences
  • Q2. Relevance to current Job Description
  • Ans. 

    My skills and experience align perfectly with the job description.

    • I have experience in all the required programming languages and tools.

    • I have worked on similar projects in the past.

    • I am familiar with the industry standards and best practices.

    • I am a quick learner and can adapt to new technologies easily.

  • Answered by AI
  • Q3. Joining Dates and Salary expectations
Round 3 - One-on-one 

(4 Questions)

  • Q1. Detailed explanation of responsibilities in previous jobs
  • Q2. Understanding of Technical skills with examples
  • Q3. Experiences with Agile processes
  • Ans. 

    I have extensive experience working with Agile methodologies.

    • I have worked in Scrum and Kanban teams, using JIRA and Trello for project management.

    • I have participated in daily stand-up meetings, sprint planning, and retrospectives.

    • I have experience with continuous integration and delivery, using tools such as Jenkins and GitLab.

    • I have worked in cross-functional teams, collaborating with product owners, designers, and Q...

  • Answered by AI
  • Q4. How would your previous manager / colleagues rate you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Read your CV and Job Profile TWICE.
Be honest even if you have not worked with what is needed for the job
Show willingness of learning
Research about Company culture
Keep questions ready to ask about role and others

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain V Cycle of SDLC.
  • Ans. 

    V Cycle is a software development model where each phase is represented by a downward and upward slope forming a V shape.

    • Requirements are gathered at the top left of the V, followed by design, implementation, testing, and deployment.

    • Each phase has a corresponding testing phase to ensure quality at every step.

    • The V Cycle allows for early detection and correction of defects.

    • It is also known as the Verification and Valida

  • Answered by AI
  • Q2. What are the testing strategies?
  • Ans. 

    Testing strategies are methods used to ensure software quality and identify defects.

    • Types of testing include unit testing, integration testing, system testing, and acceptance testing.

    • Other strategies include manual testing, automated testing, regression testing, and performance testing.

    • Testing can also involve black box testing, white box testing, and gray box testing.

    • Exploratory testing, usability testing, and securit...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Apr 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about yourself Basics of CAN More questions on UDS
  • Q2. Experience related to previous company Questions on Testing Concepts
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Nov 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Oracle security
  • Q2. Oracle security architecture
Round 3 - Technical 

(1 Question)

  • Q1. Oracle security depth
Round 4 - HR 

(1 Question)

  • Q1. About myself and package
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Standard process in hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. Standard interview with live coding
  • Q2. Find the second largest element in an array
Round 3 - HR 

(1 Question)

  • Q1. Describe yourself in 3 words
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Aug 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Besic question on Earlier Project, CAN protocol, UDS and CAPL
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion Only

SEG Automotive Interview FAQs

How many rounds are there in SEG Automotive Softwaretest Engineer interview?
SEG Automotive interview process usually has 1 rounds. The most common rounds in the SEG Automotive interview process are Technical.
What are the top questions asked in SEG Automotive Softwaretest Engineer interview?

Some of the top questions asked at the SEG Automotive Softwaretest Engineer interview -

  1. Set a bit with out using shift operati...read more
  2. Can and can fd differe...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Tata Motors Interview Questions
4.2
 • 973 Interviews
Bosch Interview Questions
4.2
 • 325 Interviews
Varroc Group Interview Questions
3.7
 • 170 Interviews
Exide Industries Interview Questions
3.5
 • 163 Interviews
UNO Minda Interview Questions
4.0
 • 155 Interviews
Yazaki Interview Questions
3.8
 • 121 Interviews
Valeo Interview Questions
4.1
 • 85 Interviews
Faurecia Interview Questions
3.9
 • 58 Interviews
Bharat Forge Interview Questions
3.8
 • 54 Interviews
View all
SEG Automotive Softwaretest Engineer Salary
based on 4 salaries
₹7.5 L/yr - ₹15.6 L/yr
75% more than the average Softwaretest Engineer Salary in India
View more details
Assistant Manager
66 salaries
unlock blur

₹6 L/yr - ₹16.7 L/yr

Design Engineer
46 salaries
unlock blur

₹2.4 L/yr - ₹7.4 L/yr

Senior Engineer
46 salaries
unlock blur

₹5.5 L/yr - ₹11.1 L/yr

Deputy Manager
36 salaries
unlock blur

₹11 L/yr - ₹19 L/yr

Quality Engineer
31 salaries
unlock blur

₹1.5 L/yr - ₹4.1 L/yr

Explore more salaries
Compare SEG Automotive with

Bosch

4.2
Compare

Mahindra Last Mile Mobility

3.8
Compare

Tata Motors

4.2
Compare

Exide Industries

3.5
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