Upload Button Icon Add office photos
Engaged Employer

i

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

Tavant Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Tavant Technologies Interview Questions and Answers for Experienced

Updated 19 May 2025
Popular Designations

39 Interview questions

A Technical Lead (Associate technical architect) was asked 3mo ago
Q. How is a hashmap implemented in Python?
Ans. 

Python implements hashmaps using dictionaries, which are built on hash tables for efficient key-value storage.

  • Dictionaries in Python are created using curly braces: `my_dict = {}`.

  • Key-value pairs are added using the syntax: `my_dict['key'] = 'value'`.

  • Python uses a hash function to compute the index for storing values, ensuring O(1) average time complexity for lookups.

  • Collisions are handled using open addressing or...

A Senior Executive was asked 7mo ago
Q. Write an LWC component.
Ans. 

An LWC component for displaying a list of contacts

  • Create a new LWC component with the necessary HTML, CSS, and JavaScript files

  • Use the @wire decorator to fetch a list of contacts from Salesforce

  • Display the list of contacts using HTML template and iterate over the data

View all Senior Executive interview questions
A Senior Leader Engineer was asked 10mo ago
Q. How do you navigate between different windows using Selenium code?
Ans. 

To navigate between different windows in Selenium code, use getWindowHandles() to get all window handles and switchTo() to switch between them.

  • Use getWindowHandles() to get all window handles

  • Use switchTo() to switch between windows

  • Example: Set<String> windowHandles = driver.getWindowHandles(); driver.switchTo().window(windowHandles.toArray()[1]);

View all Senior Leader Engineer interview questions
A Senior Leader Engineer was asked 10mo ago
Q. What is the content-type for attaching a file in a POST request?
Ans. 

The content-type for attaching a file in a post request is 'multipart/form-data'.

  • The content-type 'multipart/form-data' is used when submitting forms that contain files.

  • It allows multiple parts to be combined into a single body, each part representing a different form field or file.

  • The 'Content-Disposition' header is used to specify the name of the file being uploaded.

View all Senior Leader Engineer interview questions
A Senior Software Engineer was asked 10mo ago
Q. What are the benefits of Java 8 Streams?
Ans. 

Java8 Stream provides a functional approach to processing collections of objects.

  • Allows for functional-style operations on collections like map, filter, reduce

  • Supports parallel processing for improved performance

  • Lazy evaluation allows for efficient processing of large datasets

  • Reduces boilerplate code and promotes cleaner, more concise code

  • Example: List<String> names = Arrays.asList("Alice", "Bob", "Charlie")...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 10mo ago
Q. What is the difference between a public subnet and a private subnet in AWS?
Ans. 

Public subnet allows internet access, while private subnet does not.

  • Public subnet has a route to the internet gateway, while private subnet does not.

  • Instances in public subnet can have public IP addresses, while instances in private subnet cannot.

  • Public subnet is typically used for resources that need to be accessed from the internet, while private subnet is used for resources that should not be directly accessibl...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 10mo ago
Q. What is CopyOnWriteArrayList?
Ans. 

CopyOnWriteArrayList is a thread-safe variant of ArrayList where all mutative operations (add, set, remove, etc) are implemented by making a fresh copy of the underlying array.

  • CopyOnWriteArrayList is part of the java.util.concurrent package in Java.

  • It is used in scenarios where reads are far more common than writes, as it allows for high read concurrency without the need for synchronization.

  • It is particularly usef...

View all Senior Software Engineer interview questions
Are these interview questions helpful?
A Team Lead was asked 11mo ago
Q. What is Polymorphism?
Ans. 

Polymorphism is the ability of a single function or method to operate on different types of data.

  • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

  • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

  • Example of compile-time polymorphism: function overloading where multiple functions have the same name but different par...

View all Team Lead interview questions
A Team Lead was asked 11mo ago
Q. How can the performance of a stored procedure be improved?
Ans. 

To improve performance of a Stored procedure, optimize query, use indexes, minimize data retrieval, and avoid cursors.

  • Optimize query by using proper indexing

  • Minimize data retrieval by fetching only required columns

  • Avoid using cursors for looping through data

  • Use SET NOCOUNT ON to stop the message indicating the number of rows affected by a Transact-SQL statement

View all Team Lead interview questions
A Team Lead was asked 11mo ago
Q. What is the difference between read-only and const, and can you provide an example?
Ans. 

Read-only variables can be modified by the program, while const variables cannot be changed.

  • Read-only variables can be modified by the program during runtime, while const variables cannot be changed at all.

  • Using 'const' keyword ensures that the value of the variable remains constant throughout the program.

  • Read-only variables are typically used when the value needs to be initialized at runtime, while const variable...

View all Team Lead interview questions

Tavant Technologies Interview Experiences for Experienced

38 interviews found

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

I appeared for an interview before Aug 2022.

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 

(1 Question)

  • Q1. Networking fundamentals, ARP, DHCP, OSI, TCP/IP layer, STP, VTP, EIGRP, BGP
Round 3 - Technical 

(1 Question)

  • Q1. Routing, Switching NAT, VPN
