Upload Button Icon Add office photos
Engaged Employer

i

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

Trellix Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Trellix Software QA Engineer Interview Questions and Answers

Updated 21 Jul 2024

Trellix Software QA Engineer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Talks about the L3-L7 layers

Software QA Engineer Jobs at Trellix

View all

Interview questions from similar companies

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

I applied via Referral and was interviewed in Nov 2023. There were 5 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 

Written with multiple question both aptitude and technical

Round 3 - Technical 

(1 Question)

  • Q1. What is regression and smoke testing
  • Ans. 

    Regression testing is retesting of previously tested functionality to ensure that changes or fixes have not introduced new defects. Smoke testing is a subset of regression testing that focuses on testing the critical functionalities of an application.

    • Regression testing is performed to verify that changes or fixes in software have not introduced new defects or caused existing functionalities to fail.

    • It involves retestin...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Roles and responsibilities in your previous project and what is your contribution for project delivery
Round 5 - HR 

(1 Question)

  • Q1. Why should we hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with basics and confident delivery

Skills evaluated in this interview

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

(1 Question)

  • Q1. What is the STLC, bug severity priority, waits in selenium with syntax, Java oops question with example,
  • Ans. 

    STLC, bug severity priority, waits in Selenium, Java OOPs

    • STLC stands for Software Testing Life Cycle and includes phases like requirement analysis, test planning, test design, test execution, and test closure

    • Bug severity is the impact of a bug on the system, while bug priority is the order in which bugs should be fixed

    • Waits in Selenium are used to make the test script wait for a certain condition to be met before proce...

  • 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 Referral and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Internal working of hashmap
  • Q2. What are collections
  • Q3. What are design Patterns explain singleton design pattern
  • Q4. What annotations did you use in spring boot. how @transaction annotation works
Round 2 - Behavioral 

(2 Questions)

  • Q1. Asked 2 puzzles
  • Q2. What is vertical scaling and horizontal scaling
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. The interviewer is from testing panel how the testing panel can take a developer interview they don’t have any knowledge about java worst interviewer in my life they waste my 1hour. after answer all the qu...
  • Q2. What is encapsulation. Protected and default difference i have to explain her with example. Collection and hashmap i explain all the things in hashmap even the implementation After that she said to write ...
  • Q3. She asked me about helm chart and aws.I did answer according to it. My interview was pretty well but very next day what i got to know from HR that my basic was not clear that’s very very unprofessional beh...

Interview Preparation Tips

Topics to prepare for UKG Software Developer interview:
  • Basic Java
  • Coding
Interview preparation tips for other job seekers - Don’t expect anything from UKG even after u did very well in your interview.Pathetic experience worst interviewer.I wish there should be some ukg review portal so that i can share the interviewer feedback as well.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is Oops concept?
  • Ans. 

    Oops concept stands for Object-Oriented Programming concepts which include principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Oops concept is a programming paradigm that focuses on objects and classes.

    • It includes principles like inheritance, where a class can inherit properties and behaviors from another class.

    • Encapsulation is another principle where data is wrapped within a class and can only be...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Feb 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. EVPN VXLAN BGP peering
  • Q2. Underlay link - ebgp inet-unicast peering is done overlay link - ibgp evpn signalling
  • Q3. GRE vs IPSEC and whats the difference
  • Ans. 

    GRE and IPSEC are both protocols used for secure communication over networks, but they have different purposes and implementations.

    • GRE (Generic Routing Encapsulation) is a tunneling protocol used to encapsulate a wide variety of network layer protocols inside virtual point-to-point links. It does not provide encryption or authentication.

    • IPSEC (Internet Protocol Security) is a suite of protocols used to secure Internet ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Karet Interview :
5 back to back System design question, we don't need to explain each component but more like list as many as points. Need to finish all the question in 15min

1-2 problem solving question : It's not fency algorithm round with tough question. But true problem solving round using basic knowledge such as hashmap, heap

Round 2 - Technical 

