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 Associate Software Engineer Interview Questions and Answers

Updated 7 May 2017

QUICK HEAL TECHNOLOGIES Associate Software Engineer Interview Experiences

1 interview found

I was interviewed in Feb 2017.

Interview Preparation Tips

Round: Test
Experience: Very first, the interviewers and their employees gave presentation about their products and company. They were very cool and very positive to motivate candidates. After that they started Round 1 that is test based on aptitude and logical problem, also containing c programmin and operating system problems.
Tips: If you have studied basics very well, you will clear the round 1 very easily. Study C programming and Linux Operating System concepts.
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical Interview
Experience: I am not specifying any question above because 2nd round i.e Technical Round 1 was continued to abt 1 and hour hours taken by 1 interviewer. If you give all answers confindently, obviously they all must be correct, you will be qualified to next techincal round.
Tips: Same as mentioned in round 1.
Study C programming & Operating System.

Round: Technical Interview
Experience: This was Technical Round 2. It was taken by 3 interviewers asking questions randomly from random subject. Also, one took rapid fire round for 20-25 questions. If you qualified this round, then you can assume that you are selected. This round was also continued more than 1 hour.
Tips: Study Networking concepts

Round: HR Interview
Experience: If you are called for HR interview, then you can assume that you already selected as employee for company. This is round is just for formality to tell you CTC and location and joining, etc.
One thing I would like to mention that in each round they will ask you to tell about yourself. So prepare that too. In HR round, they asked me some tricky puzzles to solve since I mentioned that I am very good in maths so.

College Name: Datta Meghe College of Engineering

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Jan 2016. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Questions on linked list
  • Q2. Questions on resume
  • Q3. About my interests
  • Q4. My interest in symantec
  • Q5. Place to work

Interview Preparation Tips

College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. How you find loop in a linked list
  • Ans. 

    To find a loop in a linked list, we use Floyd's cycle-finding algorithm.

    • Floyd's cycle-finding algorithm uses two pointers, one moving at twice the speed of the other.

    • If there is a loop in the linked list, the two pointers will eventually meet.

    • To detect the meeting point, we reset one of the pointers to the head of the linked list and move both pointers at the same speed.

    • The meeting point is the start of the loop.

  • Answered by AI
  • Q2. What is LRU, MRU and LFU
  • Ans. 

    LRU, MRU and LFU are caching algorithms used to manage memory in computer systems.

    • LRU stands for Least Recently Used and removes the least recently used items from the cache when the cache is full.

    • MRU stands for Most Recently Used and removes the most recently used items from the cache when the cache is full.

    • LFU stands for Least Frequently Used and removes the least frequently used items from the cache when the cache i...

  • Answered by AI
  • Q3. Camel banana problem

Interview Preparation Tips

Round: Test
Experience: coding test in hacker rank. can code in any language except in C and C++.
Duration: 1 hour
Total Questions: 2

Round: Technical Interview
Experience: In technical round the questions are on OS, basics of C(mainly in linked lists) and maths puzzle

They mostly see how you are approaching towards a problem.
It is first time that I heard the camel banana problem. So I struggled for some time and came up with a solution. He said he liked the approach but it can be optimized.

Round: HR Interview
Experience: It started with explain about yourselves. and then he asked to explain about one project with technical details. Later he asked me to explain binary search for a guy who don't know much of technical knowledge. He continued with why we only do 2 partitions why can we make it up to 3. Later he asked me what I liked most in my mobile phone. I said chatting apps. So he asked me that if I was hired as a developer to make a chatting app how will I do it.
Tips: way of thinking and way of approaching towards a problem.

Round: HR Interview
Experience: This round was focused mainly on whether I like to work in Bangalore or not. How I first heard about Symantec. how I will suit for the company. what are my future plans.

Skills: C, OS, Math Puzzles
College Name: IIT Madras

Skills evaluated in this interview

