Upload Button Icon Add office photos

Tricon Infotech

Compare button icon Compare button icon Compare

Filter interviews by

Tricon Infotech Dot Net Engineer Interview Questions, Process, and Tips for Experienced

Updated 20 Mar 2024

Tricon Infotech Dot Net Engineer Interview Experiences for Experienced

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(5 Questions)

  • Q1. What are indexer in c#?
  • Ans. 

    Indexers in C# allow objects to be indexed like arrays, providing a way to access elements using an index value.

    • Indexers are defined using 'this' keyword followed by square brackets containing the index parameters.

    • They can be used to get or set the value of an element in a collection or class.

    • Example: public string this[int index] { get { return myArray[index]; } set { myArray[index] = value; }}

  • Answered by AI
  • Q2. What is application Poll?
  • Ans. 

    Application Poll is a process where the application periodically checks for updates or changes in a certain resource or data source.

    • Application Polling is commonly used in web applications to update data without the need for manual refresh.

    • It helps in keeping the application up-to-date with the latest information.

    • Polling intervals can be set based on the frequency of updates in the resource being monitored.

  • Answered by AI
  • Q3. What is AsNoTracking in Linq?
  • Ans. 

    AsNoTracking in Linq is used to disable change tracking in Entity Framework, improving performance by not storing entities in the context.

    • AsNoTracking method is used to retrieve data without tracking changes made to the entities.

    • It is useful when you only need to read data and do not intend to update or delete it.

    • By using AsNoTracking, you can improve performance by avoiding the overhead of storing entities in the cont...

  • Answered by AI
  • Q4. How do you test Api?
  • Ans. 

    API testing involves verifying the functionality, performance, reliability, and security of an API.

    • Write test cases to cover all possible scenarios

    • Use tools like Postman or SoapUI for manual testing

    • Automate testing using tools like Selenium or JUnit

    • Verify response codes, data formats, and error handling

    • Perform load testing to check performance under heavy traffic

  • Answered by AI
  • Q5. What is middleware and how do you implement custom middleware?
  • Ans. 

    Middleware is software that acts as a bridge between an operating system or database and applications, allowing them to communicate with each other.

    • Middleware is a layer of software that connects different components of an application, such as the frontend and backend.

    • It can handle tasks like authentication, logging, error handling, and request processing.

    • Custom middleware can be implemented by creating a function that...

  • Answered by AI

Skills evaluated in this interview

Dot Net Engineer Jobs at Tricon Infotech

View all

Interview questions from similar companies

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

Interview Preparation Tips

Round: Technical Interview
Experience: this was a telephonic round : There I was asked basics of web development (e.g Session, hidden variable difference between POST and GET etc. ) and basics of PHP e.g global variables etc , little bit of mysql e.g joins , difference between left and right joins.

Round: Technical Interview
Experience: This was pretty much about interview rounds. I got the offer.

Skills: Core java, OOP, PHP
College Name: na

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

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Coding Test 

If you are a fresher , then this is for you else almost no coding test for experienced candidates.

Round 2 - One-on-one 

(1 Question)

  • Q1. Javascript basics, Angular react general questions depends upon profile.
Round 3 - Behavioral 

(1 Question)

  • Q1. They asked general questions related to some hectic situation faced in previous company / project..

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm . Clear your basics . That's it.

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Medium

It was in the morning around 9:00Am-9:30AM. Platform used for this round was hacerrank. Questions were of moderate to difficult level.

  • Q1. 

    Count Subarrays with Given XOR Problem Statement

    You are given an array of integers ARR and an integer X. Your task is to determine the number of subarrays of ARR whose bitwise XOR is equal to X.

    Example...

  • Ans. 

    Count the number of subarrays in an array whose XOR is equal to a given value.

    • Iterate through the array and keep track of XOR values and their frequencies using a hashmap.

    • For each element in the array, calculate the XOR value with all previous elements and check if it equals the given XOR value.

    • Use the concept of XOR to efficiently solve the problem.

    • Handle edge cases like XOR value being 0 separately.

    • Time complexity ca...

  • Answered by AI
  • Q2. 

    Distinct Characters Problem Statement

    Given a string STR, return all possible non-empty subsequences with distinct characters. The order of the strings returned is not important.

    Example:

    Input:
    STR = ...
  • Ans. 

    Return all possible non-empty subsequences with distinct characters from a given string.

    • Iterate through all possible subsequences of the input string

    • Check for distinct characters in each subsequence

    • Return the distinct character subsequences as an array of strings

  • Answered by AI
Round 2 - HR 

Round duration - 15 minutes
Round difficulty - Easy

It was in the night around 8:00PM-8:20PM. Interviewer was very calm in questioning. Platform used for this round was Skype and the questions focused more on personality rather than total.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in DelhiEligibility criteriaAbove 7 CGPAThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms, Dynamic Programming, AptitudeTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude questions a lot.
Tip 2 : Do some projects
Tip 3 : Research about company thoroughly

Application resume tips for other job seekers

Tip 1 : It should be in proper format.
Tip 2 : Each skills should be mentioned properly.

Final outcome of the interviewSelected

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. He asked me to fined n prime number

Interview Preparation Tips

Interview preparation tips for other job seekers - Lean basic array string type questions.some SQL query please
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Normal aptitude questions

Round 2 - Coding Test 

Python basic and some basic coding questions

Round 3 - Coding Test 

Advance level coding question

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of Python
  • Q2. Basics of Django
Round 2 - Technical 

(2 Questions)

  • Q1. Python concepts knowledge check
  • Q2. Django architecture and projects discussion
Round 3 - Behavioral 

(1 Question)

  • Q1. General communication about the role and previous experience
Round 4 - HR 

(1 Question)

  • Q1. Package negotiation and culture check
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.

Tricon Infotech Interview FAQs

How many rounds are there in Tricon Infotech Dot Net Engineer interview for experienced candidates?
Tricon Infotech interview process for experienced candidates usually has 1 rounds. The most common rounds in the Tricon Infotech interview process for experienced candidates are Technical.
How to prepare for Tricon Infotech Dot Net Engineer interview for experienced candidates?
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 .NET, ASP.NET, C#, Net MVC and OOPS.
What are the top questions asked in Tricon Infotech Dot Net Engineer interview for experienced candidates?

Some of the top questions asked at the Tricon Infotech Dot Net Engineer interview for experienced candidates -

  1. What is middleware and how do you implement custom middlewa...read more
  2. What are indexer in ...read more
  3. What is application Po...read more

Tell us how to improve this page.

Tricon Infotech Dot Net Engineer Interview Process for Experienced

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
IT By Design Interview Questions
3.5
 • 40 Interviews
ConsultAdd Interview Questions
3.5
 • 36 Interviews
View all
Software Engineer
205 salaries
unlock blur

₹5 L/yr - ₹18.8 L/yr

Senior Software Engineer
77 salaries
unlock blur

₹10.5 L/yr - ₹30 L/yr

Associate Software Engineer
77 salaries
unlock blur

₹5 L/yr - ₹12.6 L/yr

Software Developer
44 salaries
unlock blur

₹4.3 L/yr - ₹14.4 L/yr

Java Developer
39 salaries
unlock blur

₹2.5 L/yr - ₹4.9 L/yr

Explore more salaries
Compare Tricon Infotech with

Maxgen Technologies

4.6
Compare

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

2.9
Compare

F1 Info Solutions and Services

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