Upload Button Icon Add office photos

Tagit Pte

Compare button icon Compare button icon Compare

Filter interviews by

Tagit Pte Interview Questions and Answers

Updated 18 May 2025
Popular Designations

10 Interview questions

A Software Engineer Trainee was asked 4mo ago
Q. What is exception handling in programming?
Ans. 

Exception handling is a mechanism to handle runtime errors in a program to prevent it from crashing.

  • Exceptions are unexpected events that occur during the execution of a program.

  • Exception handling allows the programmer to gracefully handle these errors and prevent the program from crashing.

  • Common exception handling constructs include try, catch, and finally blocks.

  • Example: try { // code that may throw an exception...

View all Software Engineer Trainee interview questions
A Software Engineer Trainee was asked 4mo ago
Q. What are the key Object-Oriented Programming (OOP) concepts in Java?
Ans. 

Key OOP concepts in Java include classes, objects, inheritance, polymorphism, encapsulation, and abstraction.

  • Classes: Blueprint for creating objects, containing attributes and methods.

  • Objects: Instances of classes that encapsulate data and behavior.

  • Inheritance: Allows a class to inherit attributes and methods from another class.

  • Polymorphism: Ability to present the same interface for different data types.

  • Encapsulat...

View all Software Engineer Trainee interview questions
A Lead Software Engineer was asked 10mo ago
Q. Explain the concept of a Blocking Queue.
Ans. 

Blocking queue is a data structure that supports operations for adding and removing elements, with the added feature of blocking when the queue is full or empty.

  • Blocking queue is a thread-safe queue that supports operations like put() and take().

  • When the queue is full, put() operation will block until space is available.

  • When the queue is empty, take() operation will block until an element is available.

  • Blocking que...

View all Lead Software Engineer interview questions
A Senior Test Engineer was asked
Q. How do you differentiate API testing tools?
Ans. 

API testing tools vary in features, usability, and integration capabilities, impacting testing efficiency and effectiveness.

  • Postman: User-friendly interface for manual testing and automation with collections.

  • SoapUI: Ideal for testing SOAP and REST APIs, supports complex scenarios and assertions.

  • JMeter: Primarily for performance testing, can also validate API responses under load.

  • RestAssured: Java library for testi...

View all Senior Test Engineer interview questions
A Software Engineer Trainee was asked
Q. What is Encapsulation?
Ans. 

Encapsulation is the process of hiding internal details and providing a public interface for accessing and manipulating data.

  • Encapsulation is a fundamental principle of object-oriented programming.

  • It helps in achieving data abstraction and data hiding.

  • By encapsulating data and methods within a class, we can control access to them.

  • Encapsulation improves code maintainability and reusability.

  • Example: A class with pri...

View all Software Engineer Trainee interview questions
A Software Developer was asked
Q. What is the difference between a delegate and a protocol?
Ans. 

Delegates are used in C# for implementing events and callbacks, while protocols are used in Objective-C for defining methods that a class must implement.

  • Delegates are a type-safe function pointer in C#.

  • Protocols are similar to interfaces in other languages, defining a set of methods that a class must implement.

  • Delegates are used for implementing events and callbacks in C#.

  • Protocols are used in Objective-C for defi...

View all Software Developer interview questions
A Software Developer was asked
Q. What is object-oriented programming?
Ans. 

Object-oriented programming is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

  • OOP focuses on creating objects that interact with each other to solve complex problems.

  • Encapsulation is a key feature where data is kept private within the object and can only be accessed through public methods.

  • Inheritance allows objects to inherit ...

View all Software Developer interview questions
Are these interview questions helpful?
A Software Engineer Trainee was asked 4mo ago
Q. What advanced Java concepts are you familiar with, such as JDBC, Servlets, Hibernate, Spring, and servers like Apache Tomcat or IBM, as well as any build tools you have experience using?
Ans. 

I am familiar with JDBC, Servlets, Hibernate, Spring, Apache Tomcat, and build tools like Maven.

  • Experience with JDBC for database connectivity in Java applications

  • Knowledge of Servlets for handling web requests and responses

  • Understanding of Hibernate for object-relational mapping in Java

  • Familiarity with Spring framework for building enterprise Java applications

  • Experience with Apache Tomcat for deploying Java web a...

View all Software Engineer Trainee interview questions
A QA Lead was asked
Q. Current CTC Expected CTC Hybrid model working is fine or not
Ans. 

Answering questions related to CTC and hybrid model working

  • My current CTC is confidential and I would prefer not to disclose it

  • My expected CTC is based on industry standards and my experience

  • I am open to a hybrid model of working as long as it is feasible and productive

  • I believe in focusing on the job responsibilities and delivering quality work, regardless of the working model

View all QA Lead interview questions
A Senior Test Engineer was asked
Q. Late process to take
Ans. 

The late process to take refers to the steps or actions that should be taken after a delay or at a later stage in a project or task.

  • Identify the reasons for the delay in the process

  • Assess the impact of the delay on the overall project timeline and goals

  • Develop a plan to mitigate the effects of the delay and catch up on lost time

  • Communicate with stakeholders about the revised timeline and any changes to expectation...

View all Senior Test Engineer interview questions

Tagit Pte Interview Experiences

14 interviews found

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

I appeared for an interview in Jan 2025.

Round 1 - Coding Test 

1) Fibonacci series.
2) Print even numbers in a given range.
3) using hierarchical inheritance and polymorphism concept calculate the interest rate for one subclass(savings account) where another subclass(current account) doesn't have any interest rate.
4) Create a custom exception and throw insufficient balance exception when we try to withdraw more than than available balance.
5) Create a function which accepts a amount and updates the current balance based on deposit or withdrawal.

