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

Clear (1)

Trianz .NET Software Developer Interview Questions, Process, and Tips

Updated 9 Jan 2025

Trianz .NET Software Developer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Middleware in .Net core
  • Ans. 

    Middleware in .NET Core is a component that can handle requests and responses in the application pipeline.

    • Middleware is a piece of software that can intercept and process HTTP requests and responses.

    • Middleware components are added to the application pipeline in the Startup class.

    • Middleware can perform tasks such as authentication, logging, error handling, etc.

    • Example: UseMiddleware<CustomMiddleware>()

  • Answered by AI
  • Q2. How authentication work for web api
  • Ans. 

    Authentication for web API involves verifying the identity of users before granting access to resources.

    • Authentication can be done using tokens like JWT or OAuth.

    • API endpoints can be secured using authentication middleware.

    • User credentials are validated against a data store like a database.

    • Authentication headers like Authorization are used to send tokens with requests.

  • Answered by AI
  • Q3. How to configure DI services
  • Ans. 

    DI services can be configured in .NET by registering services in ConfigureServices method of Startup class

    • Register services using AddTransient, AddScoped, or AddSingleton methods

    • Use IServiceCollection interface to add services

    • Example: services.AddTransient<IMyService, MyService>()

  • Answered by AI
  • Q4. How to handle CORS
  • Ans. 

    CORS can be handled by configuring the server to allow cross-origin requests from specified origins.

    • Configure server to include appropriate CORS headers like Access-Control-Allow-Origin

    • Use middleware or filters to handle CORS in .NET applications

    • Consider security implications when allowing cross-origin requests

  • Answered by AI

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. React life cycle

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

Interview Questionnaire 

1 Question

  • Q1. Hr

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be true to what you are putting before the interviewer . Try to put your ideas Add something you did well in your career like in projects /research which you know very well and versed in concepts about it for open interview so that interviewer can get bandwidth where he can ask questions from. This is simply a key .

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 140 minutes
Round difficulty - Medium

Test timing was at 2:00 pm , it was conducted in a college and the environment was good for the test. Camera was a primary part of test, so no suspicious activity.

  • Q1. 

    Sum of Two Numbers Represented as Arrays

    Given two numbers in the form of two arrays where each element of the array represents a digit, calculate the sum of these two numbers and return this sum as an ar...

  • Ans. 

    Given two numbers represented as arrays, calculate their sum and return the result as an array.

    • Iterate through the arrays from right to left, adding digits and carrying over if necessary

    • Handle cases where one array is longer than the other by considering the remaining digits

    • Ensure the final sum array does not have any leading zeros

  • Answered by AI
Round 2 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

The round was conducted at around 12 p.m. I was called at the college location and then it was conducted. The interviewer was quite polite and frank.

Round 3 - HR 

Round duration - 8 minutes
Round difficulty - Easy

This round was conducted right after finishing and clearing the technical round at the same place and on the same day.

Interview Preparation Tips

Eligibility criteriaAbove 60 %Wipro Limited interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Database Concepts, Coding problemsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 2-3 Coding problems daily so your logic building becomes stronger.
Tip 2 : Exercise problems based on OOPS concepts and others too.
Tip 3 : If you can have your own project built, then it's the major point and will act as a plus point.

Application resume tips for other job seekers

Tip 1 : Your resume should be in standard form, short and simple will be more effective.
Tip 2 : Whatever you have learned, you need to mention it in your resume as that will be your primary source of selection and having project on your resume is important.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Amcat and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Refer R S Agarwal book for apptitude

Round 2 - One-on-one 

(1 Question)

  • Q1. Write a c program on fractional numbers
  • Ans. 

    A C program to perform arithmetic operations on fractional numbers.

    • Use float or double data type to store fractional numbers.

    • Use scanf() to take input from the user.

    • Perform arithmetic operations like addition, subtraction, multiplication, and division.

    • Use printf() to display the result.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared refer R S Agarwal book for apptitude test

Skills evaluated in this interview

I applied via LinkedIn and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Which technologies your interested to work
  • Q2. Question related to Java coding
  • Q3. Question from C language
  • Q4. Question from AI & ML

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on all the latest technologies, brush your regular skills

I applied via Job Fair and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Whatever mentioned in resume.. be strong in those concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with basics, c basic algorithm

Interview Questionnaire 

1 Question

  • Q1. Difference between java and python
  • Ans. 

    Java is statically typed, compiled language while Python is dynamically typed, interpreted language.

    • Java is faster than Python due to its compilation process.

    • Python has simpler syntax and is easier to learn.

    • Java is used for building enterprise-level applications while Python is used for scripting and automation.

    • Java has strict type checking while Python has loose type checking.

    • Java has better support for multithreading...

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Sql query

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with dbms

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

Interview Questionnaire 

1 Question

  • Q1. How do you configure Ant build file?
  • Ans. 

    Ant build file can be configured using XML syntax with various tags and attributes.

    • Create a build.xml file with targets and tasks

    • Use tag to define project properties

    • Use tag to define tasks and dependencies

    • Use tag to define properties

    • Use tag to define custom tasks

    • Use tag to print messages

    • Use tag to compile Java code

    • Use tag to create JAR files

    • Use tag to copy files

    • Use tag to delete files

    • Use tag to create directo...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on all the build related questions. Google is the best source.,
Contribute & help others!
anonymous
You can choose to be anonymous

Trianz Interview FAQs

How many rounds are there in Trianz .NET Software Developer interview?
Trianz interview process usually has 1 rounds. The most common rounds in the Trianz interview process are Technical.
What are the top questions asked in Trianz .NET Software Developer interview?

Some of the top questions asked at the Trianz .NET Software Developer interview -

  1. how authentication work for web ...read more
  2. how to configure DI servi...read more
  3. how to handle C...read more

Recently Viewed

INTERVIEWS

Magna International

No Interviews

SALARIES

HashedIn by Deloitte

INTERVIEWS

Magna International

No Interviews

INTERVIEWS

Magna International

20 top interview questions

INTERVIEWS

HashedIn by Deloitte

No Interviews

INTERVIEWS

Trianz

No Interviews

INTERVIEWS

Trianz

No Interviews

INTERVIEWS

99Games

No Interviews

INTERVIEWS

Trianz

No Interviews

INTERVIEWS

Trianz

No Interviews

Tell us how to improve this page.

Trianz .NET Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 788 Interviews
KPIT Technologies Interview Questions
3.4
 • 278 Interviews
CitiusTech Interview Questions
3.4
 • 269 Interviews
View all
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