Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by QUICK HEAL TECHNOLOGIES Team. If you also belong to the team, you can get access from here

QUICK HEAL TECHNOLOGIES Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

QUICK HEAL TECHNOLOGIES Principal Quality Assurance Engineer Interview Questions and Answers

Updated 23 Aug 2022

QUICK HEAL TECHNOLOGIES Principal Quality Assurance Engineer Interview Experiences

1 interview found

I applied via Walk-in and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Networking and security related questions
  • Q2. Encryption, Decryption
Round 2 - HR 

(2 Questions)

  • Q1. Reason for job leave
  • Q2. Notice period, is it negotiable

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up the networking and security related skills
IP address
Antivirus installation test cases

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jul 2019. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic C questions and 2 c programs to find wrong in code.
  • Q2. Prepare all UART, SPI, CAN, I2C timing digrams their frame format.
  • Ans. 

    Explanation of UART, SPI, CAN, I2C timing diagrams and frame formats.

    • UART: asynchronous serial communication, start and stop bits, baud rate

    • SPI: synchronous serial communication, master-slave architecture, clock polarity and phase

    • CAN: differential serial communication, arbitration, error detection and correction

    • I2C: synchronous serial communication, master-slave architecture, addressing, clock stretching

  • Answered by AI
  • Q3. Matlab knowledge is advantage

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and cofident

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. About what we worked in previous company project
  • Q2. General C programming questions and previous company project questions

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Javascript basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - learn basic javascript questions with practical approach

I applied via Referral and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Sliding window problem in an Array(using 2 pointers) like Pythagorean triplets.
  • Q2. Overlapping circular linked list problem.
  • Ans. 

    Detect if two circular linked lists overlap

    • Traverse both lists and check if they have the same tail node

    • If they have different tail nodes, they do not overlap

    • If they have the same tail node, check if they intersect at any point

    • Use Floyd's cycle-finding algorithm to detect intersection point

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I had 6 rounds of technical interview . Each round of 1 hr or more. In all the rounds I was asked to write proper programs (Sometimes on HackerRank, sometimes on an IDE, sometimes just on a text editor.) . Questions were designed to test problem solving abilities and proper use to dataStructures and coding basics. Lot of emphasis on writing efficient program with least time complexity possible.

During preparations, its important to understand basics of different dataStructures and how to efficiently use it in your programs . For practicing interview problems, I referred leetcode and geeksforgeeks . Solving different kind of problems from these websites really helped me. Dynamic Programming is also an important area from where lot of problems are asked in interview.

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Apr 2022. There were 5 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Minimum number of platforms required for a railway station.
  • Ans. 

    Minimum 2 platforms required for a railway station.

    • At least 2 platforms are required for trains to arrive and depart simultaneously.

    • Additional platforms may be required based on the frequency of trains and passenger traffic.

    • Platforms should be long enough to accommodate the longest trains that will use the station.

    • Platforms should also have appropriate facilities for passengers, such as seating, shelter, and signage.

  • Answered by AI
  • Q2. Set of numbers from an array that can form nearest sum to the given number
  • Ans. 

    Find set of numbers from an array that can form nearest sum to the given number.

    • Sort the array in ascending order

    • Use two pointers approach to find the nearest sum

    • Return the set of numbers

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Trapping Rain water problem
  • Ans. 

    Trapping Rain Water Problem

    • The problem involves calculating the amount of water trapped between bars in a histogram

    • The solution involves finding the maximum height of bars on both sides of each bar and subtracting the height of the bar itself

    • This can be done using two arrays to store the maximum height of bars on the left and right side of each bar

  • Answered by AI
  • Q2. Least cost to travel from source to destination(DP problem)
  • Ans. 

    The problem is to find the least cost to travel from source to destination using dynamic programming.

    • Use dynamic programming to solve the problem

    • Create a 2D array to store the minimum cost to reach each cell

    • Fill the array using the recurrence relation: minCost[i][j] = cost[i][j] + min(minCost[i-1][j], minCost[i][j-1], minCost[i-1][j-1])

    • The final answer will be stored in minCost[m][n], where m and n are the coordinates ...

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Interfaces, diamond problem, abstraction, OOPs concepts, inheritance, abstract classes, Race condition, Normalization
  • Q2. Arrays coding question and a DP problem in mid to high level of difficulty.
  • Q3. System design question
