Upload Button Icon Add office photos

Tavisca Solutions

Compare button icon Compare button icon Compare

Filter interviews by

Tavisca Solutions Interview Questions, Process, and Tips

Updated 13 Feb 2024

Top Tavisca Solutions Interview Questions and Answers

Tavisca Solutions Interview Experiences

Popular Designations

5 interviews found

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

I applied via Campus Placement and was interviewed in Aug 2023. There were 3 interview rounds.

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand your strengths, weaknesses, skills, and career goals. This will help you target the right positions and companies.

Research: Thoroughly research companies you're interested in. Learn about their culture, values, products/services, and recent news. Tailor your application and interview responses accordingly.

Graphic Designer Interview Questions asked at other Companies

Q1. If assignment goes perfect and you are suitable for the job then only you will be able to face this final round and in this round asking about the expected salary but at the end offers their criteria with fix salary only.
View answer (8)

Sopra Steria

Success to our employee's well-being? A work-life balance that's simply unbeatable.

Our employees have rated us 4 for Work-Life Balance on AmbitionBox

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

I applied via Referral and was interviewed in Aug 2023. There were 3 interview rounds.

Interview Preparation Tips

Topics to prepare for Tavisca Solutions Senior Software Engineer interview:
  • Design Patterns
  • C#
  • Distributed Systems
  • System Design

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Tavisca Solutions Interview Questions and Answers for Freshers
illustration image

Interview Questionnaire 

3 Questions

  • Q1. First Round - Selenium and Java concepts, java program
  • Q2. Second round - scenario based automation script questions
  • Q3. Third round - managerial and write selenium code for given scenario

QA Automation Engineer Interview Questions asked at other Companies

Q1. Which framework you are using? explain your framework?
View answer (4)

Interview Questionnaire 

6 Questions

  • Q1. Tell me about yourself
  • Q2. What are waits in selenium
  • Ans. 

    Waits in Selenium are used to synchronize the test execution with the application's response.

    • Waits are used to handle synchronization issues in Selenium

    • There are two types of waits: implicit and explicit

    • Implicit waits wait for a certain amount of time before throwing an exception if the element is not found

    • Explicit waits wait for a certain condition to occur before proceeding with the test

    • Examples of explicit waits inc

  • Answered by AI
  • Q3. Explain selenium framework
  • Ans. 

    Selenium framework is an open-source automation tool used for web application testing.

    • Selenium framework supports multiple programming languages like Java, Python, C#, etc.

    • It consists of four components: Selenium IDE, Selenium RC, WebDriver, and Selenium Grid.

    • Selenium WebDriver is the most widely used component for browser automation.

    • It supports cross-browser testing and can be integrated with various testing framework...

  • Answered by AI
  • Q4. What are collections in Java
  • Ans. 

    Collections in Java are classes that group multiple elements into a single unit.

    • Collections are used to store, manipulate, and retrieve data in Java.

    • They provide a more flexible way of working with data than arrays.

    • Some examples of collections in Java include ArrayList, LinkedList, and HashSet.

  • Answered by AI
  • Q5. Explain OOPs concepts
  • Ans. 

    OOPs concepts are a set of principles that help in designing and implementing object-oriented programs.

    • Encapsulation: bundling of data and methods that operate on that data

    • Inheritance: ability of a class to inherit properties and methods from another class

    • Polymorphism: ability of objects to take on multiple forms or behaviors

    • Abstraction: hiding of complex implementation details and showing only the necessary informatio

  • Answered by AI
  • Q6. Java Programs

Skills evaluated in this interview

Quality Assurance and Automation Engineer Interview Questions asked at other Companies

Q1. What is the difference between Verification and Validation?
View answer (1)

Tavisca Solutions interview questions for popular designations

 Graphic Designer

 (1)

 Software Developer

 (1)

 QA Automation Engineer

 (1)

 Senior Software Engineer

 (1)

 Quality Assurance and Automation Engineer

 (1)

I applied via Recruitment Consultant and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Solid and design pattern in api
  • Ans. 

    Solid principles and design patterns are important in API development.

    • Solid principles ensure that the API is maintainable, scalable, and extensible.

    • Design patterns provide a proven solution to common problems in API development.

    • Examples of design patterns include Factory, Singleton, and Observer.

    • Using these principles and patterns can lead to a more robust and efficient API.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand solid with example

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)

Interview questions from similar companies

I appeared for an interview before Feb 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 65 minutes
Round difficulty - Easy

