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 and Answers

Updated 20 Mar 2024

Tricon Infotech Dot Net Engineer Interview Experiences

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

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Tricon Infotech?
Ask anonymously on communities.

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

Dot Net Engineer Interview Questions Asked at Other Companies

Q1. What is middleware and how do you implement custom middleware?
Q2. What are indexers in C#?
Q3. What is an application pool?
Q4. What is AsNoTracking in LINQ?
Q5. How do you test APIs?

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
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Coding Test 

Easy to medium leetcode questions

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
No response

I appeared for an interview in Nov 2024, where I was asked the following questions.

  • Q1. Tell me about your self
  • Q2. Write a for palindrome
  • Q3. SQL inner Joins
  • Q4. Object orientend programming
Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Google and was interviewed in Aug 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

Coding questions about array and string.

Round 3 - Coding Test 

Cosing questions about sql and ds.

Round 4 - HR 

(1 Question)

  • Q1. Personal and behavioral questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with the fundamentals.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. How make a queue using a stack
  • Ans. 

    To implement a queue using a stack, use two stacks and simulate the queue operations.

    • Use two stacks, one for enqueue operation and one for dequeue operation.

    • For enqueue operation, simply push elements onto the stack used for enqueueing.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

    • Then pop from the dequeue stack to simulate dequeue operation.

  • Answered by AI
  • Q2. Create a linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to null

    • Add nodes by updating next pointers

    • Traverse the list by following next pointers

  • Answered by AI

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jul 2024.

Round 1 - Coding Test 

Leet code medium level question

Round 2 - Technical 

(2 Questions)

  • Q1. About Java Streams
  • Q2. Restful API coding completion based on given file
  • Ans. 

    Guide to completing a RESTful API coding task with essential pointers and examples.

    • Understand REST principles: Use HTTP methods (GET, POST, PUT, DELETE) appropriately.

    • Define clear endpoints: Example - /api/users for user-related operations.

    • Implement status codes: Use 200 for success, 404 for not found, 500 for server errors.

    • Use JSON for data interchange: Ensure requests and responses are in JSON format.

    • Consider authent...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. To check your attitude
  • Q2. Given detailed about company and what project you are going to work on?
Round 4 - One-on-one 

(5 Questions)

  • Q1. Hashmap working
  • Q2. Multithreading cases
  • Q3. Scenario specific on how to handle multiple events on a single variable to have accurate result
  • Ans. 

    Managing multiple events on a single variable requires careful synchronization to ensure accurate results.

    • Use locks or mutexes to prevent race conditions when accessing the variable.

    • Implement event debouncing to limit the frequency of updates, ensuring only the final event is processed.

    • Utilize a queue to handle events sequentially, processing them one at a time to maintain accuracy.

    • Consider using atomic operations for ...

  • Answered by AI
  • Q4. Database indexing
  • Q5. Architecture level
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Assignment 

Fizz buzz question and array related

Round 2 - Technical 

(1 Question)

  • Q1. Basic react, javascript and one question to find duplicate.
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

I applied via Referral and was interviewed before Aug 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 - Aptitude Test 

General topics like mathe, English, social etc

Interview Preparation Tips

Topics to prepare for IT By Design Software Engineer interview:
  • Python
  • general
Interview preparation tips for other job seekers - It is best choice to our life . If I can join in this company. I can learn more things by gaining work experience.

Tricon Infotech Interview FAQs

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

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

  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.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
IT By Design Interview Questions
3.6
 • 41 Interviews
ConsultAdd Interview Questions
3.6
 • 37 Interviews
View all
Software Engineer
220 salaries
unlock blur

₹5 L/yr - ₹18.9 L/yr

Senior Software Engineer
90 salaries
unlock blur

₹10.5 L/yr - ₹28.1 L/yr

Associate Software Engineer
80 salaries
unlock blur

₹5 L/yr - ₹12.6 L/yr

Software Developer
48 salaries
unlock blur

₹4.5 L/yr - ₹17.5 L/yr

Java Developer
43 salaries
unlock blur

₹2.5 L/yr - ₹4.9 L/yr

Explore more salaries
Compare Tricon Infotech with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.0
Compare

Value Point Systems

3.6
Compare

F1 Info Solutions and Services

3.7
Compare
write
Share an Interview