Upload Button Icon Add office photos

Trigent Software

Compare button icon Compare button icon Compare

Filter interviews by

Trigent Software Interview Questions and Answers

Updated 1 Jul 2025
Popular Designations

29 Interview questions

A Senior Software Engineer was asked 6d ago
Q. When you access a URL through a browser, CURL, or any other method, what happens in the background?
Ans. 

Hitting a URL initiates a series of network and application processes to retrieve and display web content.

  • 1. DNS Resolution: The browser queries a DNS server to translate the URL into an IP address.

  • 2. TCP Connection: A TCP connection is established with the server using the IP address on port 80 (HTTP) or 443 (HTTPS).

  • 3. HTTP Request: The browser sends an HTTP request (GET, POST, etc.) to the server for the desired...

View all Senior Software Engineer interview questions
A Software Engineer was asked 4mo ago
Q. Explain HTTP methods.
Ans. 

HTTP methods are actions that can be performed on a resource, such as GET, POST, PUT, DELETE.

  • GET - Retrieve data from a server

  • POST - Send data to a server to create/update a resource

  • PUT - Update a resource on the server

  • DELETE - Remove a resource from the server

View all Software Engineer interview questions
A Senior Software Engineer was asked 9mo ago
Q. Explain the routing concept in Angular.
Ans. 

Routing in Angular is the process of navigating between different components or views based on the URL.

  • Angular uses the Angular Router module to handle routing.

  • Routes are defined in the app-routing.module.ts file using the RouterModule.forRoot() method.

  • Routes can have path, component, redirectTo, pathMatch, and children properties.

  • RouterOutlet directive is used in the main app component to display the routed compo...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 9mo ago
Q. What is the Angular lifecycle?
Ans. 

Angular lifecycle hooks manage component creation, updates, and destruction, ensuring efficient rendering and resource management.

  • ngOnInit: Called once after the first ngOnChanges. Ideal for initialization logic. Example: Fetching data from a service.

  • ngOnChanges: Invoked before ngOnInit and whenever one or more data-bound input properties change. Example: Reacting to input changes.

  • ngDoCheck: Called during every ch...

View all Senior Software Engineer interview questions
A Software Developer was asked 9mo ago
Q. Explain the features of Java.
Ans. 

Java is a versatile programming language known for its platform independence, object-oriented features, and robust libraries.

  • Platform independence - Java programs can run on any platform that has a Java Virtual Machine (JVM)

  • Object-oriented - Java supports the principles of encapsulation, inheritance, and polymorphism

  • Robust libraries - Java has a vast collection of libraries for various tasks, such as networking, G...

View all Software Developer interview questions
A Software Developer was asked 9mo ago
Q. Explain collections.
Ans. 

Collections are data structures in programming that store and manage groups of related objects or values.

  • Types of collections include Lists, Sets, and Maps.

  • Lists (e.g., ArrayList in Java) allow duplicate elements and maintain order.

  • Sets (e.g., HashSet in Java) do not allow duplicates and are unordered.

  • Maps (e.g., HashMap in Java) store key-value pairs for efficient data retrieval.

View all Software Developer interview questions
A Senior Data Engineer was asked 10mo ago
Q. You are given an array prices where prices[i] is the price of a given stock on the ith day. You want to maximize your profit by choosing a single day to buy one stock and choosing a different day in the fut...
Ans. 

Use a simple algorithm to find the best days to buy and sell a stock based on price list.

  • Iterate through the list of prices and keep track of the minimum price and maximum profit

  • Calculate the profit for each day by subtracting the current price from the minimum price

  • Update the maximum profit if a higher profit is found

  • Return the buy and sell days that result in the maximum profit

View all Senior Data Engineer interview questions
Are these interview questions helpful?
A Devops Engineer was asked
Q. Why is Docker needed?
Ans. 

Docker is needed for containerization, enabling easy deployment, scaling, and management of applications.

  • Allows for consistent environments across different systems

  • Improves application portability and scalability

  • Facilitates faster deployment and updates

  • Enables efficient resource utilization

  • Simplifies dependency management

View all Devops Engineer interview questions
A Marketing Research Executive was asked
Q. What is the difference between a service-based company and a product-based company?
Ans. 

Service-based companies provide intangible offerings, while product-based companies sell tangible goods.

  • Service-based companies focus on delivering expertise or assistance (e.g., consulting firms).

  • Product-based companies create and sell physical items (e.g., electronics manufacturers).

  • Revenue models differ: service companies often charge hourly or project-based fees, while product companies sell items at a set pri...

