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
3.4

based on 122 Reviews

Filter interviews by

Trellix SDE Interview Questions and Answers

Updated 8 Oct 2024

Trellix SDE Interview Experiences

2 interviews found

SDE Interview Questions & Answers

user image Anonymous

posted on 8 Oct 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Aptitude Test 

Logical reasoning, english test

Round 2 - One-on-one 

(2 Questions)

  • Q1. Implement binary search tree?
  • Ans. 

    Binary search tree is a data structure where each node has at most two children, with left child less than parent and right child greater.

    • Create a Node class with data, left child, and right child attributes.

    • Implement insert method to add nodes in correct position based on value.

    • Implement search method to find a specific value in the tree.

    • Implement delete method to remove a node from the tree while maintaining the bina

  • Answered by AI
  • Q2. Find middle element of a linked list?
  • Ans. 

    To find the middle element of a linked list, use the slow and fast pointer approach.

    • Initialize two pointers, slow and fast, both pointing to the head of the linked list.

    • Move the slow pointer by one step and the fast pointer by two steps until the fast pointer reaches the end of the list.

    • The element pointed to by the slow pointer at this point will be the middle element of the linked list.

  • Answered by AI

Skills evaluated in this interview

SDE Interview Questions & Answers

user image Anonymous

posted on 11 Apr 2024

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

I applied via Approached by Company and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 2 coding and some tech questions
Round 2 - Technical 

(1 Question)

  • Q1. Again 2 coding and some tech questions
Round 3 - Technical 

(1 Question)

  • Q1. Some project and tech questions
Round 4 - HR 

(2 Questions)

  • Q1. Tech + hr round
  • Q2. Why you want to join company

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparation for dsa and some network related topics would be needed

SDE Interview Questions Asked at Other Companies

asked in Infosys
Q1. Longest Increasing Subsequence Problem Statement Given an array o ... read more
asked in Infosys
Q2. Return Subsets Sum to K Problem Statement Given an integer array ... read more
asked in Nagarro
Q3. Partition to K Equal Sum Subsets Problem Given an array of intege ... read more
asked in Nagarro
Q4. Sort a "K" Sorted Doubly Linked List Given a doubly-linked list w ... read more
asked in Nagarro
Q5. Merge k Sorted Linked Lists You are provided with 'K' sorted link ... read more

Interview questions from similar companies

SDE Interview Questions & Answers

Amadeus user image Ayush Chikate

posted on 20 Dec 2024

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

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

4 sections verbal logical aptitude and coding(in C)

Round 2 - Technical 

(2 Questions)

  • Q1. Puzzles (GFG Puzzles)
  • Q2. Making patterns of triangle and diamond
  • Ans. 

    Creating patterns of triangle and diamond using characters

    • For triangle pattern, use nested loops to print spaces and characters in each row

    • For diamond pattern, divide the diamond into two triangles and print accordingly

    • Examples: Triangle pattern - * ** *** Diamond pattern - * *** ***** *** *

  • Answered by AI

SDE Interview Questions & Answers

UKG user image Anonymous

posted on 20 Oct 2024

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

1 coding question, 19 mcqs on dsa, c++, java, cs fundamnetals

SDE Interview Questions & Answers

Nutanix user image Anonymous

posted on 21 Jun 2024

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

30 mins
3 questions
medium level
easy to answer

Round 2 - Technical 

(2 Questions)

  • Q1. SDLC robot framework related selenium basics
  • Q2. Test methodologies
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Online coding test with 2 coding questions

Round 2 - Technical 

(1 Question)

  • Q1. What is storage differnece for files in ram
  • Ans. 

    Files in RAM are stored temporarily for quick access by the CPU.

    • RAM (Random Access Memory) is volatile memory used for temporary storage of data and instructions.

    • Files stored in RAM are accessed much faster than files stored on a hard drive.

    • RAM is cleared when the computer is turned off, so files stored in RAM are not persistent.

    • Examples of files stored in RAM include open applications, running processes, and cached da

  • Answered by AI

Skills evaluated in this interview

SDE Interview Questions & Answers

Thomson Reuters user image Prashansa Chaudhary

posted on 27 Jan 2024

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

