Upload Button Icon Add office photos
Engaged Employer

i

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

TraviYo Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

TraviYo Interview Questions and Answers

Updated 14 Jun 2025
Popular Designations

8 Interview questions

A Manual Test Engineer was asked 1w ago
Q. What is Jira?
Ans. 

Jira is a project management tool used for issue tracking and agile project management, primarily in software development.

  • Developed by Atlassian, Jira helps teams plan, track, and manage software development projects.

  • It allows users to create and manage issues, such as bugs, tasks, and user stories.

  • Jira supports agile methodologies like Scrum and Kanban, enabling teams to visualize their workflow.

  • Users can customi...

View all Manual Test Engineer interview questions
A Manual Test Engineer was asked 1w ago
Q. What is CRM?
Ans. 

CRM stands for Customer Relationship Management, a strategy for managing a company's interactions with customers and prospects.

  • CRM systems help businesses manage customer data and interactions.

  • Examples of CRM software include Salesforce, HubSpot, and Zoho CRM.

  • CRM can improve customer service by providing a centralized database of customer information.

  • It enables personalized marketing by tracking customer preferenc...

View all Manual Test Engineer interview questions
A Dot Net Core Developer was asked
Q. What is the difference between a dataset and a datareader?
Ans. 

Dataset is an in-memory representation of a relational database, while DataReader is a forward-only, read-only stream of data.

  • Dataset is a disconnected architecture, while DataReader is a connected architecture.

  • Dataset can hold multiple tables and relationships, while DataReader can only hold a single table.

  • Dataset can be used for data manipulation and updates, while DataReader is read-only.

  • Dataset requires more m...

View all Dot Net Core Developer interview questions
A Dot Net Core Developer was asked
Q. What is a filter in .NET Core?
Ans. 

Filters in .NET Core are used to intercept HTTP requests and responses.

  • Filters are used to add cross-cutting concerns to MVC applications.

  • They can be used for authentication, authorization, logging, exception handling, etc.

  • Filters can be applied globally, at the controller level, or at the action level.

  • Examples of filters include AuthorizeFilter, ExceptionFilter, and ActionFilter.

View all Dot Net Core Developer interview questions
A Dot Net Core Developer was asked
Q. What is dependency injection?
Ans. 

Dependency injection is a design pattern that allows objects to be loosely coupled and dependencies to be injected at runtime.

  • Dependency injection is a way to achieve inversion of control.

  • It helps in creating modular and testable code.

  • Dependencies are provided to a class through constructor injection, property injection, or method injection.

  • It promotes code reusability and maintainability.

  • Example: In a .NET Core a...

View all Dot Net Core Developer interview questions
A Dot Net Core Developer was asked
Q. What are the differences between Transient, AddScoped, and AddSingleton?
Ans. 

Transient creates a new instance every time it is requested, Scoped creates a new instance per scope, Singleton creates a single instance for the entire application.

  • Transient: Creates a new instance every time it is requested.

  • AddScoped: Creates a new instance per scope, such as per HTTP request.

  • AddSingleton: Creates a single instance for the entire application.

  • Example: Transient can be used for lightweight service...

View all Dot Net Core Developer interview questions
A Dot Net Core Developer was asked
Q. What is a SQL Join and why do we need it?
Ans. 

SQL Join is used to combine rows from two or more tables based on a related column between them.

  • Join is used to retrieve data from multiple tables in a single query.

  • It helps in avoiding data redundancy and improving query performance.

  • Different types of joins include inner join, left join, right join, and full outer join.

  • Join conditions are specified using the ON keyword.

  • Example: SELECT * FROM table1 JOIN table2 ON...

View all Dot Net Core Developer interview questions
Are these interview questions helpful?
A Dot Net Core Developer was asked
Q. How do you create a table using MySQL?
Ans. 

To create a table using MYSQL, use the CREATE TABLE statement followed by the table name and column definitions.

  • Use the CREATE TABLE statement to create a new table

  • Specify the table name after the CREATE TABLE statement

  • Define the columns and their data types within parentheses

  • Add any additional constraints or attributes to the columns

  • Example: CREATE TABLE employees (id INT, name VARCHAR(50), age INT)

View all Dot Net Core Developer interview questions

TraviYo Interview Experiences

7 interviews found

Backend Developer Interview Questions & Answers

user image akash kanaujiya