View all Marketing Research Executive interview questions
A RPA Developer was asked
Q. What are the limitations of RPA?
Ans. 

RPA cannot handle tasks that require human emotions, creativity, and critical thinking.

  • RPA cannot make decisions based on emotions or intuition.

  • RPA cannot come up with creative solutions to complex problems.

  • RPA cannot adapt to unexpected situations that require critical thinking.

  • RPA cannot handle tasks that involve empathy or understanding human emotions.

  • RPA cannot replace jobs that require human interaction or co...

View all RPA Developer interview questions

Trigent Software Interview Experiences

70 interviews found

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

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. DSA Question Roman Numerals to Integer
  • Q2. When you hit URL, through Browser/CURL/any form what happens in Background?
  • Ans. 

    Hitting a URL initiates a series of network and application processes to retrieve and display web content.

    • 1. DNS Resolution: The browser queries a DNS server to translate the URL into an IP address.

    • 2. TCP Connection: A TCP connection is established with the server using the IP address on port 80 (HTTP) or 443 (HTTPS).

    • 3. HTTP Request: The browser sends an HTTP request (GET, POST, etc.) to the server for the desired reso...

  • Answered by AI
  • Q3. SSL Certification and How it works.
  • Ans. 

    SSL certification secures data transmission over the internet using encryption and authentication.

    • SSL (Secure Sockets Layer) encrypts data between a client and server to ensure privacy.

    • It uses a combination of public and private keys for secure communication.

    • When a user connects to a website, the server presents its SSL certificate to verify its identity.

    • Browsers display a padlock icon in the address bar for SSL-secure...

  • Answered by AI

HR Associate Interview Questions & Answers

user image Anonymous

posted on 1 Jul 2025

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

I appeared for an interview in Jan 2025, where I was asked the following questions.

  • Q1. Tell me about yourself
  • Q2. Do you know what is Recruiting
  • Ans. 

    Recruiting is the process of identifying, attracting, and selecting qualified candidates for job openings within an organization.

    • Identifying job requirements: Understanding the skills and qualifications needed for a position.

    • Sourcing candidates: Utilizing job boards, social media, and networking to find potential candidates.

    • Screening resumes: Reviewing applications to shortlist candidates who meet the job criteria.

    • Cond...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

A typical coding test would feature a request to implement a Caesar cipher code.

Round 2 - Technical 

(2 Questions)

  • Q1. Normal TR round asked for two sum code
  • Q2. Http methods explain
  • Ans. 

    HTTP methods are actions that can be performed on a resource, such as GET, POST, PUT, DELETE.

    • GET - Retrieve data from a server

    • POST - Send data to a server to create/update a resource

    • PUT - Update a resource on the server

    • DELETE - Remove a resource from the server

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There is another technical round, followed by a client round and then an HR interview.

Verdict : not selected

HR Executive Interview Questions & Answers

user image Anonymous

posted on 17 Apr 2025

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response
  • Q1. Introduce ur self , short-term goal, long term goal If u know somne one in office, recommendation u don't have to know.... U r selected
  • Q2. Where do u stay
  • Ans. 

    I reside in a vibrant neighborhood that blends urban convenience with a touch of nature, offering a perfect balance for work and leisure.

    • Located in a bustling city center, close to public transport and amenities.

    • Surrounded by parks and green spaces, ideal for outdoor activities.

    • Diverse community with a mix of cultures and cuisines, enhancing the local experience.

    • Proximity to my workplace, reducing commute time and incr...

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

They were asked about the Factorial programme and Then told me to explain that code.
Threads and Exception Handling topics

Interview experience
3
Average
Difficulty level
Hard
Process Duration
-
Result
Not Selected

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Output prediction
  • Q2. Api consuming in rest

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain routing concept in Angular
  • Ans. 

    Routing in Angular is the process of navigating between different components or views based on the URL.

    • Angular uses the Angular Router module to handle routing.

    • Routes are defined in the app-routing.module.ts file using the RouterModule.forRoot() method.

    • Routes can have path, component, redirectTo, pathMatch, and children properties.

    • RouterOutlet directive is used in the main app component to display the routed components...

  • Answered by AI
  • Q2. Angule Life Cycle
  • Ans. 

    Angular lifecycle hooks manage component creation, updates, and destruction, ensuring efficient rendering and resource management.

    • ngOnInit: Called once after the first ngOnChanges. Ideal for initialization logic. Example: Fetching data from a service.

    • ngOnChanges: Invoked before ngOnInit and whenever one or more data-bound input properties change. Example: Reacting to input changes.

    • ngDoCheck: Called during every change ...

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image Satya Medidi

