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, Process, and Tips

Updated 12 Dec 2024

Top Tavant Technologies Interview Questions and Answers

View all 61 questions

Tavant Technologies Interview Experiences

Popular Designations

71 interviews found

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 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

Senior Leader Engineer Interview Questions asked at other Companies

Q1. If a subordinate does not listen to you what steps can you take.
View answer (1)
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

Servicenow Developer Interview Questions asked at other Companies

Q1. How to calculate timing of Incident which assigned to multiple group
View answer (3)
Tavant Technologies Interview Questions and Answers for Freshers
illustration image

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 was interviewed in Jun 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Solid principles
  • Q2. 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 paramete...

  • Answered by AI
  • 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
  • Ans. 

    JWT stands for JSON Web Token, a compact and self-contained way for securely transmitting information between parties as a JSON object.

    • JWT is commonly used for authentication and information exchange in web development.

    • It consists of three parts: header, payload, and signature.

    • The header typically consists of the type of token and the signing algorithm being used.

    • The payload contains the claims, which are statements ab...

  • Answered by AI
Round 2 - Technical 

(5 Questions)

  • Q1. What is dependency Injection
  • Ans. 

    Dependency Injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by providing mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Commonly used in frameworks like Spring in Java

  • Answered by AI
  • 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?
  • Ans. 

    Inceptor in Angular is a service that allows intercepting HTTP requests and responses.

    • Inceptor is used for modifying requests or responses before they are sent or received.

    • It can be used for adding headers, logging, error handling, etc.

    • Example: intercepting requests to add authentication token.

  • Answered by AI
  • 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

Top Tavant Technologies Team Lead Interview Questions and Answers

Q1. How to register dependency Injection in asp.net core??
View answer (1)

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)
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

Salesforce Developer Interview Questions asked at other Companies

Q1. Write a trigger to update contact when accounts phone changed.
View answer (6)

Tavant Technologies interview questions for popular designations

 Senior Software Engineer

 (11)

 Technical Lead

 (5)

 Software Engineer

 (5)

 Software Engineer Trainee

 (4)

 Software Developer

 (4)

 Business Analyst

 (3)

 Senior IOS Developer

 (2)

 Data Engineer

 (2)

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 names = Arrays.asList("Alice", "Bob", "Charlie"); names.stream().f...

  • 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 Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Get interview-ready with Top Tavant Technologies Interview Questions

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 Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)

Jobs at Tavant Technologies

View all

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

Senior Executive Interview Questions asked at other Companies

Q1. If oneday the men power is very less due to some problem and lode is more that day as a senior Exucative, how will u handle your team ?
View answer (56)
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

Technical Support Analyst Interview Questions asked at other Companies

Q1. How do you troubleshoot an issue?
View answer (2)

Business Analyst Interview Questions & Answers

user image Aravind Nair

posted on 10 Jun 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Generic aptitude test questions from campus recruitment

Round 2 - Group Discussion 

Engaging GD and good moderators

Round 3 - One-on-one 

(3 Questions)

  • Q1. Tell us about yourself
  • Q2. BA processes and flows
  • Q3. Situational and stakeholder management related queries

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (9)
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Java program for Even and odd number display in a line

Automation Testing Interview Questions asked at other Companies

Q1. Have you ever faced synchronization problem ? How did you overcome them ?
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

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 Spring Boot.
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.

Recently Viewed

INTERVIEWS

HUDL

No Interviews

INTERVIEWS

HUDL

No Interviews

INTERVIEWS

Myntra

No Interviews

INTERVIEWS

Money View

No Interviews

INTERVIEWS

Tektronix

No Interviews

Tell us how to improve this page.

Tavant Technologies Interview Process

based on 57 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
Cyient Interview Questions
3.6
 • 283 Interviews
CitiusTech Interview Questions
3.4
 • 269 Interviews
View all

Tavant Technologies Reviews and Ratings

based on 603 reviews

3.8/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

3.6

Salary

3.6

Job security

3.8

Company culture

3.2

Promotions

3.6

Work satisfaction

Explore 603 Reviews and Ratings
Engineering Manager

Noida,

Pune

+1

8-13 Yrs

Not Disclosed

Opportunity | MLops Architect | Tavant India

Noida,

Hyderabad / Secunderabad

+1

14-20 Yrs

Not Disclosed

UI Architect

Bangalore / Bengaluru

9-14 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
807 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Software Engineer
580 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Technical Lead
519 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Associate Technical Architect
263 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Quality Engineer
247 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Tavant Technologies with

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

3.5
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent