Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Trantor Team. If you also belong to the team, you can get access from here

Trantor Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Trantor Interview Questions and Answers

Updated 18 Jun 2025
Popular Designations

13 Interview questions

An Analyst was asked 1w ago
Q. How are Union, Intersect, and Except used in SQL?
Ans. 

Union, Intersect, and Except are SQL set operations used to combine or compare result sets from multiple queries.

  • UNION: Combines results from two or more SELECT statements, removing duplicates. Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2.

  • INTERSECT: Returns only the rows that are common to both SELECT statements. Example: SELECT column1 FROM table1 INTERSECT SELECT column1 FROM table2.

  • EXCEP...

View all Analyst interview questions
A Senior Software Engineer was asked 11mo ago
Q. Can you provide Java-based coding exercises based on arrays and objects?
Ans. 

Java coding exercises focusing on arrays and objects to assess problem-solving skills.

  • Use arrays to store collections of data, e.g., String[] names = {"Alice", "Bob", "Charlie"};

  • Manipulate arrays with loops, e.g., for (String name : names) { System.out.println(name); }

  • Utilize objects to represent complex data, e.g., class Person { String name; int age; }

  • Implement methods to operate on arrays and objects, e.g., a m...

View all Senior Software Engineer interview questions
A Salesforce Administrator was asked 11mo ago
Q. What is the difference between a permission set and a profile?
Ans. 

Permission sets are used to extend user permissions beyond what is granted by their profile.

  • Profiles control overall access to objects, fields, and records for a user

  • Permission sets grant additional permissions or access to specific objects, fields, or records

  • Users can have multiple permission sets but only one profile

View all Salesforce Administrator interview questions
A Salesforce Administrator was asked 11mo ago
Q. What are the differences between permission sets and profiles?
Ans. 

Permission set vs profile

  • Profiles control overall access to objects, fields, and records for a user

  • Permission sets grant additional permissions or access to specific objects or fields

  • Profiles are assigned to users at the user level, while permission sets can be assigned to multiple users

View all Salesforce Administrator interview questions
A Project Manager was asked
Q. The team has identified a risk that a key component of the software may not be technically feasible given the current technology stack. This risk could potentially impact the project's delivery timeline and...
Ans. 

As Project Manager, I would assess the risk, engage stakeholders, and explore alternatives to ensure project success.

  • Conduct a risk assessment meeting with the team to evaluate the impact and likelihood of the risk.

  • Engage with technical leads to explore alternative solutions or technologies that could mitigate the risk.

  • Communicate with stakeholders about the identified risk and potential impacts on the project tim...

View all Project Manager interview questions
A Senior Android Developer was asked
Q. Explain Activity lifecycle methods.
Ans. 

Activity lifecycle methods are a set of methods that are called at different stages of an activity's life cycle.

  • onCreate() - called when the activity is first created

  • onStart() - called when the activity is becoming visible to the user

  • onResume() - called when the activity will start interacting with the user

  • onPause() - called when the activity is going into the background, but still visible

  • onStop() - called when th...

View all Senior Android Developer interview questions
A Senior Android Developer was asked
Q. What is a higher-order function?
Ans. 

A higher order function is a function that can take other functions as parameters or return functions as results.

  • Higher order functions can be used to create more flexible and reusable code.

  • They can be used to implement callbacks, event handling, and functional programming concepts.

  • Example: map, filter, and reduce functions in JavaScript are higher order functions.

View all Senior Android Developer interview questions
Are these interview questions helpful?
A Senior Android Developer was asked
Q. What is a fragment and what are its uses?
Ans. 

Fragments are modular sections of an activity's user interface, allowing for more flexible and dynamic UI designs.

  • Fragments can be reused across multiple activities

  • They help in creating responsive UIs for different screen sizes

  • Fragments can be added or removed dynamically during runtime

  • They are useful for implementing multi-pane layouts on tablets

View all Senior Android Developer interview questions
A Software Engineer was asked
Q. What memoization techniques are you familiar with?
Ans. 

Memoization techniques involve storing the results of expensive function calls and returning the cached result when the same inputs occur again.

  • Using a hash table to store previously computed results

  • Implementing memoization with dynamic programming

  • Memoizing recursive functions to avoid redundant calculations

View all Software Engineer interview questions
A Software Engineer was asked
Q. Write a generic button component for React.
Ans. 

A generic button component for React

  • Create a Button component with props for text, onClick function, and optional styles

  • Use React's useState hook to manage button state if needed

  • Implement onClick handler to trigger a function when button is clicked

  • Allow for customization of button styles using props

View all Software Engineer interview questions

Trantor Interview Experiences

