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

Updated 19 May 2025
Popular Designations

56 Interview questions

A Technical Lead (Associate technical architect) was asked 2mo 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 Salesforce Developer was asked 8mo ago
Q. What is the SOLID principle?
Ans. 

SOLID is a set of five design principles to make software designs more understandable, flexible, and maintainable.

  • S - Single Responsibility Principle: A class should have only one reason to change.

  • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

  • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses withou...

View all Salesforce Developer interview questions
A Salesforce Developer was asked 8mo ago
Q. What is Multitenancy?
Ans. 

Multitenancy is a software architecture where a single instance of the software serves multiple customers, known as tenants.

  • Allows multiple users (tenants) to access the same application while keeping their data isolated

  • Reduces costs by sharing resources among multiple users

  • Customization options for each tenant to meet their specific needs

View all Salesforce Developer interview questions
A Technical Support Analyst was asked 9mo ago
Q. What is Active Directory and where have you used it?
Ans. 

Active Directory is a directory service developed by Microsoft for Windows domain networks.

  • Centralized database for managing network resources

  • Stores information about users, computers, and other network objects

  • Used for authentication, authorization, and configuration

  • Enables single sign-on for users across multiple applications and services

View all Technical Support Analyst 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
Are these interview questions helpful?
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

Tavant Technologies Interview Experiences

76 interviews found

I appeared for an interview before Jun 2016.

Interview Questionnaire 

7 Questions

  • Q1. What is JVM?
  • Ans. 

    JVM stands for Java Virtual Machine. It is a virtual machine that executes Java bytecode.

    • JVM is a part of the Java Runtime Environment (JRE).

    • It provides a platform-independent execution environment for Java programs.

    • JVM interprets Java bytecode and translates it into machine-specific instructions.

    • It manages memory, handles garbage collection, and provides runtime environment for Java applications.

    • JVM supports Just-In-T...

  • Answered by AI
  • Q2. Is JVM platform independent?
  • Ans. 

    Yes, JVM is platform independent.

    • JVM stands for Java Virtual Machine.

    • It provides a runtime environment for executing Java bytecode.

    • JVM abstracts the underlying hardware and operating system, making Java programs portable.

    • Java programs can run on any platform that has a compatible JVM installed.

    • JVM implementations exist for various operating systems, such as Windows, macOS, Linux, etc.

  • Answered by AI
  • Q3. What is software testing?
  • Ans. 

    Software testing is the process of evaluating a software application or system to ensure it meets the specified requirements.

    • Software testing is done to identify defects or errors in the software.

    • It involves executing the software with test cases and comparing the actual results with expected results.

    • Testing can be performed at different levels such as unit testing, integration testing, system testing, and acceptance t...

  • Answered by AI
  • Q4. What is Inheritence in Java
  • Ans. 

    Inheritance in Java allows a class to inherit properties and methods from another class.

    • Inheritance is a fundamental concept in object-oriented programming.

    • It promotes code reusability and allows for the creation of hierarchical relationships between classes.

    • The class that is being inherited from is called the superclass or parent class, while the class that inherits is called the subclass or child class.

    • The subclass c...

  • Answered by AI
  • Q5. How was your technical round
  • Ans. 

    My technical round was challenging but I was able to showcase my skills and problem-solving abilities.

    • I was asked to write code on a whiteboard to solve a specific problem.

    • I had to explain my thought process and reasoning behind my code.

    • I was given a technical scenario and asked how I would approach solving it.

    • I was asked about my experience with specific programming languages and technologies.

    • I was tested on my proble...

  • Answered by AI
  • Q6. Why do you want join Tavant
  • Ans. 

    I want to join Tavant because of its innovative projects and collaborative work environment.

    • Tavant's reputation for cutting-edge technology and innovative solutions

    • Opportunity to work with a talented and diverse team

    • Desire to contribute to impactful projects and make a difference

    • Positive company culture and focus on employee growth and development

  • Answered by AI
  • Q7. When can you join
  • Ans. 

    I can join within 2 weeks of receiving an offer.

    • I can start within 2 weeks of receiving an offer.

    • I need to give notice to my current employer.

    • I may need time to relocate if necessary.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Written test for aptitude and technical questions
Duration: 30 minutes
Total Questions: 30

Round: Group Discussion
Experience: Put forwarded my point inbthe group.
Duration: 15 minutes

Round: Managerial round
Experience: I had been asked why do you want to join Tavant? How would your skill set add value to the organization?

College Name: BMS College Of Engineering, Bangalore

Skills evaluated in this interview

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

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 Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. ServiceNow core modules
Round 2 - Technical 

(1 Question)

  • Q1. After BR rule demo
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation

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
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is SOLID principle?
  • Ans. 

    SOLID is a set of five design principles to make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses without aff...

  • Answered by AI
  • Q2. What is Multitenancy?
  • Ans. 

    Multitenancy is a software architecture where a single instance of the software serves multiple customers, known as tenants.

    • Allows multiple users (tenants) to access the same application while keeping their data isolated

    • Reduces costs by sharing resources among multiple users

    • Customization options for each tenant to meet their specific needs

  • Answered by AI