There were 2 sections – 
Aptitude and Logical Reasoning and MCQ based on Java question ,C++, coding for 20 min and 45 min respectively.
Section A- Not very difficult to clear this round although less time was a problem.
Section B- It contains 15 multiple choice question on c/c++,java and 4 simple coding questions

  • Q1. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next pointer points back to a previous node.

    • Traverse the linked list using two pointers, one moving at double the speed of the other.

    • If the two pointers meet at any point, there is a cycle in the linked list.

    • Use Floyd's Cycle Detection Algorithm for O(N) time complexity and O(1) space complexity.

  • Answered by AI
Round 2 - Coding Test 

(3 Questions)

Round duration - 75 minutes
Round difficulty - Medium

It was an online coding test in which 3 coding question were given.

  • Q1. 

    Smallest Window Problem Statement

    Given two strings, S and X, your task is to find the smallest substring in S that contains all the characters present in X.

    Example:

    Input:
    S = "abdd", X = "bd"
    Outpu...
  • Ans. 

    Find the smallest substring in string S that contains all characters in string X.

    • Iterate through string S and keep track of characters in X found in a window

    • Use two pointers to maintain the window and slide it to find the smallest window

    • Return the smallest window containing all characters in X

  • Answered by AI
  • Q2. 

    Smallest Integer Not Representable as Subset Sum

    Given a non-decreasing sorted array ARR of N positive numbers, determine the smallest positive integer that cannot be expressed as the sum of elements from...

  • Ans. 

    Find the smallest positive integer that cannot be expressed as the sum of elements from any proper subset of a non-decreasing sorted array of positive numbers.

    • Start with the smallest possible integer that cannot be represented, which is 1.

    • Iterate through the array and update the smallest integer that cannot be represented.

    • If the current element is greater than the smallest integer that cannot be represented, return tha...

  • Answered by AI
  • Q3. 

    Minimum Steps for a Knight to Reach Target

    Given a square chessboard of size 'N x N', determine the minimum number of moves a Knight requires to reach a specified target position from its initial position...

  • Ans. 

    Calculate the minimum number of moves a Knight needs to reach a target position on a chessboard.

    • Implement a function that takes knight's starting position, target position, and chessboard size as input

    • Use breadth-first search algorithm to find the shortest path for the Knight

    • Consider all possible 8 movements of the Knight on the chessboard

    • Return the minimum number of moves required for the Knight to reach the target po

  • Answered by AI
Round 3 - Face to Face 

(4 Questions)

Round duration - 60 minutes
Round difficulty - Easy

It started with a discussion on the programs given in coding round. They asked me about my interest field after that they directly jumped into Networking, Linux and Ethical Hacking part looking my interest domain. They asked me various question on networking and linux.
Then they asked me to code a simple c program

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node.

    • Keep track of the current, previous, and next nodes while reversing the linked list.

    • Update the head of the reversed linked list as the last node encountered during reversal.

  • Answered by AI
  • Q2. What are the port numbers of protocols such as FTP and SMTP?
  • Ans. 

    FTP uses port number 21 and SMTP uses port number 25.

    • FTP uses port 21 for data transfer and port 20 for control information.

    • SMTP uses port 25 for email communication.

    • Understanding port numbers is important for network communication.

  • Answered by AI
  • Q3. Can you explain the OSI Model?
  • Ans. 

    The OSI Model is a conceptual framework that standardizes the functions of a telecommunication or computing system into seven layers.

    • The OSI Model stands for Open Systems Interconnection Model.

    • It consists of seven layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has specific functions and communicates with the adjacent layers.

    • Example: Layer 1 (Physical) deals with physi...

  • Answered by AI
  • Q4. How do you copy files in Linux?
  • Ans. 

    To copy files in Linux, you can use the 'cp' command.

    • Use the 'cp' command followed by the source file and destination directory to copy a file.

    • To copy a directory and its contents, use the '-r' flag with the 'cp' command.

    • You can also use wildcards like '*' to copy multiple files at once.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMakeMyTrip interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