I applied via Campus Placement and was interviewed before Jan 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

Aptitude is pretty easy

Round 2 - Group Discussion 

Need to be good in communication skills

Round 3 - Technical 

(1 Question)

  • Q1. Focused more on Technical skills and behavioral + tech
Round 4 - One-on-one 

(1 Question)

  • Q1. Resume and project based questions
Round 5 - HR 

(1 Question)

  • Q1. Current work and Salary
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Group Discussion 

Maintain a good communication to the hr

Round 2 - Technical 

(5 Questions)

  • Q1. Questions from your resume and projects
  • Q2. Difference between elements and tags
  • Ans. 

    Elements are individual components of a web page, while tags are used to define the structure of elements in HTML.

    • Elements are the actual components on a web page, such as headings, paragraphs, images, etc.

    • Tags are used to define the structure of elements in HTML, such as

      for a heading or

      for a paragraph.

    • Elements can have attributes that provide additional information or functionality, while tags do not.

Answered by AI
  • Q3. Uses of functions in js
  • Ans. 

    Functions in JavaScript are used to define reusable blocks of code that can be called multiple times.

    • Functions can be used to perform specific tasks or calculations.

    • Functions can be passed as arguments to other functions.

    • Functions can be assigned to variables or properties of objects.

    • Functions can be used to create closures for encapsulating data.

    • Functions can be used to create custom methods for objects.

  • Answered by AI
  • Q4. Uses of get elementbyId in js
  • Ans. 

    getElementById is used in JavaScript to access and manipulate an element in the DOM by its unique ID.

    • Used to retrieve a specific element from the DOM by its ID

    • Allows for manipulation of the element's properties, styles, and content

    • Commonly used in event handling and dynamic content updates

  • Answered by AI
  • Q5. Typesof cssess ?
  • Ans. 

    There are three types of CSS: inline, internal, and external.

    • Inline CSS is applied directly to an HTML element using the style attribute.

    • Internal CSS is defined within the head section of an HTML document using the style tag.

    • External CSS is stored in a separate file and linked to the HTML document using the link tag.

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be confident at what you have

    Skills evaluated in this interview

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

    I applied via Approached by Company and was interviewed before Dec 2022. 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 - Technical 

    (3 Questions)

    • Q1. Basic JS concepts and programming related to them
    • Q2. HTML, CSS questions
    • Q3. Framework knowledge
    Round 3 - Technical 

    (1 Question)

    • Q1. Problem solving related to algorithms and data structures

    SDE Interview Questions & Answers

    Amadeus user image Anonymous

    posted on 3 Jan 2025

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

    (2 Questions)

    • Q1. Core java questions
    • Q2. Depper into projects
    Round 2 - HR 

    (1 Question)

    • Q1. Basic and sone tricky hr questions

    Interview Preparation Tips

    Interview preparation tips for other job seekers - 2 rounds technical and hr .go through resume and core concepts and dsa

    Trellix Interview FAQs

    How many rounds are there in Trellix SDE interview?
    Trellix interview process usually has 3 rounds. The most common rounds in the Trellix interview process are Technical, HR and Aptitude Test.
    What are the top questions asked in Trellix SDE interview?

    Some of the top questions asked at the Trellix SDE interview -

    1. Find middle element of a linked li...read more
    2. Implement binary search tr...read more
    3. 2 coding and some tech questi...read more

    Tell us how to improve this page.

    Trellix SDE Interview Process

    based on 2 interviews

    Interview experience

    2.5
      
    Poor
    View more

    SDE Interview Questions from Similar Companies

    TCS SDE Interview Questions
    3.7
     • 12 Interviews
    Infosys SDE Interview Questions
    3.7
     • 3 Interviews
    HCLTech SDE Interview Questions
    3.5
     • 3 Interviews
    Amadeus SDE Interview Questions
    4.0
     • 3 Interviews
    Wipro SDE Interview Questions
    3.7
     • 1 Interview
    UKG SDE Interview Questions
    3.1
     • 1 Interview
    View all
    Software Development Engineer
    70 salaries
    unlock blur

    ₹9 L/yr - ₹34.4 L/yr

    Software Engineer
    54 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 - ₹20 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