Upload Button Icon Add office photos
Engaged Employer

i

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

Trianz Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Trianz Software Engineer Trainee Interview Questions and Answers

Updated 30 Dec 2024

Trianz Software Engineer Trainee Interview Experiences

4 interviews found

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

(2 Questions)

  • Q1. Based on core subjects
  • Q2. Based on projects
Round 2 - HR 

(2 Questions)

  • Q1. Casual interview Hr questions
  • Q2. About education background
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 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 

95 aptitude question like 30 quantative , 30 literature , 5 os,network,cloud and 3 coding question simple ones which were last element in fiboncci series , last element in an Arthematic Progression and One pattern matching question .

Round 3 - Technical 

(1 Question)

  • Q1. 4 pillars in OOPS , Swapping problem explain
  • Ans. 

    4 pillars in OOPS are Inheritance, Encapsulation, Abstraction, and Polymorphism. Swapping problem involves exchanging values of two variables without using a temporary variable.

    • 4 pillars in OOPS: Inheritance, Encapsulation, Abstraction, Polymorphism

    • Swapping problem: Exchange values of two variables without using a temporary variable

    • Example: Swapping two variables a and b without using a temporary variable: a = a + b; b

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. General hr question

Interview Preparation Tips

Interview preparation tips for other job seekers - Give examples for the questions asked

Skills evaluated in this interview

Software Engineer Trainee Interview Questions Asked at Other Companies

asked in HSBC Group
Q1. Palindromic Linked List Problem Statement Given a singly linked l ... read more
asked in HSBC Group
Q2. Search in a 2D Matrix Given a 2D matrix MAT of size M x N, where ... read more
asked in GlobalLogic
Q3. Slot Game Problem Statement You are given a slot machine with fou ... read more
Q4. 1. Explain oops and its 4 pillars 2. Explain polymorphism with re ... read more
asked in HSBC Group
Q5. Maximum Level Sum in a Binary Tree Given a Binary Tree with integ ... read more

I applied via Campus Placement and was interviewed in Sep 2022. There were 4 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 - Coding Test 

The first round was of 2.5hrs. It consists aptitude and coding questions.

Round 3 - Technical 

(1 Question)

  • Q1. In the technical interview round, interviewer asked me to introduce myself and then he asked some oops questions and then he asked me to implement the linear search and binary search and asked the time com...
Round 4 - HR 

(1 Question)

  • Q1. In the HR round she started with my intro and then asked about my family background and then asked about the certifications which I have done in the college.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep solving the Data Structures and Algorithms and learn the core subjects OOPS, DBMS.

I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is ArrayList
  • Ans. 

    ArrayList is a dynamic array that can grow or shrink in size during runtime.

    • It is a part of Java Collections Framework.

    • It can store objects of any type.

    • It provides methods to add, remove, and access elements.

    • It is faster than traditional arrays for inserting and deleting elements.

    • Example: ArrayList names = new ArrayList<>();

    • names.add("John"); names.add("Mary"); names.remove(0);

Answered by AI
  • Q2. What is the Difference Between Array and Arraylist
  • Ans. 

    Array is a fixed size data structure while ArrayList is a dynamic size data structure.

    • Array is a primitive data type while ArrayList is a class in Java.

    • Array can hold both primitive and object types while ArrayList can only hold object types.

    • Array uses [] brackets to declare while ArrayList uses ArrayList<>.

    • Array has a fixed size while ArrayList can dynamically increase or decrease in size.

    • Array is faster than ArrayLis...

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be confident in your technical skills and speak calmly

    Skills evaluated in this interview

    Trianz interview questions for designations

     Software Trainee

     (1)

     Software Engineer

     (10)

     Senior Software Engineer

     (3)

     Software Developer

     (1)

     .NET Software Developer

     (1)

     Devops Engineer

     (2)

     QA Engineer

     (1)

     Automation Test Engineer

     (1)

    Interview questions from similar companies

    I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

    Interview Questionnaire 

    1 Question

    • Q1. Oops Concepts and Data Structure Questions.

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

    I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

    Interview Questionnaire 

    4 Questions

    • Q1. Was interviewed as fresher?
    • Q2. Written test conducted? with verbal ability test ? GD
    • Q3. How would u deal with a problematic situation when you are working in a team?
    • Q4. What are your plans about higher studies?

    Interview Preparation Tips

    Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

    I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

    Interview Questionnaire 

    2 Questions

    • Q1. They asked about dbms questions in the form of table formate
    • Q2. They asked code for some python program

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

    I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

    Interview Questionnaire 

    5 Questions

    • Q1. Wap of bubble sort
    • Ans. 

      Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

      • Start from the first element and compare it with the next element

      • If the next element is smaller, swap them

      • Repeat this process for all elements in the array

      • Continue this process until no more swaps are needed

    • Answered by AI
    • Q2. Wap of prime number
    • Ans. 

      A program to print all prime numbers

      • Take input from user for range of numbers

      • Loop through the range and check if each number is prime

      • Print the prime numbers

    • Answered by AI
    • Q3. What is hashmap?
    • Ans. 

      Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

      • Hashmap uses a hash function to map keys to indices in an array.

      • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

      • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

    • Answered by AI
    • Q4. What is inheritance
    • Ans. 

      Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

      • Inheritance allows code reuse and promotes code organization.

      • The existing class is called the parent or superclass, and the new class is called the child or subclass.

      • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

      • For...

    • Answered by AI
    • Q5. Call by value and call by reference

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Be yourself

    Skills evaluated in this interview

    I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

    Interview Questionnaire 

    1 Question

    • Q1. Introduction your self in interview

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

    Interview Questionnaire 

    1 Question

    • Q1. About my college projects and about my passion

    Trianz Interview FAQs

    How many rounds are there in Trianz Software Engineer Trainee interview?
    Trianz interview process usually has 3-4 rounds. The most common rounds in the Trianz interview process are Technical, HR and Resume Shortlist.
    What are the top questions asked in Trianz Software Engineer Trainee interview?

    Some of the top questions asked at the Trianz Software Engineer Trainee interview -

    1. What is the Difference Between Array and Arrayl...read more
    2. 4 pillars in OOPS , Swapping problem expl...read more
    3. What is ArrayL...read more

    Tell us how to improve this page.

    Trianz Software Engineer Trainee Interview Process

    based on 2 interviews

    Interview experience

    4.5
      
    Good
    View more
    Trianz Software Engineer Trainee Salary
    based on 75 salaries
    ₹3.8 L/yr - ₹5.1 L/yr
    At par with the average Software Engineer Trainee Salary in India
    View more details

    Trianz Software Engineer Trainee Reviews and Ratings

    based on 13 reviews

    3.5/5

    Rating in categories

    2.8

    Skill development

    3.8

    Work-life balance

    3.3

    Salary

    3.2

    Job security

    3.0

    Company culture

    3.3

    Promotions

    2.6

    Work satisfaction

    Explore 13 Reviews and Ratings
    Technical Lead
    676 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Senior Software Engineer
    418 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Senior Technical Lead
    370 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Software Engineer
    303 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Senior Systems Engineer
    87 salaries
    unlock blur

    ₹0 L/yr - ₹0 L/yr

    Explore more salaries
    Compare Trianz with

    Wipro

    3.7
    Compare

    Infosys

    3.6
    Compare

    Tech Mahindra

    3.5
    Compare

    HCLTech

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