(3 Questions)

  • Q1. Design File System : You have given file size and collection in input 1 : get total size 2 : find top k collections in size
  • Ans. 

    Design a file system to calculate total size and find top k collections in size.

    • Create a file system class with methods to add files and calculate total size.

    • Maintain a data structure to store the collections and their sizes.

    • Implement a method to find the top k collections based on size.

    • Consider using a priority queue or sorting the collections based on size.

    • Handle edge cases like empty collections or invalid input siz

  • Answered by AI
  • Q2. Find total size
  • Ans. 

    Calculate the total size of an array of strings.

    • Iterate through the array and sum the length of each string.

    • Use the `length` property of each string to get its size.

    • Handle edge cases such as empty strings or null values.

  • Answered by AI
  • Q3. Find Top k collections
  • Ans. 

    The question is asking to find the top k collections.

    • Use a sorting algorithm to sort the collections in descending order based on a specific criteria.

    • Select the top k collections from the sorted list.

    • Return the selected collections as an array of strings.

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me one critical problem statement of your application in which you have automated and the solution you have provided for the same
  • Ans. 

    One critical problem statement automated was testing the login functionality for multiple user roles

    • Automated testing of login functionality for different user roles

    • Used Selenium WebDriver to automate login process

    • Created test scripts to simulate login scenarios for admin, user, and guest roles

  • Answered by AI
  • Q2. Oops concept in java
  • Ans. 

    Oops concept in Java refers to Object-Oriented Programming principles like Inheritance, Encapsulation, Polymorphism, and Abstraction.

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

    • Encapsulation involves bundling data and methods that operate on the data into a single unit.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction hides the implementation d...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Jun 2023.

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 

(2 Questions)

  • Q1. Will you be able to work in Rotational Shifts?
  • Q2. How much experience do you have in SQL and Node JS.
  • Ans. 

    I have 5 years of experience in SQL and Node JS.

    • I have worked extensively with SQL databases, writing complex queries and optimizing performance.

    • I am proficient in using Node JS for server-side development, building RESTful APIs and handling database operations.

    • I have experience in integrating SQL databases with Node JS applications using libraries like Sequelize or Knex.

    • I have successfully delivered projects that invo...

  • Answered by AI
Round 3 - One-on-one 

(5 Questions)

  • Q1. What is Index in SQL?
  • Ans. 

    Indexes in SQL are data structures that improve the speed of data retrieval operations on database tables.

    • Indexes are created on one or more columns of a table to allow faster searching and sorting of data.

    • They work similar to the index of a book, allowing the database engine to quickly locate the data.

    • Indexes can be created on primary keys, foreign keys, or any other frequently searched columns.

    • They reduce the amount ...

  • Answered by AI
  • Q2. What are the different types of Normalization in DBMS?
  • Ans. 

    Normalization is a process in DBMS that eliminates data redundancy and ensures data integrity.

    • Normalization is used to organize data in a database efficiently.

    • There are different normal forms, such as 1NF, 2NF, 3NF, BCNF, and 4NF.

    • Each normal form has specific rules and dependencies to achieve data normalization.

    • Normalization helps in reducing data duplication, improving data consistency, and simplifying database mainte...

  • Answered by AI
  • Q3. What do you know about Views in mySQL?
  • Ans. 

    Views in mySQL are virtual tables that are based on the result of a query. They can be used to simplify complex queries and provide a layer of abstraction.

    • Views are created using the CREATE VIEW statement.

    • They are stored in the database and can be accessed like regular tables.

    • Views can be used to hide complexity by encapsulating complex queries into a single view.

    • They can also be used to restrict access to certain colu...

  • Answered by AI
  • Q4. What are Stored Procedures?
  • Ans. 

    Stored Procedures are precompiled database objects that contain a set of SQL statements and can be executed with a single call.

    • Stored Procedures are used to encapsulate and execute frequently used SQL statements.

    • They improve performance by reducing network traffic and optimizing query execution.

    • They can accept input parameters and return output values.

    • Stored Procedures can be used for data manipulation, data retrieval,...

  • Answered by AI
  • Q5. Tell me something about Internet of Things.
  • Ans. 

    Internet of Things (IoT) refers to the network of physical devices, vehicles, appliances, and other objects embedded with sensors, software, and connectivity.

    • IoT enables devices to collect and exchange data over the internet.

    • It allows for remote monitoring and control of devices and systems.

    • IoT has applications in various industries such as healthcare, transportation, agriculture, and smart homes.

    • Examples of IoT device...

  • Answered by AI