I was interviewed before May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Timing - flexible 12 hours window to take the test. (9AM - 9PM)
Test was proctored

  • Q1. 

    Combination Sum Problem Statement

    Given three integers X, Y, and Z, calculate the sum of all numbers that can be formed using the digits 3, 4, and 5. Each digit can be used up to a maximum of X, Y, and Z ...

  • Ans. 

    Calculate the sum of all numbers that can be formed using the digits 3, 4, and 5 with given constraints.

    • Iterate through all possible combinations of 3, 4, and 5 based on the given constraints.

    • Calculate the sum of each combination and add them up.

    • Return the final sum modulo 10^9 + 7.

  • Answered by AI
  • Q2. 

    Longest Path In Directed Graph Problem Statement

    Given a Weighted Directed Acyclic Graph (DAG) comprising 'N' nodes and 'E' directed edges, where nodes are numbered from 0 to N-1, and a source node 'Src'....

  • Ans. 

    The task is to find the longest distances from a source node to all nodes in a weighted directed acyclic graph.

    • Implement a function that takes the number of nodes, edges, source node, and edge weights as input.

    • Use a topological sorting algorithm to traverse the graph and calculate the longest distances.

    • Return an array of integers where each element represents the longest distance from the source node to the correspondi

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Easy

Timing - 9:00 AM - 9:40 AM

  • Q1. 

    Factorial Trailing Zeros Problem

    You are provided with a positive integer N. Your goal is to determine the smallest number whose factorial has at least N trailing zeros.

    Example:

    Input:
    N = 1
    Output:
    ...
  • Ans. 

    Find the smallest number whose factorial has at least N trailing zeros.

    • Calculate the number of 5's in the prime factorization of the factorial to determine the trailing zeros.

    • Use binary search to find the smallest number with at least N trailing zeros.

    • Consider edge cases like N = 0 or N = 1 for factorial trailing zeros problem.

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, your task is to return the head of the reversed linked list.

    Example:

    Input:
    The given linked list is 1 -> 2 -> 3 -&g...
  • Ans. 

    To reverse a singly linked list of integers, return the head of the reversed linked list.

    • Iterate through the linked list, reversing the pointers to point to the previous node instead of the next node.

    • Keep track of the previous, current, and next nodes while traversing the list.

    • Update the head of the reversed linked list to be the last element of the original list.

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Easy

Timing - 12:00 Pm to 12:40 PM

  • Q1. 

    Implementing a Priority Queue Using Heap

    Ninja has been tasked with implementing a priority queue using a heap data structure. However, he is currently busy preparing for a tournament and has requested yo...

  • Ans. 

    Implement a priority queue using a heap data structure by completing the provided functions: push(), pop(), getMaxElement(), and isEmpty().

    • Understand the operations: push() to insert element, pop() to remove largest element, getMaxElement() to return largest element, and isEmpty() to check if queue is empty.

    • Implement a heap data structure to maintain the priority queue.

    • Handle different types of queries based on the inp...

  • Answered by AI
  • Q2. 

    Largest BST Subtree Problem

    Given a binary tree with 'N' nodes, determine the size of the largest subtree that is also a BST (Binary Search Tree).

    Input:

    The first line contains an integer 'T', represen...
  • Ans. 

    The problem involves finding the size of the largest subtree that is also a Binary Search Tree in a given binary tree.

    • Traverse the binary tree in a bottom-up manner to check if each subtree is a BST.

    • Keep track of the size of the largest BST subtree encountered so far.

    • Use recursion to solve the problem efficiently.

    • Consider edge cases like empty tree or single node tree.

    • Example: For input 1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1

  • Answered by AI
Round 4 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

Timing - 6:00 PM - 6:30 PM

  • Q1. Can you design a system similar to Splitwise and identify three features that you would change or improve?
  • Ans. 

    Design a system similar to Splitwise and suggest three features for improvement.

    • Implement a real-time notification system for updates on shared expenses

    • Integrate a feature for automatic currency conversion for international transactions

    • Enhance the user interface with data visualization tools for better expense tracking

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Netaji Subhas University Of Technology. I applied for the job as Associate Software Engineer in BangaloreEligibility criteriaNo criteriaSalesforce interview preparation:Topics to prepare for the interview - Data Structures, Dynamic Programming, OOPS, OS, DBMS.Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : For fresher role, System design is not very important.
Tip 2 : Do at least 1-2 good quality projects.
 