29 interviews found

Underwriter Interview Questions & Answers

user image Anonymous

posted on 11 Sep 2024

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. About previous work experience
  • Q2. Scenario based question on underwriting

Interview Preparation Tips

Interview preparation tips for other job seekers - friendly and easy interview

Analyst Interview Questions & Answers

user image Anonymous

posted on 18 Jun 2025

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. What is the difference between a mutable data type and an immutable data type?
  • Ans. 

    Mutable types can be changed after creation; immutable types cannot be altered once defined.

    • Mutable data types allow modification of their content. Example: Lists in Python.

    • Immutable data types do not allow changes after creation. Example: Tuples in Python.

    • Mutable types can lead to unintended side effects if shared across functions. Example: Modifying a list in one function affects others.

    • Immutable types provide safety...

  • Answered by AI
  • Q2. How are Union, Intersect and Except used in SQL?
  • Ans. 

    Union, Intersect, and Except are SQL set operations used to combine or compare result sets from multiple queries.

    • UNION: Combines results from two or more SELECT statements, removing duplicates. Example: SELECT column1 FROM table1 UNION SELECT column1 FROM table2.

    • INTERSECT: Returns only the rows that are common to both SELECT statements. Example: SELECT column1 FROM table1 INTERSECT SELECT column1 FROM table2.

    • EXCEPT: Re...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Mar 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. Given Kotlin extension function what could be the output.
  • Ans. 

    Kotlin extension functions allow adding new functions to existing classes without modifying their source code.

    • Extension functions are defined outside the class they extend.

    • They can be called on the object of the class they extend.

    • They can access the properties and functions of the class they extend.

  • Answered by AI
  • Q2. What is higher order function.
  • Ans. 

    A higher order function is a function that can take other functions as parameters or return functions as results.

    • Higher order functions can be used to create more flexible and reusable code.

    • They can be used to implement callbacks, event handling, and functional programming concepts.

    • Example: map, filter, and reduce functions in JavaScript are higher order functions.

  • Answered by AI
  • Q3. Explain Activity lifecycle methods.
  • Ans. 

    Activity lifecycle methods are a set of methods that are called at different stages of an activity's life cycle.

    • onCreate() - called when the activity is first created

    • onStart() - called when the activity is becoming visible to the user

    • onResume() - called when the activity will start interacting with the user

    • onPause() - called when the activity is going into the background, but still visible

    • onStop() - called when the act...

  • Answered by AI
  • Q4. What is fragment and uses.
  • Ans. 

    Fragments are modular sections of an activity's user interface, allowing for more flexible and dynamic UI designs.

    • Fragments can be reused across multiple activities

    • They help in creating responsive UIs for different screen sizes

    • Fragments can be added or removed dynamically during runtime

    • They are useful for implementing multi-pane layouts on tablets

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview person is less experienced for taking interview.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Salesforce related questions
  • Q2. Trigger scenario
  • Q3. LWC intermediate
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. The team has identified a risk that a key component of the software may not be technically feasible given the current technology stack. This risk could potentially impact the project's delivery timeline a...
  • Ans. 

    As Project Manager, I would assess the risk, engage stakeholders, and explore alternatives to ensure project success.

    • Conduct a risk assessment meeting with the team to evaluate the impact and likelihood of the risk.

    • Engage with technical leads to explore alternative solutions or technologies that could mitigate the risk.

    • Communicate with stakeholders about the identified risk and potential impacts on the project timeline...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(3 Questions)

  • Q1. Salesforce related
  • Q2. Salesforce admin
  • Q3. Data management
Round 3 - One-on-one 

(3 Questions)

  • Q1. Reports dashboards
  • Q2. Approval process
  • Q3. Profile user creation
Round 4 - Behavioral 

(2 Questions)

  • Q1. Administration issue
  • Q2. About over all experience in salesforce

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not gave interview in this company after completing 3 rounds they said not satisfactory

do not waste your time and search for other interviews

MIS Lead Interview Questions & Answers

user image NITEESH MISHRA vikram

posted on 7 Jan 2024

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

I applied via LinkedIn and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Assignment 

Chart and report , function and formula

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jun 2023. There were 3 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 - Technical 

(1 Question)

  • Q1. One of the biggest fraud company this is. I completed 4 rounds of interview 3 technical and 1 Hr round. After that they started doing drama with me ,they started saying client has put the role on hold that...
Round 3 - Technical 