Round 4 - Client Interview 

(6 Questions)

  • Q1. Questions about Past Experience, the projects I have worked on.
  • Q2. What does JWT stand for? How do we use them?
  • Ans. 

    JWT stands for JSON Web Token. It is a compact, URL-safe means of representing claims between two parties.

    • JWT is used for authentication and authorization purposes in web applications.

    • It consists of three parts: header, payload, and signature.

    • The header contains the algorithm used to sign the token.

    • The payload contains the claims or information about the user.

    • The signature is used to verify the integrity of the token.

    • J...

  • Answered by AI
  • Q3. What is the difference between Webtokens and APIs?
  • Ans. 

    Webtokens and APIs are both used in web development, but they serve different purposes.

    • Webtokens are used for authentication and authorization, providing a secure way to transmit user information between client and server.

    • APIs (Application Programming Interfaces) are sets of rules and protocols that allow different software applications to communicate and interact with each other.

    • Webtokens are often used within APIs to...

  • Answered by AI
  • Q4. What is oAuth, what method did you use for Authentication/ Authorisation is your project?
  • Ans. 

    oAuth is an open standard for authorization. In my project, I used the oAuth 2.0 protocol for authentication and authorization.

    • oAuth is a protocol that allows users to grant limited access to their resources on one website to another website without sharing their credentials.

    • It provides a secure way for users to authenticate and authorize third-party applications to access their data.

    • oAuth 2.0 is the most widely used v...

  • Answered by AI
  • Q5. If the data in a table is already normalized, what can we do to further optimize is?
  • Ans. 

    Further optimization of normalized data can be achieved through indexing, denormalization, and caching.

    • Create appropriate indexes on frequently queried columns to improve query performance.

    • Consider denormalizing the data by combining related tables to reduce the number of joins required.

    • Implement caching mechanisms to store frequently accessed data in memory for faster retrieval.

    • Use materialized views or summary tables...

  • Answered by AI
  • Q6. How do you perform indexing in a database, which column you use for indexing?
  • Ans. 

    Indexing in a database improves query performance by creating a data structure that allows for faster data retrieval.

    • Indexing involves creating an index on one or more columns of a database table.

    • The column used for indexing should be chosen based on the frequency of data retrieval and the cardinality of the column.

    • Columns with high selectivity and frequent data retrieval are good candidates for indexing.

    • Examples of co...

  • Answered by AI

Skills evaluated in this interview

Trellix Interview FAQs

How many rounds are there in Trellix Software QA Engineer interview?
Trellix interview process usually has 1 rounds. The most common rounds in the Trellix interview process are Technical.
How to prepare for Trellix Software 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 Trellix. The most common topics and skills that interviewers at Trellix expect are Python, Cloud Computing, Debugging, Linux and Troubleshooting.

Tell us how to improve this page.

Trellix Software QA Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
Globant Interview Questions
3.8
 • 171 Interviews
View all

Trellix Software QA Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

4.0

Work-life balance

4.0

Salary

3.0

Job security

4.0

Company culture

2.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Software QA Engineer

Bangalore / Bengaluru

3-5 Yrs

Not Disclosed

Explore more jobs
Software Development Engineer
71 salaries
unlock blur

₹9 L/yr - ₹34.1 L/yr

Software Engineer
57 salaries
unlock blur

₹10 L/yr - ₹27.5 L/yr

Senior Software Engineer
36 salaries
unlock blur

₹15 L/yr - ₹46 L/yr

Technical Support Engineer
26 salaries
unlock blur

₹5.6 L/yr - ₹23 L/yr

Customer Success Engineer
18 salaries
unlock blur

₹12.5 L/yr - ₹18.1 L/yr

Explore more salaries
Compare Trellix with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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