Round 4 - Technical 

(1 Question)

  • Q1. DP problems (mid - high difficulty)
Round 5 - Technical 

(1 Question)

  • Q1. Level order traversal of Binary tree
  • Ans. 

    Level order traversal of Binary tree

    • Use a queue to traverse the tree level by level

    • Enqueue the root node and then dequeue it and enqueue its children

    • Repeat until the queue is empty

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with you DS and Algo. Have knowledge of your projects and should be able to LLD and HLD. Get your basics straight on OOPs, OS, DBMS.

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Machine Learning, statistics, PowerBI, Python

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic interview questions based on the skills mentioned in your resume.

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

Interview Questionnaire 

2 Questions

  • Q1. 1. What is Ajax? 2. Write JS code to implement AJAX. 3. What is hoisting? 4. Questions regarding this keywords.
  • Ans. 

    Questions on Ajax, JS code for AJAX, hoisting, and related keywords for Senior Software Engineer role.

    • Ajax is a technique for creating fast and dynamic web pages without reloading the entire page.

    • JS code for AJAX involves creating an XMLHttpRequest object, defining a callback function, and sending a request to the server.

    • Hoisting is a JS mechanism where variables and function declarations are moved to the top of their ...

  • Answered by AI
  • Q2. Implement a React JS program to change background colour of div if box input of both of the two input boxes is greater than 10.
  • Ans. 

    React program to change div background color if both input boxes > 10

    • Create a state for each input box

    • Add onChange event to each input box to update state

    • Use useEffect to check if both input values are greater than 10

    • If true, update state to change div background color

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was scheduled after CV shortlisting.
There was only one technical round.
Technical round was followed by HR interview.

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in May 2022. There were 4 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Introduction. About past experience, expectation etc.
Round 2 - Technical 

(1 Question)

  • Q1. Questions related to Apigee, Kubernetes and cassandra DB.
Round 3 - Technical 

(1 Question)

  • Q1. Client Round- Questions related to Kubernetes and Apigee.
Round 4 - Technical 

(1 Question)

  • Q1. Client round 2- Questions related to Infrastructure, SAAS, Terraform, AWS . Cassandra, Ansible

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about the tool set you are interviewed for.
Interview experience
5
Excellent
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 - Technical 

(1 Question)

  • Q1. Testing domain like windows Linux VMware db related questions
Round 3 - Technical 

(1 Question)

  • Q1. Python programming test like duplicate remove and swap

QUICK HEAL TECHNOLOGIES Interview FAQs

How many rounds are there in QUICK HEAL TECHNOLOGIES Principal Quality Assurance Engineer interview?
QUICK HEAL TECHNOLOGIES interview process usually has 2 rounds. The most common rounds in the QUICK HEAL TECHNOLOGIES interview process are Technical and HR.
What are the top questions asked in QUICK HEAL TECHNOLOGIES Principal Quality Assurance Engineer interview?

Some of the top questions asked at the QUICK HEAL TECHNOLOGIES Principal Quality Assurance Engineer interview -

  1. Networking and security related questi...read more
  2. Encryption, Decrypt...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 869 Interviews
KPIT Technologies Interview Questions
3.4
 • 291 Interviews
Adobe Interview Questions
3.9
 • 237 Interviews
Salesforce Interview Questions
4.0
 • 230 Interviews
Freshworks Interview Questions
3.5
 • 166 Interviews
Oracle Cerner Interview Questions
3.7
 • 158 Interviews
ServiceNow Interview Questions
4.1
 • 121 Interviews
View all
Software Engineer
93 salaries
unlock blur

₹5.1 L/yr - ₹13.8 L/yr

Area Sales Manager
92 salaries
unlock blur

₹4 L/yr - ₹7.4 L/yr

Technical Support Engineer
90 salaries
unlock blur

₹2.5 L/yr - ₹6 L/yr

Senior Software Engineer
84 salaries
unlock blur

₹8.6 L/yr - ₹28 L/yr

QA Engineer
54 salaries
unlock blur

₹4.3 L/yr - ₹11 L/yr

Explore more salaries
Compare QUICK HEAL TECHNOLOGIES with

Oracle

3.7
Compare

KPIT Technologies

3.4
Compare

Intellect Design Arena

3.9
Compare

Oracle Cerner

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