Round 4 - HR 

(1 Question)

  • Q1. About strength and weakness, Future plans, Salary discussions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is the content-type for attaching file in post request?
  • Ans. 

    The content-type for attaching a file in a post request is 'multipart/form-data'.

    • The content-type 'multipart/form-data' is used when submitting forms that contain files.

    • It allows multiple parts to be combined into a single body, each part representing a different form field or file.

    • The 'Content-Disposition' header is used to specify the name of the file being uploaded.

  • Answered by AI
  • Q2. How to navigate between different windows selenium code?
  • Ans. 

    To navigate between different windows in Selenium code, use getWindowHandles() to get all window handles and switchTo() to switch between them.

    • Use getWindowHandles() to get all window handles

    • Use switchTo() to switch between windows

    • Example: Set<String> windowHandles = driver.getWindowHandles(); driver.switchTo().window(windowHandles.toArray()[1]);

  • Answered by AI
  • Q3. Java coding, interface, abstract, selenium commands, Api basic questions
Round 2 - Technical 

(1 Question)

  • Q1. Automation code coverage? Requirements Traceability matrix, Git commands and process for pushing code, cucumber scenario based Qs, how to send test data from cucumber
Round 3 - HR 

(1 Question)

  • Q1. Basic details, introduction abt company, salary structure, joining date

Skills evaluated in this interview

Team Lead Interview Questions & Answers

user image Anonymous

posted on 19 Jul 2024

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

