Upload Button Icon Add office photos

Filter interviews by

Tricon Infotech Software Developer Interview Questions and Answers

Updated 13 Jan 2025

Tricon Infotech Software Developer Interview Experiences

4 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is SPA? How does angular work?
  • Ans. 

    SPA stands for Single Page Application. Angular is a popular JavaScript framework for building SPAs.

    • SPA is a web application that loads a single HTML page and dynamically updates the page as the user interacts with it.

    • Angular is a front-end framework that allows developers to build dynamic web applications using HTML, CSS, and JavaScript.

    • Angular uses components to create the user interface and services to handle busine...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain FastAPI and headers, path parameters, etc
  • Ans. 

    FastAPI is a modern web framework for building APIs with Python, providing easy handling of headers, path parameters, etc.

    • FastAPI is a Python web framework for building APIs quickly and efficiently

    • It provides easy handling of headers, path parameters, query parameters, and request bodies

    • Headers can be accessed using the request.headers attribute

    • Path parameters are defined in the route URL and accessed as function param...

  • Answered by AI
  • Q2. Write a API to demonstrate GET, POST, PUT
  • Ans. 

    API demonstrating GET, POST, PUT methods

    • Create a route for GET method to retrieve data

    • Create a route for POST method to add new data

    • Create a route for PUT method to update existing data

  • Answered by AI
Round 2 - Coding Test 

API working, S3 snippets

Round 3 - HR 

(1 Question)

  • Q1. Behavioural questions

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. System design round
  • Q2. Nodejs promises

Interview Preparation Tips

Interview preparation tips for other job seekers - They keep all round and say selected until director says you are not selected. Don’t attend. Tech interview panel members are chill and great
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I appeared for an interview before Oct 2022.

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 

First round is coding

Round 3 - Technical 

(2 Questions)

  • Q1. Second round is technical
  • Q2. Interview process is very smooth
Round 4 - One-on-one 

(1 Question)

  • Q1. Hr discussion was there

Tricon Infotech interview questions for designations

 Software Engineer

 (3)

 Associate Software Engineer

 (2)

 Senior Test Engineer

 (1)

 Technical Lead

 (1)

Interview questions from similar companies

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

I applied via Job Portal and was interviewed before Nov 2022. There were 2 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 

(2 Questions)

  • Q1. Regarding the Past Projects, mine were with Firebase and Flutter.
  • Q2. Medium DSA questions for Array and String and Flutter

Interview Preparation Tips

Topics to prepare for Junglee Games Software Developer interview:
  • Flutter
  • firebase
  • Node.Js

I applied via Campus Placement and was interviewed before Oct 2021. There were 2 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 - One-on-one 

(3 Questions)

  • Q1. DS Algo, Backend and DB
  • Q2. Stack(DS) question and DB based questions
  • Q3. Scaling (Horizontal, Vertical) with use cases
  • Ans. 

    Scaling refers to increasing capacity of a system. Horizontal scaling adds more machines, while vertical scaling adds more resources to a machine.

    • Horizontal scaling involves adding more machines to a system to increase capacity

    • Vertical scaling involves adding more resources to a machine to increase capacity

    • Use cases for horizontal scaling include handling increased traffic or adding redundancy

    • Use cases for vertical sca...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Junglee Games Software Developer interview:
  • Backend
  • Data Structures
  • Database
Interview preparation tips for other job seekers - Keep your DS concepts clear and be clear on your answers
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

1 hour online test ..

Round 2 - Technical 

(1 Question)

  • Q1. Programming related questions.
Round 3 - Technical 

(1 Question)

  • Q1. DSA round (easy to medium)
Round 4 - HR 

(1 Question)

  • Q1. Technical+ hr round
Round 5 - Behavioral 

(1 Question)

  • Q1. Technical questions.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Data structures algorithms
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

