Upload Button Icon Add office photos
Engaged Employer

i

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

Trioangle Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Trioangle Technologies Junior Quality Analyst Interview Questions and Answers

Updated 1 Dec 2021

Trioangle Technologies Junior Quality Analyst Interview Experiences

1 interview found

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

Interview Questionnaire 

1 Question

  • Q1. How many rounds are there?
  • Ans. There are 4 rounds 1. Written Test - Fully based on Aptitude and basic testing questions, To writa a scenario for given question 2. Technical Round- This round Fully asked basic testing questions and find scenarios 3. Manager Round- This round based on check your communication skills and attitude 4. CEO Round- This round based on again asked testing questions deeply
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly learn about Testing

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Telephonic Call 

(2 Questions)

  • Q1. They just asked about basic details , qualifications, professional experience, project domain, and ctc, expected ctc etc
  • Q2. Next round simillar

Interview Preparation Tips

Topics to prepare for PolicyBazaar Senior Engineer interview:
  • master your skill related deta
Interview preparation tips for other job seekers - enquire well then plan to go not much i like

I applied via Recruitment Consultant and was interviewed before Jun 2018. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Say About your self
  • Ans. 

    Experienced Senior Consultant with a strong background in project management and client relations.

    • Over 10 years of experience in consulting industry

    • Expertise in project management and client relations

    • Proven track record of successfully leading teams and delivering results

    • Strong communication and problem-solving skills

    • Previous clients include Fortune 500 companies such as XYZ Corp

  • Answered by AI

Interview Preparation Tips

General Tips: I think HR knows what w have mention in our resume and we all do the same mistake that saying about our self what was mention In resume
I guess if we like to build up our confidence while saying what was not mention in resume
Skills: Communication, Body Language, Problem Solving, Time Management
Duration: <1 week

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

Interview Questionnaire 

2 Questions

  • Q1. Program to find all possible combinations of elements from two sets of arrays such that the sum of elements is equal to one of the elements in the array itself.
  • Ans. 

    Program to find all possible combinations of elements from two sets of arrays such that the sum of elements is equal to one of the elements in the array itself.

    • Create two arrays of integers

    • Loop through both arrays and find all possible combinations

    • Check if the sum of elements is equal to any element in the array

    • Return all combinations that meet the criteria

  • Answered by AI
  • Q2. Program to find the next bigger number for the given number by just interchanging it's digits.ex- for 533224, answer is 533242
  • Ans. 

    Program to find the next bigger number for the given number by interchanging its digits.

    • Convert the number to a string to access individual digits

    • Start from the rightmost digit and find the first digit that is smaller than the digit to its right

    • Swap this digit with the smallest digit to its right that is greater than it

    • Sort the digits to the right of the swapped digit in ascending order

    • Convert the string back to a numb

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have been through 5 interview rounds in MakeMyTrip including one 1 written test followed by 4 face to face interview. Most of the questions asked were related to Java only. Many programs were asked to write algorithm for the given problem based on DS.

Be confident and prepare well on your DS and Algorithms concepts. Practice more on programming some basic problems.

Skills evaluated in this interview

I was interviewed before Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a written test with 2 coding problems.

  • Q1. 

    Combination Sum Problem Statement

    Given an array of distinct positive integers ARR and a non-negative integer 'B', find all unique combinations in the array where the sum is equal to 'B'. Numbers can be c...

  • Ans. 

    The task is to find all unique combinations in an array where the sum is equal to a given target sum, with elements in non-decreasing order.

    • Use backtracking to generate all possible combinations.

    • Sort the array to ensure elements are in non-decreasing order.

    • Keep track of the current combination and sum while exploring the array.

    • Recursively explore all possible combinations.

    • Return the valid combinations that sum up to th

  • Answered by AI
  • Q2. 

    Next Greater Number Problem Statement

    Given a string S which represents a number, determine the smallest number strictly greater than the original number composed of the same digits. Each digit's frequenc...

  • Ans. 

    The task is to find the smallest number greater than the given number with the same set of digits.

    • Iterate from right to left to find the first digit that can be swapped with a larger digit to make the number greater.

    • Swap this digit with the smallest digit to its right that is larger than it.

    • Sort all digits to the right of the swapped digit in ascending order to get the smallest number.

    • If no such number exists, return -

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMakeMyTrip interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Round 1 - HR 

(2 Questions)

  • Q1. Give a brief introduction about yourself.
  • Q2. Tell me something about your final year project . or any internship you have done.
Round 2 - HR 

(1 Question)

  • Q1. Brief introduction . why byjus what do you know about the job of call auditor. how do you manage time in work . how to manage stresfull working hours . your hobbies.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident while answering and Make a good eye contact
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I was interviewed before Apr 2023.

Round 1 - Coding Test 

Basic questions only

Round 2 - Technical 

(1 Question)

  • Q1. Automation related items api and perf
Round 3 - HR 

(1 Question)

  • Q1. None very hard it was okay only. Easy only
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Technical questions project

Round 2 - Technical 

(1 Question)

  • Q1. Write program to find duplicate elements from array
  • Ans. 

    Program to find duplicate elements from array of strings

    • Iterate through the array and store elements in a HashMap with element as key and count as value

    • Check if count of any element is greater than 1, then it is a duplicate

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed before Oct 2022. There were 6 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 - Initial Discussion 

(1 Question)

  • Q1. Basics on Automation
Round 3 - Coding Test 

2 programming question moderate level

Round 4 - Technical 

(1 Question)

  • Q1. Java Questions/ Selenium Question/ SQL
Round 5 - One-on-one 

(1 Question)

  • Q1. Managerial Round. Puzzle/ Basic program
Round 6 - HR 

(1 Question)

  • Q1. Salary Discussion, basic HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Go for it. Good Company to work with.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(3 Questions)

  • Q1. Api status codes, api debugging questions
  • Q2. If you get 500 error how to debug.
  • Ans. 

    To debug a 500 error, check server logs, review code changes, test API endpoints, and use debugging tools.

    • Check server logs for error details

    • Review recent code changes that may have caused the error

    • Test API endpoints using tools like Postman

    • Use debugging tools like Chrome DevTools or Firebug

  • Answered by AI
  • Q3. One java string question merge two strings diagonally.
  • Ans. 

    Merge two strings diagonally in a Java array of strings.

    • Iterate through each row and column to merge characters diagonally

    • Keep track of the diagonal position to insert characters from both strings

    • Handle cases where strings have different lengths

    • Example: String 1: 'hello', String 2: 'world', Merged: 'hweolrllod'

    • Example: String 1: 'abc', String 2: '123', Merged: 'a1b2c3'

  • Answered by AI

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.1k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 753 Interviews
Swiggy Interview Questions
3.8
 • 428 Interviews
PolicyBazaar Interview Questions
3.6
 • 356 Interviews
Zomato Interview Questions
3.8
 • 312 Interviews
Freshworks Interview Questions
3.5
 • 158 Interviews
Ola Cabs Interview Questions
3.4
 • 139 Interviews
MakeMyTrip Interview Questions
3.6
 • 122 Interviews
InMobi Interview Questions
3.5
 • 35 Interviews
View all
Software Tester
15 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Development Executive
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

IOS Developer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Trioangle Technologies with

Ola Cabs

3.4
Compare

Swiggy

3.8
Compare

Zomato

3.8
Compare

Flipkart

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