Application resume tips for other job seekers

Tip 1 : Have 1-2 good engaging projects in resume.
Tip 2 : Internships are helpful.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
No response
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 

Basic questions on core subject

Round 3 - Coding Test 

One coding question with 5 marks

Round 4 - Technical 

(1 Question)

  • Q1. Self intro brief discussion on projects questions related to projects core subject questions like digitial electronics basic python questions coding questions like palindrome
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy to moderate level questions.

Round 2 - Assignment 

There will be 3 coding que , easy , medium, hard

Interview Preparation Tips

Interview preparation tips for other job seekers - No job security, behaviour of all the interviewer as well as hr is worst.too much of poltics in the office.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

General Aptitude Question

Round 2 - Technical 

(2 Questions)

  • Q1. Project related question
  • Q2. One programming question factorial of 5
Round 3 - HR 

(1 Question)

  • Q1. Basic behavioral question

Interview Preparation Tips

Topics to prepare for KPIT Technologies Associate Software Engineer interview:
  • Java
  • OOPS
  • Basic dsa
  • Project
Interview preparation tips for other job seekers - Basic concept is necessary for crack this company
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I was interviewed in Nov 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Questions based on selected track.
Round 2 - Coding Test 

The programming languages available for coding were determined by the chosen track (AI-ML in my case), which included Python and Java. Two coding challenges centered on array and string manipulation, with difficulty levels categorized as easy and medium.

Round 3 - AI Proctored Interview 

(1 Question)

  • Q1. Total of 13 questions. No interviewer. AI based Interview. Questions included Technical questions , a coding question and HR questions as well.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
-

I applied via Campus Placement and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

MCQ and essay writing

Round 2 - Technical 

(2 Questions)

  • Q1. What are Oops concepts ?
  • Ans. 

    Oops concepts are the principles of Object Oriented Programming, including Inheritance, Encapsulation, Polymorphism, and Abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementatio...

  • Answered by AI
  • Q2. What is join and types of join?
  • Ans. 

    Join is used to combine rows from two or more tables based on a related column between them.

    • Types of joins include inner join, outer join (left, right, full), cross join, self join.

    • Inner join returns rows when there is at least one match in both tables.

    • Outer join returns all rows from one table and matching rows from the other table.

    • Cross join returns the Cartesian product of the two tables.

    • Self join is used to join a

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Tell be about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for software development.

    • Recent graduate with a degree in Computer Science

    • Passionate about software development

    • Experience with programming languages like Java and Python

  • Answered by AI
  • Q2. What are your hobbies
  • Ans. 

    My hobbies include playing guitar, hiking, and reading science fiction novels.

    • Playing guitar: I enjoy learning new songs and practicing different techniques.

    • Hiking: I love exploring nature trails and challenging myself with long hikes.

    • Reading science fiction novels: I find it fascinating to immerse myself in futuristic worlds and imaginative stories.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Encapsulation inheritance oops etc
  • Q2. Bitwise operations

Tell us how to improve this page.

QUICK HEAL TECHNOLOGIES Associate Software Engineer Salary
based on 7 salaries
₹4 L/yr - ₹6.9 L/yr
9% less than the average Associate Software Engineer Salary in India
View more details

QUICK HEAL TECHNOLOGIES Associate Software Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

3.0

Salary

4.0

Job security

3.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Area Sales Manager
92 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
89 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
85 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
75 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

QA Engineer
52 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare QUICK HEAL TECHNOLOGIES with

Gen

4.0
Compare

McAfee

4.0
Compare

Kaspersky Lab

2.2
Compare

Oracle

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