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 6 Jul 2025
Popular Designations

62 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 8mo 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 10mo 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 11mo 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 11mo 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
A Senior Software Engineer was asked 11mo 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

Tavant Technologies Interview Experiences

77 interviews found

Technical Lead Interview Questions & Answers

user image Kadapa Kishore Kumar Reddy

posted on 22 Dec 2022

I applied via Referral and was interviewed in Jan 2022. 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 

(7 Questions)

  • Q1. How you previously handling microservices deployment?
  • Ans. 

    I have experience using containerization tools like Docker and Kubernetes for microservices deployment.

    • I have used Docker to create container images for each microservice.

    • I have used Kubernetes to manage the deployment, scaling, and load balancing of the microservices.

    • I have also used Helm charts to package and deploy the microservices as a group.

    • I have implemented CI/CD pipelines using tools like Jenkins or GitLab to ...

  • Answered by AI
  • Q2. Explain about design patterns you used ?
  • Ans. 

    I have used various design patterns such as Singleton, Factory, Observer, and Decorator.

    • Singleton pattern was used to ensure only one instance of a class is created.

    • Factory pattern was used to create objects without exposing the instantiation logic to the client.

    • Observer pattern was used to notify the dependent objects when there is a change in the state of an object.

    • Decorator pattern was used to add new functionality ...

  • Answered by AI
  • Q3. Write own singleton class and secure it in multi threading environment?
  • Ans. 

    A singleton class is a class that can only be instantiated once. It is important to secure it in a multi-threading environment.

    • Create a private constructor to prevent external instantiation

    • Create a private static instance of the class

    • Create a public static method to return the instance

    • Use synchronized keyword to ensure thread safety

    • Consider using double-checked locking to improve performance

  • Answered by AI
  • Q4. Why string is immutable , is it possible to write our own immutable class?
  • Ans. 

    String is immutable to ensure thread safety and security. Yes, we can write our own immutable class.

    • String is immutable to prevent accidental modification of data.

    • Immutable classes ensure thread safety and security.

    • We can write our own immutable class by making all fields final and not providing any setters.

    • Examples of immutable classes are String, Integer, and LocalDate.

  • Answered by AI
  • Q5. Write code to find repeated characters in string with count using java 8?
  • Ans. 

    Code to find repeated characters in string with count using Java 8

    • Convert string to char array

    • Use streams to group by character and count

    • Filter out characters with count less than 2

    • Print the repeated characters with their count

  • Answered by AI
  • Q6. Get third highest salary in given employee list use java 8?
  • Ans. 

    Get third highest salary in given employee list using Java 8

    • Sort the employee list in descending order of salary using Comparator

    • Use distinct() to remove duplicates

    • Skip the first two highest salaries using skip()

    • Use findFirst() to get the third highest salary

  • Answered by AI
  • Q7. Do you know difference between functional programming and object oriented programming?
  • Ans. 

    Functional programming focuses on functions while object oriented programming focuses on objects and their interactions.

    • Functional programming emphasizes immutability and avoids side effects.

    • Object oriented programming uses classes and objects to encapsulate data and behavior.

    • Functional programming languages include Haskell and Lisp while object oriented programming languages include Java and C++.

    • Functional programming...

  • Answered by AI
Round 3 - Technical 