(1 Question)

  • Q1. Basics java questions and das coding questions, spring boot microservices and projects questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - One of the biggest fraud company,don't join this company,they wasted my time and hope they played with my hope. I completed 4 rounds of interview including 3 technical and 1 Hr . After few days I requested for the offer then the HR vishakha vij shared my tentative salary structure in the mail and after few days I requested again for the offer as my last working day was very closer she didn't reply me at all then I reached the hiring manager (Mandeepinder Singh) who took my 3 Rd technical round he started doing drama saying the position is on hold by the client so it's so delay,after few hours I directly called the HR vishakha vij then she also started doing drama saying we have already shared your profile to cleint and from the client side it's delayed .Do not attend interview for this fraud time wasting company they will play with your time and emotions.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in May 2023. There were 3 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 - Technical 

(4 Questions)

  • Q1. Basic questions of AWS services like what is snowball and what are the types of instances some questions are from S3 and loadbalancer, basic of docker commands, architecture of kubernetes , jenkins and som...
  • Q2. Linux scenerio questions, monitoring tool like cloud watch and SNS , And cloudformation is + and terraform is bonus if you have knowledge.
  • Q3. Read all about the basic questions of aws and devops
  • Q4. Difference between NACL and security group
  • Ans. 

    NACL is a stateless firewall at the subnet level, while security groups are stateful firewalls at the instance level.

    • NACL operates at the subnet level, controlling inbound and outbound traffic based on rules.

    • Security groups operate at the instance level, controlling inbound and outbound traffic based on rules.

    • NACL is stateless, meaning it does not keep track of the state of connections.

    • Security groups are stateful, mea...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Basic details about family and carrier goals.
  • Q2. Asking about like long term and short term goals.

Interview Preparation Tips

Topics to prepare for Trantor Devops Engineer interview:
  • AWS
  • Terraform
  • Linux
  • Shell Scripting
  • Vpc
  • Lambda
  • Docker
  • Github
Interview preparation tips for other job seekers - Be confident don't worry about the results.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jul 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Basics dsa coding ,oops concepts, spring boot microservices REST jpa etc

Round 3 - Coding Test 

Basic dsa , spring boot microservices REST jpa aws hibernate etc

Round 4 - Technical 

(1 Question)

  • Q1. About project, microservices REST, spring boot,AWS etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't attend any interview of this fake and worst company they will just waste your time taking so many rounds and when u will clear all the rounds they will start their drama saying currently the rols is on hold. They played with me they wasted my time even after hr discussion they didn't release the offer. They were agree with the package and also shared tentative salary but in the last moment they made me pool.
Not only me they have done the same with lots of candidates so please don't attend any interview here.

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

Trantor Interview FAQs

How many rounds are there in Trantor interview?
Trantor interview process usually has 2-3 rounds. The most common rounds in the Trantor interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Trantor 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 Trantor. The most common topics and skills that interviewers at Trantor expect are Javascript, Python, Software Services, HTML and SQL.
What are the top questions asked in Trantor interview?

Some of the top questions asked at the Trantor interview -

  1. The team has identified a risk that a key component of the software may not be ...read more
  2. Difference between NACL and security gr...read more
  3. What is the difference between a mutable data type and an immutable data ty...read more
How long is the Trantor interview process?

The duration of Trantor 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.2/5

based on 26 interview experiences

Difficulty level

Easy 38%
Moderate 63%

Duration

Less than 2 weeks 67%
2-4 weeks 27%
6-8 weeks 7%
View more

Interview Questions from Similar Companies

MAQ Software Interview Questions
1.9
 • 104 Interviews
Webkul Software Interview Questions
4.0
 • 71 Interviews
Softenger Interview Questions
4.0
 • 58 Interviews
Tata Digital Interview Questions
2.9
 • 47 Interviews
DataMetica Interview Questions
3.5
 • 45 Interviews
View all

Trantor Reviews and Ratings

based on 228 reviews

3.6/5

Rating in categories

3.3

Skill development

3.8

Work-life balance

3.6

Salary

3.3

Job security

3.6

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 228 Reviews and Ratings
Senior Software Engineer
197 salaries
unlock blur

₹9 L/yr - ₹31.4 L/yr

Software Engineer
116 salaries
unlock blur

₹7.7 L/yr - ₹14 L/yr

Associate Technical Leader
72 salaries
unlock blur

₹11.1 L/yr - ₹38 L/yr

Technical Lead
66 salaries
unlock blur

₹14.6 L/yr - ₹36.4 L/yr

Software Developer
56 salaries
unlock blur

₹3.4 L/yr - ₹14.6 L/yr

Explore more salaries
Compare Trantor with

Tekwissen

4.8
Compare

Softenger

4.0
Compare

XcelServ Solutions

4.4
Compare

Capital Numbers Infotech

4.4
Compare
write
Share an Interview