Filter interviews by
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
I applied via Campus Placement
I am a technical content developer with experience in IT industry.
I have a degree in Computer Science.
I have worked as a software developer for 3 years.
I have experience in creating technical documentation and training materials.
I am proficient in programming languages such as Java and Python.
I am a quick learner and enjoy staying up-to-date with the latest technologies.
The institute has treated me well and provided ample opportunities for growth.
The institute has provided me with necessary resources to excel in my role.
I have been given opportunities to attend training sessions and conferences to enhance my skills.
The management is supportive and encourages innovation and creativity.
The work culture is positive and fosters collaboration among team members.
I have learned technical skills and developed a passion for creating engaging content.
Learned programming languages such as Java and Python
Developed skills in web development and database management
Gained experience in technical writing and content creation
Passionate about creating engaging and informative content for technical audiences
As a Technical Content Developer, I have been responsible for creating and managing technical documentation for various software products.
Created and maintained technical documentation for software products
Collaborated with development teams to ensure accuracy of documentation
Managed documentation projects from start to finish
Developed and implemented documentation standards and processes
Provided training to new hires
My passion for technology and writing makes me a perfect fit for this internship.
I have always been interested in technology and enjoy keeping up with the latest trends and advancements.
I have experience writing technical content for various platforms, including blogs and social media.
I am excited about the opportunity to combine my passion for technology and writing in this internship.
I am eager to learn new skills an
Visa is a global leader in payment technology, providing secure and convenient payment options to millions of people worldwide.
Visa has a strong reputation for innovation and cutting-edge technology
Visa's global presence offers opportunities for diverse and challenging projects
Working for Visa means being part of a team that is dedicated to making payments safer and more convenient for everyone
Visa's commitment to dive...
A credit/debit card typically contains the cardholder's name, card number, expiration date, and security code.
Cardholder's name
Card number
Expiration date
Security code/CVV
Card issuer logo
Magnetic stripe
Chip
Contactless payment symbol
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...
Visa interview questions for popular designations
I applied via Campus Placement
To modify a Gmail notifier, you can customize its appearance, add additional features, or integrate it with other applications.
Customize the notifier's appearance by changing its color, font, or notification sound.
Add additional features such as the ability to mark emails as read or reply directly from the notifier.
Integrate the notifier with other applications like a task manager or calendar to display reminders or de...
Get interview-ready with Top Visa Interview Questions
I was interviewed before Apr 2021.
Round duration - 45 minutes
Round difficulty - Easy
This was a technical interview round.
AJAX allows web pages to be updated asynchronously by exchanging data with a web server behind the scenes.
AJAX stands for Asynchronous JavaScript and XML.
It allows web pages to update content without reloading the entire page.
AJAX uses XMLHttpRequest object to send and receive data from a server.
Commonly used in web applications to provide a more responsive user experience.
SOAP is a protocol, while REST is an architectural style for web services.
SOAP is a protocol that uses XML for message format and relies on a request-response model.
REST is an architectural style that uses standard HTTP methods like GET, POST, PUT, DELETE.
SOAP is more rigid and requires more bandwidth, while REST is lightweight and flexible.
SOAP has built-in security features like WS-Security, while REST relies on exte...
GET is used to request data from a server, while POST is used to submit data to a server.
GET requests data from a specified resource, while POST submits data to be processed to a specified resource.
GET requests are cached by browsers, while POST requests are not.
GET requests can be bookmarked and shared, while POST requests cannot.
GET requests have length restrictions, while POST requests do not.
Example: Using GET to r...
The Observer Pattern is a behavioral design pattern where an object (subject) maintains a list of dependents (observers) that are notified of any state changes.
Allows for one-to-many dependency between objects
When the subject's state changes, all observers are automatically notified and updated
Commonly used in event handling systems and GUI frameworks
Round duration - 40 minutes
Round difficulty - Easy
This was the second technical interview round.
A singleton class is a class that can only have one instance created throughout the entire application.
Singleton classes have a private constructor to prevent multiple instances from being created.
They typically provide a static method to access the single instance.
Commonly used for logging, database connections, and configuration settings.
Immutability in Java refers to the property of objects whose state cannot be changed once they are created.
Immutability ensures that once an object is created, its state cannot be modified.
Immutable objects are thread-safe and can be shared without the risk of data corruption.
String class in Java is an example of an immutable class.
To create an immutable class, make the class final, all fields private, and provide only
Dependency injection is a design pattern where 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
Examples: Constructor injection, Setter injection, Interface injection
To create an immutable class in Java, make the class final, make all fields private and final, provide only getter methods, and do not provide any setter methods.
Make the class final to prevent inheritance.
Make all fields private and final to prevent modification.
Provide only getter methods to access the fields.
Do not provide any setter methods to modify the fields.
Round duration - 30 minutes
Round difficulty - Easy
HR round with typical behavioral problems.
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.
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.
I was interviewed before Apr 2021.
Round duration - 60 minutes
Round difficulty - Easy
Technical Interview round with questions on DSA.
You are given an array of integers PRICES
where PRICES[i]
represents the price of a stock on the i-th day, and an integer K
representing the number of transactions you...
Determine maximum profit with at most K transactions by buying and selling stocks on given days.
Iterate through the array of prices while keeping track of the maximum profit achievable with at most K transactions.
Use dynamic programming to store the maximum profit at each day and transaction count.
Consider buying and selling stocks at each day to calculate the maximum profit.
Return the maximum profit achievable with at
Given a Binary Tree consisting of 'N' nodes with integer values, your task is to determine the in-order traversal of the Binary Tree.
The first line contains ...
The task is to determine the in-order traversal of a Binary Tree given in level order.
Implement a function to perform in-order traversal of a Binary Tree
Use recursion to traverse left subtree, visit root, and then traverse right subtree
Handle null nodes denoted by -1 in the input
Round duration - 30 minutes
Round difficulty - Easy
HR round with typical behavioral problems.
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.
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.
Top trending discussions
Some of the top questions asked at the Visa interview -
The duration of Visa interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 102 interviews
Interview experience
Senior Software Engineer
621
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Engineer
196
salaries
| ₹0 L/yr - ₹0 L/yr |
Staff Software Engineer
149
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Data Engineer
89
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Software Test Engineer
87
salaries
| ₹0 L/yr - ₹0 L/yr |
MasterCard
American Express
PayPal
State Bank of India