(11 Questions)

  • Q1. In microservices environment , if we deploy in cloud for every instance port number always changing right . So, how you going to call your instance int his case ?
  • Ans. 

    In a microservices environment, service discovery and load balancing are key to managing dynamic port assignments in cloud deployments.

    • Use a service discovery tool like Consul or Eureka to register and discover services dynamically.

    • Implement API Gateway patterns to route requests to the appropriate service instance without needing to know the port.

    • Utilize container orchestration platforms like Kubernetes, which manage ...

  • Answered by AI
  • Q2. Have you configured saga design pattern in your project?
  • Ans. 

    Yes, I have configured saga design pattern in my project.

    • I have used saga design pattern to manage complex workflows and transactions.

    • I have implemented sagas using libraries like Redux-Saga and NServiceBus.

    • I have used sagas to handle scenarios like order processing, payment processing, and inventory management.

    • I have also used sagas to handle compensating transactions in case of failures.

  • Answered by AI
  • Q3. How you securing your microservices?
  • Ans. 

    We secure our microservices using a combination of authentication, authorization, encryption, and monitoring.

    • We use OAuth2 for authentication and authorization.

    • We encrypt sensitive data using AES-256 encryption.

    • We use SSL/TLS for secure communication between microservices.

    • We implement rate limiting to prevent DDoS attacks.

    • We monitor our microservices using tools like Prometheus and Grafana.

    • We perform regular security a...

  • Answered by AI
  • Q4. Have you involved in CI/CD process ?
  • Ans. 

    Yes, I have extensive experience in implementing CI/CD pipelines.

    • I have worked with tools like Jenkins, GitLab CI/CD, and Travis CI.

    • I have automated build, test, and deployment processes for multiple projects.

    • I have integrated code quality checks and security scans into the pipeline.

    • I have also implemented blue-green and canary deployment strategies.

    • Overall, I understand the importance of continuous integration and del...

  • Answered by AI
  • Q5. What is the real time scenario , where you are using the circuit breaker ?
  • Ans. 

    Circuit breaker is used to prevent cascading failures in distributed systems.

    • Circuit breaker is used to handle faults in microservices architecture.

    • It is used to prevent overloading of a service by temporarily stopping requests to it.

    • It helps in improving the resilience of the system by handling failures gracefully.

    • Example: If a service is down, circuit breaker will stop sending requests to it and will try again after ...

  • Answered by AI
  • Q6. Do you know about orchestration and choreography design patterns?
  • Ans. 

    Orchestration and choreography are design patterns used in distributed systems.

    • Orchestration involves a central controller that coordinates the interactions between services.

    • Choreography involves services communicating with each other directly without a central controller.

    • Orchestration is more suitable for complex workflows while choreography is more flexible.

    • Examples of orchestration tools include Kubernetes and Apach...

  • Answered by AI
  • Q7. How you implementing and validating the JWT token ?
  • Ans. 

    JWT tokens are implemented and validated using a combination of server-side and client-side code.

    • The server generates a JWT token and sends it to the client upon successful authentication.

    • The client stores the token in local storage or a cookie.

    • For each subsequent request, the client sends the token in the Authorization header.

    • The server verifies the token's signature and expiration time before processing the request.

    • I...

  • Answered by AI
  • Q8. Which one is best constructor injection or Setter injection?
  • Ans. 

    Constructor injection is preferred over Setter injection.

    • Constructor injection ensures that all required dependencies are provided at the time of object creation.

    • Setter injection allows for optional dependencies and can be used for dynamic changes.

    • Constructor injection is more secure as the object is fully initialized before use.

    • Setter injection can lead to inconsistent object states if not used carefully.

    • Constructor i...

  • Answered by AI
  • Q9. Why we need Autowire in Spring ?
  • Ans. 

    Autowire simplifies dependency injection in Spring by automatically wiring beans together.

    • Autowire eliminates the need for manual bean wiring in XML configuration files.

    • It reduces the amount of boilerplate code needed to configure dependencies.

    • Autowire can be used with different types of injection, such as constructor, setter, and field injection.

    • Example: @Autowired private MyService myService; will automatically injec...

  • Answered by AI
  • Q10. Difference between @Configuration and @Component annotations?
  • Ans. 

    Difference between @Configuration and @Component annotations

    • The @Configuration annotation is used to define a configuration class that provides bean definitions

    • The @Component annotation is used to mark a class as a Spring component

    • Configuration classes can be imported into other configuration classes using @Import annotation

    • Components can be scanned and automatically registered as beans using @ComponentScan annotation

  • Answered by AI
  • Q11. Can you tell me what are the design patterns you worked?
  • Ans. 

    I have worked with various design patterns including MVC, Singleton, Factory, and Observer.

    • MVC pattern for separating concerns in web applications

    • Singleton pattern for ensuring only one instance of a class is created

    • Factory pattern for creating objects without exposing the instantiation logic

    • Observer pattern for implementing event-driven architectures

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I hope above question will help you.
Be prepared and no one asking general way they need practical answers.

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
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
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, SQL and Microservices.
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 61 interview experiences

Difficulty level

Easy 24%
Moderate 70%
Hard 5%

Duration

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

Interview Questions from Similar Companies

CitiusTech Interview Questions
3.3
 • 290 Interviews
Altimetrik Interview Questions
3.7
 • 242 Interviews
Xoriant Interview Questions
4.1
 • 214 Interviews
INDIUM Interview Questions
4.0
 • 198 Interviews
Incedo Interview Questions
3.0
 • 193 Interviews
Iris Software Interview Questions
4.0
 • 185 Interviews
Globant Interview Questions
3.7
 • 184 Interviews
ThoughtWorks Interview Questions
3.9
 • 158 Interviews
View all

Tavant Technologies Reviews and Ratings

based on 642 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 642 Reviews and Ratings
Webmethods Lead

Noida,

Hyderabad / Secunderabad

+1

8-13 Yrs

Not Disclosed

Opportunity | Senior Investment Business Analyst | Tavant India

Noida,

Hyderabad / Secunderabad

+1

10-20 Yrs

Not Disclosed

Data Governance Architect - MS Purview

Bangalore / Bengaluru

10-18 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
931 salaries
unlock blur

₹10.9 L/yr - ₹20 L/yr

Software Engineer
562 salaries
unlock blur

₹5 L/yr - ₹11.3 L/yr

Technical Lead
519 salaries
unlock blur

₹16.8 L/yr - ₹30 L/yr

Senior Quality Engineer
273 salaries
unlock blur

₹8 L/yr - ₹14 L/yr

Associate Technical Architect
260 salaries
unlock blur

₹20.9 L/yr - ₹35 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