I appeared for an interview in Jun 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Solid principles
  • Q2. What is Polymorphism ?
  • Q3. Write code on abstract class and interface?
  • Ans. 

    Abstract classes and interfaces are used in object-oriented programming to define common behavior and structure for classes.

    • Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Classes can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract classes can have constructors, while interfaces cannot.

    • Example: abstract class Animal { abs...

  • Answered by AI
  • Q4. How to improve performance of an Stored procedure
  • Ans. 

    To improve performance of a Stored procedure, optimize query, use indexes, minimize data retrieval, and avoid cursors.

    • Optimize query by using proper indexing

    • Minimize data retrieval by fetching only required columns

    • Avoid using cursors for looping through data

    • Use SET NOCOUNT ON to stop the message indicating the number of rows affected by a Transact-SQL statement

  • Answered by AI
  • Q5. Explain abt JWT
Round 2 - Technical 

(5 Questions)

  • Q1. What is dependency Injection
  • Q2. How to register dependency Injection in asp.net core??
  • Ans. 

    Dependency Injection in ASP.NET Core is registered in ConfigureServices method of Startup class.

    • Add services.AddSingleton(); for singleton lifetime

    • Add services.AddScoped(); for scoped lifetime

    • Add services.AddTransient(); for transient lifetime

  • Answered by AI
  • Q3. Design patterns
  • Q4. What is inceptor in angular?
  • Q5. Difference between read-only and const with an example
  • Ans. 

    Read-only variables can be modified by the program, while const variables cannot be changed.

    • Read-only variables can be modified by the program during runtime, while const variables cannot be changed at all.

    • Using 'const' keyword ensures that the value of the variable remains constant throughout the program.

    • Read-only variables are typically used when the value needs to be initialized at runtime, while const variables are...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is CopyOnWriteArrayList?
  • Ans. 

    CopyOnWriteArrayList is a thread-safe variant of ArrayList where all mutative operations (add, set, remove, etc) are implemented by making a fresh copy of the underlying array.

    • CopyOnWriteArrayList is part of the java.util.concurrent package in Java.

    • It is used in scenarios where reads are far more common than writes, as it allows for high read concurrency without the need for synchronization.

    • It is particularly useful in...

  • Answered by AI
  • Q2. What is the benefit of Java8 Stream?
  • Ans. 

    Java8 Stream provides a functional approach to processing collections of objects.

    • Allows for functional-style operations on collections like map, filter, reduce

    • Supports parallel processing for improved performance

    • Lazy evaluation allows for efficient processing of large datasets

    • Reduces boilerplate code and promotes cleaner, more concise code

    • Example: List<String> names = Arrays.asList("Alice", "Bob", "Charlie"); na...

  • Answered by AI
  • Q3. Public subnet vs Private subnet in AWS
  • Ans. 

    Public subnet allows internet access, while private subnet does not.

    • Public subnet has a route to the internet gateway, while private subnet does not.

    • Instances in public subnet can have public IP addresses, while instances in private subnet cannot.

    • Public subnet is typically used for resources that need to be accessed from the internet, while private subnet is used for resources that should not be directly accessible fro...

  • Answered by AI

Skills evaluated in this interview

Senior Executive Interview Questions & Answers

user image flora singh

posted on 11 Nov 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Write an lwc component
  • Ans. 

    An LWC component for displaying a list of contacts

    • Create a new LWC component with the necessary HTML, CSS, and JavaScript files

    • Use the @wire decorator to fetch a list of contacts from Salesforce

    • Display the list of contacts using HTML template and iterate over the data

  • Answered by AI

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 7 Feb 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(4 Questions)

  • Q1. Write the Syntax for Creating External Stage
  • Q2. What are the Security Features of Snowflake
  • Q3. What is timetravel in Snowflake?
  • Q4. SQL query to return all the employees who are earning more than their Manager

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Snowflake SQL and Snowflake Scripting, Prepare for questions on AWS, DBT and Python

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Oops concept for java
  • Ans. 

    Object-oriented programming (OOP) is a programming paradigm that uses objects to represent and manipulate data.

    • OOP allows for modular and reusable code.

    • It emphasizes encapsulation, inheritance, and polymorphism.

    • Java supports OOP through classes, objects, and interfaces.

    • Example: Creating a class 'Car' with properties like 'color' and 'speed', and methods like 'start' and 'stop'.

  • Answered by AI
  • Q2. Spring boot and rest api
  • Q3. React and typescript knowledge
  • Q4. Xml top-down approach
  • Ans. 

    XML top-down approach is a methodology where the structure of an XML document is designed first and then the data is filled in.

    • Design the XML structure before populating it with data

    • Start with the root element and define child elements and their attributes

    • Use XML Schema Definition (XSD) to define the structure and data types

    • Create the XML document based on the defined structure

    • Populate the XML document with data

  • Answered by AI
Round 2 - HR 

(3 Questions)

  • Q1. Compensation plan
  • Q2. When to join - date
  • Q3. Marital status - why :\

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Dec 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Basic java problem string collections map array

Round 2 - Technical 

(2 Questions)

  • Q1. Basic project related technical question
  • Q2. Basic technical questions
Round 3 - Technical 

(1 Question)

  • Q1. Basic java technical questions
Round 4 - HR 

(2 Questions)

  • Q1. Basic hr related questions
  • Q2. Hr round was good

Data Engineer Interview Questions & Answers

user image Shivraj Singh Rautela

posted on 25 Feb 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Questions on Data Frame API Questions on Data Structure Questions on Data warehousing
Round 2 - Technical 

(1 Question)

  • Q1. Big Data and distributed computing Concepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Iam ready for your aptitude test

Round 2 - Group Discussion 

Iam ready for group discussion

Interview Preparation Tips

Topics to prepare for Tavant Technologies Linux Administrator interview:
  • LVM and troubleshooting NFS f
  • Booting procedure and ssh
  • Linux Administration
Interview preparation tips for other job seekers - I am ready for every test you have given

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

Tavant Technologies Interview FAQs

How many rounds are there in Tavant Technologies interview for experienced candidates?
Tavant Technologies interview process for experienced candidates usually has 2-3 rounds. The most common rounds in the Tavant Technologies interview process for experienced candidates are Technical, Resume Shortlist and HR.
How to prepare for Tavant Technologies interview for experienced candidates?
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 Tavant Technologies. The most common topics and skills that interviewers at Tavant Technologies expect are AWS, Java, Python, Microservices and SQL.
What are the top questions asked in Tavant Technologies interview for experienced candidates?

Some of the top questions asked at the Tavant Technologies interview for experienced candidates -

  1. Can you tell me what are the design patterns you work...read more
  2. Why string is immutable , is it possible to write our own immutable cla...read more
  3. In microservices environment , if we deploy in cloud for every instance port nu...read more
How long is the Tavant Technologies interview process?

The duration of Tavant Technologies 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

4/5

based on 23 interview experiences

Difficulty level

Easy 28%
Moderate 72%

Duration

Less than 2 weeks 78%
2-4 weeks 17%
6-8 weeks 6%
View more

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 287 Interviews
Altimetrik Interview Questions
3.7
 • 239 Interviews
Xoriant Interview Questions
4.1
 • 210 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.1
 • 193 Interviews
Globant Interview Questions
3.7
 • 181 Interviews
Iris Software Interview Questions
4.0
 • 176 Interviews
ThoughtWorks Interview Questions
3.9
 • 156 Interviews
View all

Tavant Technologies Reviews and Ratings

based on 638 reviews

3.9/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

3.6

Salary

3.6

Job security

3.8

Company culture

3.2

Promotions

3.6

Work satisfaction

Explore 638 Reviews and Ratings
Snowflake Developer

Kolkata,

Hyderabad / Secunderabad

+1

3-8 Yrs

Not Disclosed

Associate Technical Architect

Bangalore Rural,

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Opportunity | GenAI Engineer | Tavant India

Noida,

Hyderabad / Secunderabad

+1

5-10 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
913 salaries
unlock blur

₹6.8 L/yr - ₹22 L/yr

Technical Lead
513 salaries
unlock blur

₹10 L/yr - ₹33 L/yr

Software Engineer
464 salaries
unlock blur

₹3.6 L/yr - ₹14 L/yr

Senior Quality Engineer
270 salaries
unlock blur

₹5.6 L/yr - ₹15 L/yr

Associate Technical Architect
244 salaries
unlock blur

₹14 L/yr - ₹45.8 L/yr

Explore more salaries
Compare Tavant Technologies with

Xoriant

4.1
Compare

Photon Interactive

4.1
Compare

CitiusTech

3.3
Compare

Iris Software

4.0
Compare
write
Share an Interview