8 Questions

  • Q1. Find out the subset of an array of continuous positive numbers from a larger array whose sum of of the elements is larger in comparision to other subset. eg: {1,2 5 -7, 2 5} .The two subarrays are {1,2,5} ...
  • Ans. 

    Find the subset of an array with the largest sum of continuous positive numbers.

    • Iterate through the array and keep track of the current sum and the maximum sum seen so far.

    • If the current element is positive, add it to the current sum. If it is negative, reset the current sum to 0.

    • Also keep track of the start and end indices of the maximum sum subset.

    • Return the subset using the start and end indices.

  • Answered by AI
  • Q2. Given two classes C1 and C2 which are almost same.(remember not exactly same). You want to choose best among these classes so that it can be use as key in hashmap. What question will you ask regarding two ...
  • Q3. You are given two strings s1 and s2.Now, find the smallest substring in s1 containing all characters of s2
  • Ans. 

    Find smallest substring in s1 containing all characters of s2.

    • Create a hash table of characters in s2

    • Use sliding window technique to find smallest substring in s1

    • Check if all characters in s2 are present in the substring

    • Update the smallest substring if a smaller one is found

  • Answered by AI
  • Q4. Questions on OOPS (almost all the concepts were covered like polymorphism, overriding, overloading, inheritance, concept of virtual fxns etc.)
  • Q5. Write algo for reversing a linked list
  • Ans. 

    Algorithm to reverse a linked list

    • Create a new empty linked list

    • Traverse the original linked list and insert each node at the beginning of the new list

    • Return the new list

  • Answered by AI
  • Q6. What is lazy loading? Advantages and disadvantages of the same?
  • Ans. 

    Lazy loading is a technique used to defer the loading of non-critical resources until they are needed.

    • Advantages: faster initial page load, reduced bandwidth usage, improved user experience

    • Disadvantages: increased complexity, potential for slower subsequent page loads, difficulty with SEO

    • Examples: images, videos, and other media files can be loaded only when they are visible on the screen

  • Answered by AI
  • Q7. How ajax works? Difference between angular js and jquery?
  • Ans. 

    Ajax is a technique for creating fast and dynamic web pages. AngularJS is a framework for building dynamic web applications, while jQuery is a library for simplifying HTML DOM traversal and manipulation.

    • Ajax stands for Asynchronous JavaScript and XML

    • It allows web pages to be updated asynchronously by exchanging data with a web server behind the scenes

    • AngularJS is a JavaScript framework that extends HTML with new attrib...

  • Answered by AI
  • Q8. Design a traffic light system?
  • Ans. 

    A traffic light system controls the flow of traffic at intersections.

    • The system consists of three lights: red, yellow, and green.

    • Each light has a specific duration for which it stays on.

    • The system also includes sensors to detect the presence of vehicles and pedestrians.

    • The duration of each light can be adjusted based on traffic patterns.

    • The system can be connected to a central control system for remote monitoring and m

  • Answered by AI

Interview Preparation Tips

Skills: Javascript, Ajax, Angular JS, Jquery
College Name: na

Skills evaluated in this interview

I appeared for an interview before Feb 2021.

Round 1 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with 3 problems based on DSA and Algorithms.

  • Q1. 

    Smallest Integer Not Representable as Subset Sum

    Given a non-decreasing sorted array ARR of N positive numbers, determine the smallest positive integer that cannot be expressed as the sum of elements from...

  • Ans. 

    Find the smallest positive integer that cannot be expressed as the sum of elements from any proper subset of a given array.

    • Sort the array in non-decreasing order.

    • Iterate through the array and keep track of the smallest sum that can be formed.

    • If the next element in the array is greater than the current sum + 1, then the answer is the current sum + 1.

    • Return the answer as the smallest integer not representable as a subset

  • Answered by AI
  • Q2. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers to keep track of the current, previous, and next nodes while reversing the linked list.

    • Update the head of the reversed linked list to be the last node encountered during the reversal process.

  • Answered by AI
  • Q3. 

    Smallest Window Problem Statement

    Given two strings S and X containing random characters, the task is to find the smallest substring in S which contains all the characters present in X.

    Input:

    The first...
  • Ans. 

    The task is to find the smallest substring in string S which contains all the characters present in string X.

    • Iterate through string S and keep track of characters in X using a hashmap

    • Use two pointers to maintain a sliding window and find the smallest window containing all characters in X

    • Return the smallest window found

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with questions based on OOPS and Angular.

  • Q1. What are the different OOP concepts?
  • Ans. 

    OOP concepts include inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation restricts access to certain components of an object, protecting its integrity.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Abstraction hides the complex implementation details of an object and only shows the necessar

  • Answered by AI
