Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Evertz Microsystems QA Engineer Interview Questions and Answers

Updated 9 Aug 2024

Evertz Microsystems QA Engineer Interview Experiences

1 interview found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 9 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Internet speed test
  • Q2. Testing questions
Round 2 - Technical 

(2 Questions)

  • Q1. Sql joins question
  • Q2. Login page test case
Round 3 - HR 

(2 Questions)

  • Q1. Resume questions
  • Q2. Personality questions

Interview Preparation Tips

Interview preparation tips for other job seekers - amazing place to work

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I was interviewed before Jun 2023.

Round 1 - HR 

(1 Question)

  • Q1. Do you have any idea what is Vertiv all about?

I applied via Other and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. How to react in a critical situation to customer. Need to explain about the issue or give solution for the issue?
  • Q2. How are you going to handle a 5 member team

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare in management level as well

I applied via Company Website and was interviewed before Apr 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Electrical fundamental and AC thoery
Round 3 - HR 

(4 Questions)

  • Q1. Tell me about yourself.
  • Q2. Why are you looking for a change?
  • Q3. Why should we hire you?
  • Q4. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Speak truth about privious job
Clear basic concepts of electrical

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Project description
  • Ans. 

    Developed a web-based project management tool for a software development company.

    • Used Agile methodology for project management

    • Implemented user authentication and authorization

    • Integrated with third-party tools like JIRA and GitHub

    • Provided real-time project progress tracking

    • Generated reports for project analysis

  • Answered by AI
  • Q2. Python based problems
  • Q3. Embedded scenarios

Interview Preparation Tips

Interview preparation tips for other job seekers - Be frank about your self ration about your skills and maintain 2 way communication during the interview.

I applied via Naukri.com and was interviewed before Sep 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. PLC programming, TPM, MTTR, MTBF
  • Q2. How to deal with chinese counterparts
  • Ans. 

    Understand cultural differences, build relationships, communicate clearly and respectfully.

    • Research and learn about Chinese culture and customs.

    • Be patient and build relationships before discussing business.

    • Communicate clearly and respectfully, avoiding direct confrontation.

    • Be aware of nonverbal communication and body language.

    • Use a translator if necessary.

    • Be prepared for negotiations and understand the importance of sa...

  • Answered by AI
  • Q3. How to deal with colleagues
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion, Why changing

Interview Preparation Tips

Interview preparation tips for other job seekers - Communication in good English language
To the point answer
Only truth
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Tell me about your self
Round 3 - HR 

(1 Question)

  • Q1. Package discussion

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

Interview Questionnaire 

4 Questions

  • Q1. What are specific EV Chargers used for charging??
  • Ans. 

    EV chargers are specific to the type of plug used by the vehicle. Common types include CHAdeMO, CCS, and Tesla Supercharger.

    • EV chargers are designed to match the plug type of the vehicle being charged

    • CHAdeMO is commonly used by Japanese automakers like Nissan and Mitsubishi

    • CCS is used by many European and American automakers

    • Tesla Superchargers are exclusive to Tesla vehicles

    • Other types of plugs include Type 1 and Type

  • Answered by AI
  • Q2. Various chargers like CCS, CHAdeMO, Bharat Standard chargers are used as per the EV requirement.
  • Q3. Where do you see yourself in the next 5-10 years
  • Q4. I want to grow technically with the company and learn things quickly enough to implement them in future updates of the EVSE for the betterment of society.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident and answer those things which you know properly. Never fake things all around and always learn about the Companies profile and its supplies.
It was an HR cum Technical round that lasted for 35-40 Minutes, later there was a face 2 face Final interview at their office. Both interviews were answered positively.

Always have a positive approach to your past company even while you describe it and utilize your previous Job profile wisely enough to support the future one.

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 30. minutes
Round difficulty - Easy