posted on 8 Aug 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Sql question and all join
  • Q2. C# and ado.net or mvc
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

  • Q1. What is manual Testing
  • Ans. 

    Manual testing is the process of manually checking software for defects without automation tools.

    • Involves human testers executing test cases without automation tools.

    • Testers validate functionality, usability, and performance of the application.

    • Example: A tester manually checks if a login page accepts valid credentials.

    • Focuses on exploratory testing, where testers use their intuition and experience.

    • Example: Testing a ne...

  • Answered by AI
  • Q2. What is jira
  • Ans. 

    Jira is a project management tool used for issue tracking and agile project management, primarily in software development.

    • Developed by Atlassian, Jira helps teams plan, track, and manage software development projects.

    • It allows users to create and manage issues, such as bugs, tasks, and user stories.

    • Jira supports agile methodologies like Scrum and Kanban, enabling teams to visualize their workflow.

    • Users can customize wo...

  • Answered by AI
  • Q3. What is crm
  • Ans. 

    CRM stands for Customer Relationship Management, a strategy for managing a company's interactions with customers and prospects.

    • CRM systems help businesses manage customer data and interactions.

    • Examples of CRM software include Salesforce, HubSpot, and Zoho CRM.

    • CRM can improve customer service by providing a centralized database of customer information.

    • It enables personalized marketing by tracking customer preferences an...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Traviyo not good company environment is not y

Manual Tester Interview Questions & Answers

user image ravi shankar

posted on 20 Dec 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Regressin, sanity, functional, unit
  • Q2. Same as firste one
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(6 Questions)

  • Q1. What is filter in dot net core
  • Ans. 

    Filters in .NET Core are used to intercept HTTP requests and responses.

    • Filters are used to add cross-cutting concerns to MVC applications.

    • They can be used for authentication, authorization, logging, exception handling, etc.

    • Filters can be applied globally, at the controller level, or at the action level.

    • Examples of filters include AuthorizeFilter, ExceptionFilter, and ActionFilter.

  • Answered by AI
  • Q2. What is dependency injection
  • Ans. 

    Dependency injection is a design pattern that allows objects to be loosely coupled and dependencies to be injected at runtime.

    • Dependency injection is a way to achieve inversion of control.

    • It helps in creating modular and testable code.

    • Dependencies are provided to a class through constructor injection, property injection, or method injection.

    • It promotes code reusability and maintainability.

    • Example: In a .NET Core applic...

  • Answered by AI
  • Q3. Different between Transient,Add Scope and AddSingleton
  • Ans. 

    Transient creates a new instance every time it is requested, Scoped creates a new instance per scope, Singleton creates a single instance for the entire application.

    • Transient: Creates a new instance every time it is requested.

    • AddScoped: Creates a new instance per scope, such as per HTTP request.

    • AddSingleton: Creates a single instance for the entire application.

    • Example: Transient can be used for lightweight services tha...

  • Answered by AI
  • Q4. Difference between dataset and datareader
  • Ans. 

    Dataset is an in-memory representation of a relational database, while DataReader is a forward-only, read-only stream of data.

    • Dataset is a disconnected architecture, while DataReader is a connected architecture.

    • Dataset can hold multiple tables and relationships, while DataReader can only hold a single table.

    • Dataset can be used for data manipulation and updates, while DataReader is read-only.

    • Dataset requires more memory...

  • Answered by AI
  • Q5. Whai is Sql Join and why do we need it
  • Ans. 

    SQL Join is used to combine rows from two or more tables based on a related column between them.

    • Join is used to retrieve data from multiple tables in a single query.

    • It helps in avoiding data redundancy and improving query performance.

    • Different types of joins include inner join, left join, right join, and full outer join.

    • Join conditions are specified using the ON keyword.

    • Example: SELECT * FROM table1 JOIN table2 ON tabl...

  • Answered by AI
  • Q6. How to create a table using MYSQL
  • Ans. 

    To create a table using MYSQL, use the CREATE TABLE statement followed by the table name and column definitions.

    • Use the CREATE TABLE statement to create a new table

    • Specify the table name after the CREATE TABLE statement

    • Define the columns and their data types within parentheses

    • Add any additional constraints or attributes to the columns

    • Example: CREATE TABLE employees (id INT, name VARCHAR(50), age INT)

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Sep 2023.

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

.net core api with .net MVC application and jQuery

Round 3 - Technical 