Round 3 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Questions based on System Design, ajax, jquery were asked.

  • Q1. How would you design a traffic light system?
  • Ans. 

    Designing a traffic light system involves creating a system that controls the flow of traffic at intersections.

    • Divide the traffic light system into three main lights: red, yellow, and green.

    • Implement timers to control the duration of each light.

    • Include sensors to detect the presence of vehicles and pedestrians.

    • Consider implementing a pedestrian crossing signal.

    • Integrate a central control system to coordinate the timing

  • Answered by AI
  • Q2. How does AJAX work?
  • Ans. 

    AJAX allows for asynchronous communication between client and server without needing to reload the entire page.

    • AJAX stands for Asynchronous JavaScript and XML.

    • It allows for sending and receiving data from a server without reloading the entire page.

    • AJAX uses XMLHttpRequest object to make requests to the server.

    • It can update parts of a web page without requiring a full page reload.

    • Commonly used in web applications to pro

  • Answered by AI
  • Q3. What is the difference between AngularJS and jQuery?
  • Ans. 

    AngularJS is a full-fledged MVC framework for building dynamic web applications, while jQuery is a lightweight library for DOM manipulation and event handling.

    • AngularJS is a full-fledged MVC framework, providing features like two-way data binding, dependency injection, and routing.

    • jQuery is a lightweight library primarily used for DOM manipulation and event handling.

    • AngularJS is suitable for building single-page applic...

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMakeMyTrip interview preparation:Topics to prepare for the interview - Javascript, Ajax, Angular JS, Jquery, Data Structures, Algorithms, System Design, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Other and was interviewed in Sep 2018. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. As position was for UI developer. So first round was majorly based on HTML and CSS. They were checking the basic concepts.
  • Q2. Questions from JavaScript. Major JavaScript concepts and logical questions.
  • Q3. Main focus was on data structure, travel domain knowledge and optimisation techniques.
  • Q4. Main purpose of this round was to check how updated a person is with new technologies, his willingness to learn new things and attitude towards work.
  • Q5. General discussion and salary negotiation.

Interview Preparation Tips

General Tips: Focus on Data structures.
Skills: GIT, Css, HTML, JavaScript, Communication
Duration: <1 week

I applied via Company Website and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Oops concept, use of throws and exception, test cases for cash withdrawl at atm, booking ticket at railway test cases, spring boot annotations, jdbc questions, sql queries and programs on strings.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well before interview, be free and be yourself don't pretend to be a smart one just keep your confidence and answer all the questions, if you don't know the answer then please let them know.
Contribute & help others!
anonymous
You can choose to be anonymous

Tavisca Solutions Interview FAQs

How many rounds are there in Tavisca Solutions interview?
Tavisca Solutions interview process usually has 3 rounds. The most common rounds in the Tavisca Solutions interview process are Technical, Resume Shortlist and Case Study.
How to prepare for Tavisca Solutions 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 Tavisca Solutions. The most common topics and skills that interviewers at Tavisca Solutions expect are AWS, Java, Kubernetes, Python and C#.
What are the top questions asked in Tavisca Solutions interview?

Some of the top questions asked at the Tavisca Solutions interview -

  1. Solid and design pattern in ...read more
  2. What are collections in J...read more
  3. What are waits in selen...read more

Recently Viewed

JOBS

Bull Machines

No Jobs

SALARIES

Ibg Fincon Solutions

JOBS

Saplings HR

No Jobs

SALARIES

Erevmax Technologies

REVIEWS

Merkle Sokrati

No Reviews

DESIGNATION

SALARIES

Merkle Sokrati

JOBS

Browse jobs

Discover jobs you love

SALARIES

RateGain

SALARIES

Hotelogix

Tell us how to improve this page.

Tavisca Solutions Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

HCLTech

A more secure future awaits you

Interview Questions from Similar Companies

MakeMyTrip Interview Questions
3.6
 • 122 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
EaseMyTrip.com Interview Questions
3.7
 • 26 Interviews
Ixigo.com Interview Questions
3.6
 • 21 Interviews
Cleartrip Interview Questions
3.4
 • 18 Interviews
TravelTriangle Interview Questions
3.8
 • 13 Interviews
Goibibo Interview Questions
4.3
 • 6 Interviews
HappyEasyGo Interview Questions
3.4
 • 2 Interviews
Travelyaari Interview Questions
3.2
 • 1 Interview
View all

Fast track your campus placements

View all

Tavisca Solutions Reviews and Ratings

based on 49 reviews

3.2/5

Rating in categories

3.5

Skill development

3.5

Work-life balance

3.7

Salary

3.4

Job security

3.2

Company culture

3.0

Promotions

3.1

Work satisfaction

Explore 49 Reviews and Ratings
Backend Java Developer

Pune

3-8 Yrs

Not Disclosed

Explore more jobs
Software Developer
59 salaries
unlock blur

₹6 L/yr - ₹19.4 L/yr

Software Engineer
36 salaries
unlock blur

₹7.8 L/yr - ₹27.5 L/yr

Senior Software Engineer
34 salaries
unlock blur

₹12 L/yr - ₹35.8 L/yr

Technical Lead
34 salaries
unlock blur

₹17.6 L/yr - ₹40 L/yr

Senior Software Developer
24 salaries
unlock blur

₹9.3 L/yr - ₹29.2 L/yr

Explore more salaries
Compare Tavisca Solutions with

Yatra

3.4
Compare

Cleartrip

3.4
Compare

MakeMyTrip

3.6
Compare

TravelTriangle

3.8
Compare
Did you find this page helpful?
Yes No
write
Share an Interview