It was in the evening, question were moderate

  • Q1. 

    Count Subsequences Problem Statement

    Given an integer array ARR of size N, your task is to find the total number of subsequences in which all elements are equal.

    Explanation:

    A subsequence of an array i...

  • Ans. 

    Count the total number of subsequences in which all elements are equal in an integer array.

    • Iterate through the array and count the frequency of each element.

    • Calculate the total number of subsequences for each element using the formula (frequency * (frequency + 1) / 2).

    • Sum up the total number of subsequences for all elements and return the result modulo 10^9 + 7.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

It was in the night around 9:00 PM.

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Given an array and a target sum, find all pairs of elements that add up to the target sum.

    • Iterate through the array and for each element, check if the complement (target sum - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list.

    • Sort the pairs based on the first element and then the second element.

    • Return the list of pairs as the final result.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Delhi Technological University. I applied for the job as Software Engineer in DelhiEligibility criteriaNo percentage criteria(good in aptitude)Vertiv Co interview preparation:Topics to prepare for the interview - Array, oops, algorithms, data structures, stackTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Learn new things daily 
Tip 2 : Practice questions 
Tip 3 : Keep one question in mind to solve.

Application resume tips for other job seekers

Tip 1 : Description about your skills 
Tip 2 : Project details

Final outcome of the interviewSelected

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Salary expectation .
  • Q2. Why should I hire you?
Round 2 - One-on-one 

(2 Questions)

  • Q1. Mendix Advanced questions.
  • Q2. Everything which you mentioned in your resume.
Contribute & help others!
anonymous
You can choose to be anonymous

Evertz Microsystems Interview FAQs

How many rounds are there in Evertz Microsystems QA Engineer interview?
Evertz Microsystems interview process usually has 3 rounds. The most common rounds in the Evertz Microsystems interview process are HR and Technical.
How to prepare for Evertz Microsystems QA 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 Evertz Microsystems. The most common topics and skills that interviewers at Evertz Microsystems expect are Linux, Networking, Performance Testing, Python and Regression Testing.
What are the top questions asked in Evertz Microsystems QA Engineer interview?

Some of the top questions asked at the Evertz Microsystems QA Engineer interview -

  1. internet speed t...read more
  2. login page test c...read more
  3. testing questi...read more

Recently Viewed

INTERVIEWS

DXC Technology

No Interviews

SALARIES

Krishi Vigyan Kendra

INTERVIEWS

IPL Biologicals

No Interviews

INTERVIEWS

Jio

No Interviews

SALARIES

Zf Rane Automotive

INTERVIEWS

Kantar

No Interviews

INTERVIEWS

Teleperformance

No Interviews

INTERVIEWS

Evertz Microsystems

No Interviews

INTERVIEWS

UST

No Interviews

INTERVIEWS

HDFC Bank

No Interviews

Tell us how to improve this page.

Evertz Microsystems QA Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Flex Interview Questions
4.0
 • 185 Interviews
Foxconn Interview Questions
3.9
 • 150 Interviews
Navitasys India Interview Questions
4.2
 • 101 Interviews
TE Connectivity Interview Questions
4.1
 • 81 Interviews
Vertiv Interview Questions
4.0
 • 49 Interviews
IDEMIA Interview Questions
3.9
 • 46 Interviews
Samsung Display Interview Questions
3.9
 • 41 Interviews
View all
Evertz Microsystems QA Engineer Salary
based on 9 salaries
₹5 L/yr - ₹9.8 L/yr
34% more than the average QA Engineer Salary in India
View more details

Evertz Microsystems QA Engineer Reviews and Ratings

based on 3 reviews

4.5/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

4.5

Salary

4.5

Job security

4.5

Company culture

4.5

Promotions

4.5

Work satisfaction

Explore 3 Reviews and Ratings
Project Engineer
26 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
19 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Evertz Microsystems with

Grass Valley

5.0
Compare

Harmonic

4.3
Compare

AJA Video Systems

4.0
Compare

Quantel

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