(1 Question)

  • Q1. About api and mvc

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst company
Workin culture like a jail.
The have 12 company restrictions manual for employees.
This company is not allowing employees to go outside from office even not for lunch
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jun 2024, where I was asked the following questions.

  • Q1. Why you want to join this company?
  • Ans. 

    I admire your company's innovative approach to digital marketing and its commitment to driving impactful results for clients.

    • Your company's reputation for creativity aligns with my passion for developing unique marketing strategies.

    • I am impressed by your recent campaign that increased client engagement by 30%, showcasing your effectiveness in the digital space.

    • I value your commitment to professional development, as see...

  • Answered by AI
  • Q2. What will you do if Manager guide you wrong.
  • Ans. 

    Addressing a manager's wrong guidance requires tact, communication, and a focus on achieving the best outcomes for the team.

    • Assess the situation: Understand the guidance given and why it may be incorrect.

    • Gather evidence: Collect data or examples that support your perspective.

    • Communicate respectfully: Approach your manager with your findings in a constructive manner.

    • Suggest alternatives: Offer solutions or adjustments t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Sell vegetables, drive E Rickshaws But Please Never join this company.

UI Developer Interview Questions & Answers

user image Anonymous

posted on 17 Oct 2023

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Tell me about your self
  • Ans. Introduce yourself
  • Answered Anonymously
Round 3 - Coding Test 

They will share a figma and you have to make as is it into web page.

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about TraviYo?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Oct 2018. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Asked me to draw spring mvc architecture and about collection framework.
  • Q2. Asked me to write the logic for pattern.
  • Ans. 

    This question involves creating a specific pattern using loops and conditional statements in programming.

    • Identify the desired pattern (e.g., asterisks, numbers).

    • Use nested loops: outer loop for rows, inner loop for columns.

    • Control the output format with conditional statements.

    • Example: For a pyramid pattern, increase spaces and asterisks in each row.

  • Answered by AI
  • Q3. Asked me on core java.

Interview Preparation Tips

General Tips: be thorough with the core java and good to have knowledge on spring mvc
Skills: Communication
Duration: <1 week
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is oops in python
  • Q2. What is ternary operant in python
  • Ans. 

    Ternary operator in Python is a conditional expression that evaluates to a value based on a condition.

    • Ternary operator is written as 'value_if_true if condition else value_if_false'

    • It is a shorthand way of writing an if-else statement in a single line

    • Example: x = 10 if a > b else 20

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. All about core java
  • Q2. Front end and My Sql

TraviYo Interview FAQs

How many rounds are there in TraviYo interview?
TraviYo interview process usually has 1-2 rounds. The most common rounds in the TraviYo interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for TraviYo 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 TraviYo. The most common topics and skills that interviewers at TraviYo expect are Digital Marketing, Salesforce, Sales, B2B Sales and IT Sales.
What are the top questions asked in TraviYo interview?

Some of the top questions asked at the TraviYo interview -

  1. Different between Transient,Add Scope and AddSingle...read more
  2. Whai is Sql Join and why do we need...read more
  3. How to create a table using MY...read more

Tell us how to improve this page.

Overall Interview Experience Rating

2.4/5

based on 10 interview experiences

Difficulty level

Easy 20%
Moderate 60%
Hard 20%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 34 Interviews
GoComet Interview Questions
4.6
 • 24 Interviews
Bonami Software Interview Questions
4.1
 • 23 Interviews
FloBiz Interview Questions
3.5
 • 23 Interviews
Ivanti Interview Questions
3.6
 • 19 Interviews
Koantek Interview Questions
3.4
 • 17 Interviews
SentientGeeks Interview Questions
4.4
 • 16 Interviews
View all

TraviYo Reviews and Ratings

based on 50 reviews

3.8/5

Rating in categories

3.8

Skill development

3.6

Work-life balance

3.8

Salary

3.8

Job security

3.8

Company culture

3.7

Promotions

3.7

Work satisfaction

Explore 50 Reviews and Ratings
Front end Developer
8 salaries
unlock blur

₹2 L/yr - ₹3.5 L/yr

Software Engineer
3 salaries
unlock blur

₹1.8 L/yr - ₹5.5 L/yr

HR Manager
3 salaries
unlock blur

₹3.2 L/yr - ₹3.2 L/yr

HR Executive
3 salaries
unlock blur

₹3.2 L/yr - ₹4 L/yr

Web Designer
3 salaries
unlock blur

₹1.2 L/yr - ₹3 L/yr

Explore more salaries
Compare TraviYo with

Zidio Development

4.5
Compare

NexTurn

4.1
Compare

Springbord Systems

3.5
Compare

FloBiz

3.5
Compare
write
Share an Interview