i
Fusion
CX
Filter interviews by
Be the first one to contribute and help others!
I appeared for an interview before Dec 2021.
In my previous company, I gained valuable experience in project management, teamwork, and client relations, enhancing my professional skills.
Led a team of 5 in a successful project that increased client satisfaction by 20%.
Implemented a new workflow system that reduced project turnaround time by 15%.
Collaborated with cross-functional teams to deliver high-quality results under tight deadlines.
I joined this company for its innovative approach, strong values, and commitment to professional growth and community impact.
The company's mission aligns with my personal values, particularly in promoting sustainability and social responsibility.
I was impressed by the company's track record of innovation, such as the recent launch of a groundbreaking product that addresses key market needs.
The opportunity for professio...
I applied via Referral and was interviewed in Apr 2023. There were 6 interview rounds.
They will give you 2 case law assignment.
One will be you have to summarize that case law into 4-5 lines
Secondly you have to write the damages of the caselaw..
And second assignment will be write any given by them, write that topic on your own within 250 words..
I applied via Referral and was interviewed before Oct 2023. There were 3 interview rounds.
Legal complaint given I which we have to summarize the damages and synopsis
I plan to work here for the foreseeable future, as I am excited about the opportunities for growth and development within the company.
I am committed to contributing to the success of the company for the long term
I see potential for advancement and career growth within the organization
I am eager to learn and develop new skills in this role
Yes, I am ready to work full night shifts with targets.
I am comfortable working at night and meeting targets
I understand the importance of meeting deadlines and achieving goals
I have experience working night shifts in the past and have been successful
I am motivated and dedicated to performing well in any shift schedule
I applied via Approached by Company and was interviewed before Jun 2023. There was 1 interview round.
Creating an interface in Python or Java
In Python, create an interface using the 'abc' module and the 'abstractmethod' decorator
In Java, create an interface using the 'interface' keyword
Interfaces define a set of methods that a class must implement
Return is used to exit a function and yield is used to produce a series of values
Return statement is used to exit a function and return a value to the caller
Yield statement is used in generator functions to produce a series of values
Yield is used to create iterators, while return is used to return a value from a function
Example: def generator_function(): yield 1 yield 2 yield 3
Example: def return_function()...
Career growth involves continuous learning, skill development, and seeking opportunities for advancement in one's professional journey.
Set clear career goals: Define where you want to be in 5 or 10 years.
Seek mentorship: Find a mentor who can provide guidance and support.
Continuous learning: Enroll in courses or certifications relevant to your field.
Network actively: Attend industry events to connect with professionals...
Race condition is a situation where multiple threads/processes access and manipulate shared data simultaneously.
It can be eliminated by using synchronization techniques like locks, semaphores, and mutexes.
Another way is to use atomic operations that ensure the data is accessed and modified atomically.
Using thread-safe data structures can also prevent race conditions.
Example: Two threads trying to increment a shared var...
JCube is a Java library for creating and manipulating Rubik's Cube puzzles.
JCube provides classes for representing Rubik's Cube puzzles and algorithms for solving them.
It supports various cube sizes and can generate random scrambles.
JCube can be used in Java applications or as a standalone command-line tool.
It is open source and available on GitHub.
Regression testing is the process of testing changes made to a software application to ensure that existing functionality still works.
It is performed after making changes to the software
It ensures that existing functionality is not affected by the changes
It helps to catch any defects or bugs that may have been introduced
It can be automated using testing tools
Examples include retesting after bug fixes, testing after new...
Software engineering principles are the best practices and guidelines for developing high-quality software.
Software should be designed with modularity and scalability in mind.
Code should be well-documented and easy to read.
Testing and debugging should be an integral part of the development process.
Version control should be used to manage code changes.
Security and privacy should be considered throughout the development ...
A Singleton class is a class that can only have one instance at a time.
It restricts the instantiation of a class to a single object.
It provides a global point of access to that instance.
It is often used in situations where a single object is required to coordinate actions across a system.
Example: Database connection manager, Configuration manager, Logger manager.
Testing principles ensure software quality, while design principles guide software development.
Testing principles include unit testing, integration testing, and acceptance testing.
Design principles include SOLID, DRY, and KISS.
Testing principles ensure that software meets requirements and is free of defects.
Design principles guide software development to be modular, maintainable, and scalable.
I have the necessary skills, experience, and passion to contribute to VISA's success.
I have a strong background in software development and have worked on projects similar to those at VISA.
I am a quick learner and can adapt to new technologies and programming languages easily.
I am passionate about creating high-quality software that meets the needs of users and exceeds their expectations.
I am a team player and can work...
A profile that challenges me to learn and grow while allowing me to contribute to a team.
A position that encourages continuous learning and development
A role that allows me to collaborate with a team and contribute to projects
A company culture that aligns with my values and work ethic
I am interested in exploring new opportunities and challenges that this company can offer.
I am impressed with the company's reputation and growth potential.
I am excited about the projects and technologies this company is working on.
I believe this company can provide me with a better work-life balance and career growth opportunities.
I am looking for a company culture that aligns with my values and goals.
I am open to exp...
Developed a web application using Python and Django framework for managing inventory and sales.
Used Python programming language for backend development
Implemented Django framework for building web application
Designed database schema for inventory and sales data
Integrated frontend using HTML, CSS, and JavaScript
Implemented user authentication and authorization features
I applied via Campus Placement and was interviewed in Sep 2016. There were 4 interview rounds.
I am a passionate software developer with experience in Java, Python, and web development.
Experienced in Java, Python, and web development technologies
Strong problem-solving skills
Team player with excellent communication skills
My resume highlights my experience in software development and showcases my skills in various programming languages and technologies.
Worked on multiple projects using Java, Python, and C++
Developed web applications using HTML, CSS, and JavaScript
Experience with databases such as MySQL and MongoDB
Familiarity with Agile methodology and version control systems like Git
Participated in hackathons and coding competitions
I want to go for VISA to explore new opportunities and gain international experience.
To gain exposure to different cultures and work environments
To expand my skill set and learn new technologies
To work on challenging projects and contribute to the growth of the company
To build a global network of professionals and enhance my career prospects
A binary tree is a data structure in which each node has at most two children.
Start with a root node
Each node has a left and right child
Nodes can be added or removed
Traversal can be done in-order, pre-order, or post-order
Code a basic linked list
Create a Node class with data and next pointer
Create a LinkedList class with head pointer
Implement methods to add, delete, and search nodes in the linked list
A circular linked list is a data structure where the last node points back to the first node, forming a loop.
Create a Node class with data and next pointer
Initialize the head node and set its next pointer to itself
To add a node, create a new node and set its next pointer to the head node's next pointer, then update the head node's next pointer to the new node
To traverse the circular linked list, start from the head nod...
I appeared for an interview in Dec 2020.
Round duration - 60 minutes
Round difficulty - Medium
test timing: 7-8 pm
2 programming questions
webcam proctored
You are provided with an array ARR
of integers of size 'N' and an integer 'K'. The goal is to move from the starting index to the end of the array with the minimum possib...
Find minimum cost to reach end of array by jumping with constraints
Use dynamic programming to keep track of minimum cost at each index
Iterate through the array and update the minimum cost based on reachable indices within K steps
Calculate cost to jump from current index to reachable indices and update minimum cost accordingly
Tip 1 : Ability to apply data structures in questions(practice graph and Tree questions)
Tip 2 : Thorough knowledge of the projects done
Tip 3 : Good knowledge about computer science concepts
Tip 1 : Mention projects that you have done yourself and are thorough with
Tip 2 : mention soft skills
Customer Care Executive
380
salaries
| ₹1 L/yr - ₹2.4 L/yr |
Customer Service Associate
219
salaries
| ₹0.9 L/yr - ₹2.2 L/yr |
Quality Analyst
203
salaries
| ₹1.5 L/yr - ₹4.4 L/yr |
Team Lead
197
salaries
| ₹1.4 L/yr - ₹4 L/yr |
Customer Service Executive
191
salaries
| ₹1 L/yr - ₹2.7 L/yr |
Adecco Group
Reckitt Benckiser
Exela Technologies
TE Connectivity