posted on 14 Nov 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Self introduction
  • Q2. Regarding c, c+ , sql and Java
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Python and Spark online coding

Round 2 - Technical 

(1 Question)

  • Q1. Find the best days to buy and sell a stock given the price in list.
  • Ans. 

    Use a simple algorithm to find the best days to buy and sell a stock based on price list.

    • Iterate through the list of prices and keep track of the minimum price and maximum profit

    • Calculate the profit for each day by subtracting the current price from the minimum price

    • Update the maximum profit if a higher profit is found

    • Return the buy and sell days that result in the maximum profit

  • Answered by AI
Round 3 - Case Study 

Project experience and expectations.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. What is difference between service and product based company... seriously?? After having all the relevant experience:)
  • Ans. 

    Service-based companies provide intangible offerings, while product-based companies sell tangible goods.

    • Service-based companies focus on delivering expertise or assistance (e.g., consulting firms).

    • Product-based companies create and sell physical items (e.g., electronics manufacturers).

    • Revenue models differ: service companies often charge hourly or project-based fees, while product companies sell items at a set price.

    • Cu...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Though you have may years of work experience they won't ask anything about that rather they just treat you as fresher and ask the questions that they mugged up during their initial day's of career. They won't even check whether you are capable of doing the work they required just assuming that we can't. Interviewer just feel like he was head of some rocket science:) but he don't know difference between primary and secondary market research, hey dude it's just couple of hours all that we need to learn any kind of tool required for this job and just don't judge people solely on that. And to the aspirants trust me you just can't work under these kind of people(not everyone but the one who interviewed me) so be cautious about whom you are going to work with before accepting the offer letter.

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 Trigent Software?
Ask anonymously on communities.

Trigent Software Interview FAQs

How many rounds are there in Trigent Software interview?
Trigent Software interview process usually has 2-3 rounds. The most common rounds in the Trigent Software interview process are Technical, HR and Resume Shortlist.
How to prepare for Trigent Software 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 Trigent Software. The most common topics and skills that interviewers at Trigent Software expect are Communication Skills, International Voice Process, IT Recruitment, international bpo and voice process.
What are the top questions asked in Trigent Software interview?

Some of the top questions asked at the Trigent Software interview -

  1. What is lazy loading and write syntax for routing p...read more
  2. What is technical . And mention tere ty...read more
  3. What is difference between service and product based company... seriously?? Aft...read more
What are the most common questions asked in Trigent Software HR round?

The most common HR questions asked in Trigent Software interview are -

  1. What is your family backgrou...read more
  2. Tell me about yourse...read more
  3. Why are you looking for a chan...read more
How long is the Trigent Software interview process?

The duration of Trigent Software interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 50 interview experiences

Difficulty level

Easy 35%
Moderate 57%
Hard 9%

Duration

Less than 2 weeks 77%
2-4 weeks 14%
6-8 weeks 5%
More than 8 weeks 5%
View more

Interview Questions from Similar Companies

ITC Infotech Interview Questions
3.7
 • 371 Interviews
CitiusTech Interview Questions
3.3
 • 287 Interviews
NeoSOFT Interview Questions
3.6
 • 279 Interviews
Altimetrik Interview Questions
3.7
 • 239 Interviews
Episource Interview Questions
3.9
 • 224 Interviews
Xoriant Interview Questions
4.1
 • 210 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.1
 • 193 Interviews
View all

Trigent Software Reviews and Ratings

based on 559 reviews

3.4/5

Rating in categories

3.2

Skill development

3.3

Work-life balance

3.4

Salary

3.0

Job security

3.2

Company culture

3.0

Promotions

3.1

Work satisfaction

Explore 559 Reviews and Ratings
Software Engineer
182 salaries
unlock blur

₹4 L/yr - ₹8.5 L/yr

Senior Software Engineer
142 salaries
unlock blur

₹11.2 L/yr - ₹22.9 L/yr

Softwaretest Engineer
133 salaries
unlock blur

₹2.5 L/yr - ₹8.9 L/yr

Recruitment Analyst
132 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Software Developer
71 salaries
unlock blur

₹3 L/yr - ₹10.5 L/yr

Explore more salaries
Compare Trigent Software with

ITC Infotech

3.7
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

Xoriant

4.1
Compare
write
Share an Interview