Round 2 - One-on-one 

(5 Questions)

  • Q1. What are the key Object-Oriented Programming (OOP) concepts in Java?
  • Ans. 

    Key OOP concepts in Java include classes, objects, inheritance, polymorphism, encapsulation, and abstraction.

    • Classes: Blueprint for creating objects, containing attributes and methods.

    • Objects: Instances of classes that encapsulate data and behavior.

    • Inheritance: Allows a class to inherit attributes and methods from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Encapsulation: ...

  • Answered by AI
  • Q2. What is exception handling in programming?
  • Ans. 

    Exception handling is a mechanism to handle runtime errors in a program to prevent it from crashing.

    • Exceptions are unexpected events that occur during the execution of a program.

    • Exception handling allows the programmer to gracefully handle these errors and prevent the program from crashing.

    • Common exception handling constructs include try, catch, and finally blocks.

    • Example: try { // code that may throw an exception } ca...

  • Answered by AI
  • Q3. What are the features of Java 8 that you are familiar with?
  • Ans. 

    Java 8 features include lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow you to write code in a more concise and readable way.

    • Functional interfaces are interfaces with a single abstract method, used for lambda expressions.

    • Streams provide a way to work with sequences of elements and perform operations like filter, map, and reduce.

    • Default methods allow interfaces to have me...

  • Answered by AI
  • Q4. What advanced Java concepts are you familiar with, such as JDBC, Servlets, Hibernate, Spring, and servers like Apache Tomcat or IBM, as well as any build tools you have experience using?
  • Ans. 

    I am familiar with JDBC, Servlets, Hibernate, Spring, Apache Tomcat, and build tools like Maven.

    • Experience with JDBC for database connectivity in Java applications

    • Knowledge of Servlets for handling web requests and responses

    • Understanding of Hibernate for object-relational mapping in Java

    • Familiarity with Spring framework for building enterprise Java applications

    • Experience with Apache Tomcat for deploying Java web applic...

  • Answered by AI
  • Q5. Sql questions like joins and a query using joins concept?
Round 3 - Behavioral 

(4 Questions)

  • Q1. General questions based on the degree stream?
  • Q2. Can you provide a self-introduction?
  • Ans. 

    I am a recent graduate with a degree in Computer Science and a passion for software development.

    • Recent graduate with a degree in Computer Science

    • Passionate about software development

    • Experience with programming languages like Java and Python

  • Answered by AI
  • Q3. What do you know about the company?
  • Ans. 

    The company is a leading software development firm specializing in creating innovative solutions for various industries.

    • Specializes in creating innovative software solutions

    • Works with clients from various industries

    • Known for high-quality and reliable products

  • Answered by AI
  • Q4. What are your strengths and weaknesses?
  • Ans. 

    My strengths include problem-solving skills and attention to detail. My weaknesses include public speaking and time management.

    • Strengths: problem-solving skills

    • Strengths: attention to detail

    • Weaknesses: public speaking

    • Weaknesses: time management

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was an amazing interview experience. Just attend the interview with confidence and what ever you know. In final manager round prepare for some general interview questions for computer science background like the subjects you have learned in your degree.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Even aptitude related on blood relationship, time and distance

Round 2 - Technical 

(2 Questions)

  • Q1. Java oops concepts
  • Q2. Spring boot and rest api

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. Late process to take
  • Ans. 

    The late process to take refers to the steps or actions that should be taken after a delay or at a later stage in a project or task.

    • Identify the reasons for the delay in the process

    • Assess the impact of the delay on the overall project timeline and goals

    • Develop a plan to mitigate the effects of the delay and catch up on lost time

    • Communicate with stakeholders about the revised timeline and any changes to expectations

  • Answered by AI
  • Q2. Introducing yourself complete project details to explain
  • Q3. Test roles& responsibilities
  • Q4. Automation testing
  • Q5. Api testing todifferentiate tools
  • Ans. 

    API testing tools vary in features, usability, and integration capabilities, impacting testing efficiency and effectiveness.

    • Postman: User-friendly interface for manual testing and automation with collections.

    • SoapUI: Ideal for testing SOAP and REST APIs, supports complex scenarios and assertions.

    • JMeter: Primarily for performance testing, can also validate API responses under load.

    • RestAssured: Java library for testing RE...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Collection all concept, core java, solid principles
Round 2 - Coding Test 

Sort an array and couple of stream api and project structure.

Round 3 - Behavioral 

(1 Question)

  • Q1. Agile methodology, Restful Apis
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Basic programs like fibonacci, prime number, string, scanner input

Round 2 - Technical 

(4 Questions)

  • Q1. Basic java questions
  • Q2. What is Encapsulation?
  • Ans. 

    Encapsulation is the process of hiding internal details and providing a public interface for accessing and manipulating data.

    • Encapsulation is a fundamental principle of object-oriented programming.

    • It helps in achieving data abstraction and data hiding.

    • By encapsulating data and methods within a class, we can control access to them.

    • Encapsulation improves code maintainability and reusability.

    • Example: A class with private ...

  • Answered by AI
  • Q3. Asks about resume
  • Q4. Sql queries question

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Jun 2023. There were 4 interview rounds.

Round 1 - Coding Test 

1st round is coding test where they provide question paper

Round 2 - Technical 

(1 Question)

  • Q1. They asked java oops, sql and based on ur resume
Round 3 - Technical 

(1 Question)

  • Q1. They asked java related questions
Round 4 - HR 

(1 Question)

  • Q1. Based on the resume hr questions us. Be prepared for that

Interview Preparation Tips

Topics to prepare for Tagit Pte Software Engineer Trainee interview:
  • Java
  • SQL
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Explain about Blocking queue
  • Ans. 

    Blocking queue is a data structure that supports operations for adding and removing elements, with the added feature of blocking when the queue is full or empty.

    • Blocking queue is a thread-safe queue that supports operations like put() and take().

    • When the queue is full, put() operation will block until space is available.

    • When the queue is empty, take() operation will block until an element is available.

    • Blocking queue is...

  • Answered by AI

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 30 Jan 2024

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

I applied via Naukri.com and was interviewed before Jan 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Core Java, Spring, sql
  • Q2. Collections and basics
Round 2 - Technical 

(1 Question)

  • Q1. Java Programs, java 8
Round 3 - Behavioral 

(1 Question)

  • Q1. About your projects and challenges faces in your projects how you resolved
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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. What is oobjct oriented programmin?
  • Ans. 

    Object-oriented programming is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve complex problems.

    • Encapsulation is a key feature where data is kept private within the object and can only be accessed through public methods.

    • Inheritance allows objects to inherit attri...

  • Answered by AI
  • Q2. What is difference between delegate and protoxole
  • Ans. 

    Delegates are used in C# for implementing events and callbacks, while protocols are used in Objective-C for defining methods that a class must implement.

    • Delegates are a type-safe function pointer in C#.

    • Protocols are similar to interfaces in other languages, defining a set of methods that a class must implement.

    • Delegates are used for implementing events and callbacks in C#.

    • Protocols are used in Objective-C for defining ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Norhing
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

Basic coading test example sum of no, palindrome, prime or not etc

Round 3 - HR 

(1 Question)

  • Q1. Oops concepts and what your mention your resume that only can be asked
Round 4 - HR 

(1 Question)

  • Q1. Teachical hr round

Top trending discussions

View All
Interview Tips & Stories
2w
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 Tagit Pte?
Ask anonymously on communities.

Tagit Pte Interview FAQs

How many rounds are there in Tagit Pte interview?
Tagit Pte interview process usually has 2-3 rounds. The most common rounds in the Tagit Pte interview process are Technical, Coding Test and Resume Shortlist.
How to prepare for Tagit Pte 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 Tagit Pte. The most common topics and skills that interviewers at Tagit Pte expect are Java, Hibernate, Javascript, Spring and Core Java.
What are the top questions asked in Tagit Pte interview?

Some of the top questions asked at the Tagit Pte interview -

  1. What advanced Java concepts are you familiar with, such as JDBC, Servlets, Hibe...read more
  2. What are the features of Java 8 that you are familiar wi...read more
  3. What are the key Object-Oriented Programming (OOP) concepts in Ja...read more
How long is the Tagit Pte interview process?

The duration of Tagit Pte 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.8/5

based on 12 interview experiences

Difficulty level

Easy 44%
Moderate 44%
Hard 11%

Duration

Less than 2 weeks 89%
2-4 weeks 11%
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 50 Interviews
Fingent Interview Questions
4.2
 • 25 Interviews
Backbase Interview Questions
3.7
 • 23 Interviews
Khoros Interview Questions
3.7
 • 20 Interviews
3Pillar Global Interview Questions
3.2
 • 20 Interviews
Bottomline Interview Questions
3.4
 • 20 Interviews
Mentor Graphics Interview Questions
4.0
 • 18 Interviews
Fourkites Interview Questions
3.7
 • 18 Interviews
ValGenesis Interview Questions
3.2
 • 17 Interviews
View all

Tagit Pte Reviews and Ratings

based on 86 reviews

3.1/5

Rating in categories

2.8

Skill development

2.7

Work-life balance

3.4

Salary

2.8

Job security

3.0

Company culture

2.9

Promotions

2.9

Work satisfaction

Explore 86 Reviews and Ratings
Senior Finance Executive

Chennai

4-8 Yrs

Not Disclosed

Mobile lead

Chennai

8-13 Yrs

Not Disclosed

Java Technical Lead

Chennai

8-13 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
114 salaries
unlock blur

₹7 L/yr - ₹18.4 L/yr

Software Engineer
81 salaries
unlock blur

₹5.1 L/yr - ₹11.2 L/yr

Senior Product Engineer
45 salaries
unlock blur

₹6.2 L/yr - ₹14.7 L/yr

Product Engineer
24 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Software Developer
19 salaries
unlock blur

₹3.8 L/yr - ₹11 L/yr

Explore more salaries
Compare Tagit Pte with

Yodlee

3.8
Compare

Fingent

4.2
Compare

Bravura Solutions

3.9
Compare

CloudMoyo

4.1
Compare
write
Share an Interview