i
TraviYo
Filter interviews by
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...
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...
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...
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.
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...
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...
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...
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)
I appeared for an interview in May 2025, where I was asked the following questions.
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...
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...
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...
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.
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...
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...
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...
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...
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)
I appeared for an interview in Sep 2023.
.net core api with .net MVC application and jQuery
I appeared for an interview before Jun 2024, where I was asked the following questions.
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...
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...
I applied via Campus Placement and was interviewed before Oct 2022. There were 3 interview rounds.
They will share a figma and you have to make as is it into web page.
Top trending discussions
posted on 4 May 2019
I applied via Naukri.com and was interviewed in Oct 2018. There were 3 interview rounds.
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.
posted on 16 Aug 2024
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
posted on 27 Aug 2024
I applied via Job Portal
based on 10 interview experiences
Difficulty level
Duration
1-4 Yrs
Not Disclosed
1-2 Yrs
Not Disclosed
Front end Developer
8
salaries
| ₹2 L/yr - ₹3.5 L/yr |
Software Engineer
3
salaries
| ₹1.8 L/yr - ₹5.5 L/yr |
HR Manager
3
salaries
| ₹3.2 L/yr - ₹3.2 L/yr |
HR Executive
3
salaries
| ₹3.2 L/yr - ₹4 L/yr |
Web Designer
3
salaries
| ₹1.2 L/yr - ₹3 L/yr |
Zidio Development
NexTurn
Springbord Systems
FloBiz