It was ok. I was not able to solve all the questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Remove the last element from a linkedlist
  • Ans. 

    To remove the last element from a linked list, iterate to the second last node and update its next pointer to null.

    • Iterate through the linked list to find the second last node

    • Update the next pointer of the second last node to null

  • Answered by AI
  • Q2. Some basic questions on oops dbms and os

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

Round duration - 50 minutes
Round difficulty - Medium

Round 2 - Face to Face 

(1 Question)

Round duration - 20 minutes
Round difficulty - Medium

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Given an array and a target sum, find pairs of elements that add up to the target sum.

    • Iterate through the array and for each element, check if the complement (target sum - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list. Otherwise, add the current element to the hash set.

    • Sort the pairs based on the first element and then the second element to meet the required output form

  • Answered by AI
Round 3 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

Round 4 - Face to Face 

(1 Question)

Round duration - 40 minutes
Round difficulty - Hard

  • Q1. Can you provide an example of how to use pointers in C/C++ and discuss different concepts related to them?
  • Ans. 

    Pointers in C/C++ are variables that store memory addresses. They are used to manipulate memory directly and improve performance.

    • Pointers are declared using an asterisk (*) before the variable name.

    • Pointers can be used to dynamically allocate memory using functions like malloc() and free().

    • Pointers can be used to pass variables by reference to functions.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in GurgaonEligibility criteriaAbove 7 CGPA, No backlogsThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures,OOPS, SQL Queries, Normalization,Software Development Life Cycles, PointersTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 1 project
Tip 2 : Practice Data structure programming questions
Tip 3 : Prepare concepts with examples (Coding/Numericals)

Application resume tips for other job seekers

Tip 1 : Mention Projects
Tip 2 : Mention only those technologies which you are confident enough.
Tip 3 : Mention extra curricular activities if have.

Final outcome of the interviewSelected

Skills evaluated in this interview

Tricon Infotech Interview FAQs

How many rounds are there in Tricon Infotech Software Developer interview?
Tricon Infotech interview process usually has 2-3 rounds. The most common rounds in the Tricon Infotech interview process are Technical, Coding Test and One-on-one Round.
How to prepare for Tricon Infotech Software Developer 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 Tricon Infotech. The most common topics and skills that interviewers at Tricon Infotech expect are Business process, High level design and Test Cases.
What are the top questions asked in Tricon Infotech Software Developer interview?

Some of the top questions asked at the Tricon Infotech Software Developer interview -

  1. What is SPA? How does angular wo...read more
  2. Explain FastAPI and headers, path parameters, ...read more
  3. Write a API to demonstrate GET, POST, ...read more

Tell us how to improve this page.

Tricon Infotech Software Developer Interview Process

based on 4 interviews

Interview experience

3.5
  
Good
View more
Tricon Infotech Software Developer Salary
based on 46 salaries
₹3.6 L/yr - ₹14 L/yr
8% more than the average Software Developer Salary in India
View more details

Tricon Infotech Software Developer Reviews and Ratings

based on 5 reviews

4.2/5

Rating in categories

4.4

Skill development

4.1

Work-life balance

3.9

Salary

4.1

Job security

4.1

Company culture

4.2

Promotions

4.4

Work satisfaction

Explore 5 Reviews and Ratings
Software Engineer
200 salaries
unlock blur

₹6 L/yr - ₹18.8 L/yr

Associate Software Engineer
76 salaries
unlock blur

₹5 L/yr - ₹12.6 L/yr

Senior Software Engineer
74 salaries
unlock blur

₹10.5 L/yr - ₹30 L/yr

Software Developer
46 salaries
unlock blur

₹3.6 L/yr - ₹14 L/yr

Java Developer
38 salaries
unlock blur

₹2.5 L/yr - ₹4.9 L/yr

Explore more salaries
Compare Tricon Infotech with

Maxgen Technologies

4.5
Compare

Value Point Systems

3.7
Compare

JoulestoWatts Business Solutions

2.9
Compare

F1 Info Solutions and Services

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