Skills evaluated in this interview

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

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

  • Q1. MVVM and MVP diff, Fragment1 and Fragment2 passing values using ViewModel flow, after navigation, what are the viewmodel process, Unit testing oriented viewmodel, livedata and repositories.
  • Ans. 

    MVVM and MVP are architectural patterns; ViewModels facilitate data sharing between Fragments, enhancing unit testing and data management.

    • MVVM (Model-View-ViewModel) separates UI logic from business logic, while MVP (Model-View-Presenter) emphasizes a more direct interaction between View and Presenter.

    • In MVVM, ViewModels hold UI-related data and can be shared between Fragments, allowing for seamless data passing using ...

  • Answered by AI
  • Q2. Classic egg dropping puzzle, to find critical role in the range of 0 to 100 using kotlin
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

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is indexing
  • Ans. 

    Indexing is a technique used to optimize the performance of databases by allowing faster retrieval of data.

    • Indexing creates a data structure that improves the speed of data retrieval operations in a database.

    • It works by creating an index on one or more columns in a table, allowing the database to quickly locate the rows that match a certain condition.

    • Examples of indexing include creating indexes on primary keys, foreig...

  • Answered by AI
  • Q2. Solid principle
  • Q3. Core java questions and giving two coding with snippet
Round 2 - Technical 

(1 Question)

  • Q1. Find the duplicate name in student table in sorted way,anagram checker and more coding questions asked from starting to end of interview

Interview Preparation Tips

Topics to prepare for Tavant Technologies Senior Software Engineer interview:
  • java 8
  • Coding
  • MySQL
  • Spring Boot
Interview preparation tips for other job seekers - I am deeply disappointed by the lack 0f communication following my two rounds of intervies.despite my efforts and enthusiasm not receiving any feedback or updates has left me feeling undervalued and frustrated.

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 experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is active directory and where do you use it?
  • Ans. 

    Active Directory is a directory service developed by Microsoft for Windows domain networks.

    • Centralized database for managing network resources

    • Stores information about users, computers, and other network objects

    • Used for authentication, authorization, and configuration

    • Enables single sign-on for users across multiple applications and services

  • Answered by AI
  • Q2. Do you know about VPN, Task manager and what is the use of the control panel?,where did you used it in real life scenario?
  • Ans. 

    Yes, I am familiar with VPN, Task Manager, and Control Panel. I have used them in various real-life scenarios.

    • VPN stands for Virtual Private Network and is used to securely connect to a private network over the internet.

    • Task Manager is a system monitor and task manager utility that provides information about the processes and applications running on a computer.

    • Control Panel is a centralized hub in Windows operating sys...

  • Answered by AI
  • Q3. Do you have any idea about technical support.
  • Ans. 

    Technical support involves providing assistance and troubleshooting for technical issues related to software, hardware, or other technology.

    • Providing assistance to users experiencing technical issues

    • Troubleshooting software, hardware, and network problems

    • Installing and configuring software and hardware

    • Maintaining documentation of technical issues and solutions

    • Communicating effectively with users to resolve issues

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a dedicated Technical Support Analyst with 5 years of experience in troubleshooting hardware and software issues.

    • 5 years of experience in technical support

    • Proficient in troubleshooting hardware and software issues

    • Strong communication and problem-solving skills

  • Answered by AI
  • Q2. Why have you done the particular course and why are you interested in this role now?
  • Ans. 

    I pursued the course to enhance my technical skills and am interested in this role for the opportunity to apply my knowledge in a practical setting.

    • To enhance my technical skills and knowledge

    • Interest in applying knowledge in a practical setting

    • Passion for troubleshooting and problem-solving

    • Desire to work in a dynamic and challenging environment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I have faced an interviewer named Amand, and that guy was so rude, and my friend Als was in line, and he just obliviated her into bits, and its completely on you to talk about the career goal in front of them; some may like and some may dislike it.

Skills evaluated in this interview

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

Tavant Technologies Interview FAQs

How many rounds are there in Tavant Technologies interview?
Tavant Technologies interview process usually has 2-3 rounds. The most common rounds in the Tavant Technologies interview process are Technical, Resume Shortlist and HR.
How to prepare for Tavant Technologies 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 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?

Some of the top questions asked at the Tavant Technologies interview -

  1. Introduce Your Self? Explain 4 Pillars of OOPS? Explain Different types of Norm...read more
  2. Can you tell me what are the design patterns you work...read more
  3. Why string is immutable , is it possible to write our own immutable cla...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 60 interview experiences

Difficulty level

Easy 22%
Moderate 72%
Hard 6%

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
 • 290 Interviews
Altimetrik Interview Questions
3.7
 • 241 Interviews
Xoriant Interview Questions
4.1
 • 213 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.1
 • 193 Interviews
Globant Interview Questions
3.7
 • 183 Interviews
Iris Software Interview Questions
4.0
 • 178 Interviews
ThoughtWorks Interview Questions
3.9
 • 157 Interviews
Apexon Interview Questions
3.3
 • 150 Interviews
View all

Tavant Technologies Reviews and Ratings

based on 639 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 639 Reviews and Ratings
Data Scientist / Machine Learning Engineer

Bangalore / Bengaluru

2-7 Yrs

Not Disclosed

Data Platform and Data SRE - Senior Architect

Bangalore / Bengaluru

10-15 Yrs

Not Disclosed

Big Data Architect

Noida,

Kolkata

+1

7-11 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
929 salaries
unlock blur

₹10.9 L/yr - ₹20 L/yr

Technical Lead
514 salaries
unlock blur

₹16.6 L/yr - ₹30 L/yr

Software Engineer
464 salaries
unlock blur

₹5.4 L/yr - ₹12 L/yr

Senior Quality Engineer
274 salaries
unlock blur

₹8 L/yr - ₹14 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