i
Infosys
Work with us
Filter interviews by
A VPC network is a virtual private cloud that allows users to create and manage their own isolated network in the cloud.
VPC stands for Virtual Private Cloud
It allows users to create and manage their own isolated network in the cloud
Users can define their own IP address range, subnets, and route tables
VPC networks can be connected to on-premises networks using VPN or dedicated connections
Examples of cloud providers...
A Rest controller is a type of controller in Spring MVC framework used for handling RESTful web services.
It maps HTTP requests to handler methods
It returns data in JSON or XML format
It supports HTTP methods like GET, POST, PUT, DELETE
It can handle exceptions and return appropriate error responses
Example: @RestController in Spring Boot
I am familiar with a wide range of technologies including programming languages, databases, cloud computing, and cybersecurity.
Programming languages (e.g. Java, Python, C++)
Databases (e.g. SQL, MongoDB)
Cloud computing platforms (e.g. AWS, Azure)
Cybersecurity tools and practices
Machine learning and AI technologies
I used Java version X.X.X
I used Java version X.X.X for the project
The Java version used was X.X.X
The project was developed using Java X.X.X
Oops concepts are fundamental to object-oriented programming. They include inheritance, encapsulation, polymorphism, and abstraction.
Inheritance allows a class to inherit properties and methods from a parent class.
Encapsulation is the practice of hiding implementation details from the user.
Polymorphism allows objects to take on multiple forms or behaviors.
Abstraction is the process of simplifying complex systems b...
Search is a specific query for a particular item, while search all is a broader search for all items.
Search is used to find a specific item or information within a limited scope.
Search all is used to find all items or information within a broader scope.
Search is more targeted and precise, while search all is more general and comprehensive.
For example, searching for a specific product on a website is a search, whil...
Goto is an unconditional transfer of control while perform is a conditional transfer of control.
Goto is considered harmful as it can lead to spaghetti code.
Perform is used to execute a set of statements based on a condition.
Perform can be used with varying levels of granularity such as perform until, perform varying, etc.
Goto is rarely used in modern programming languages.
Example: perform until condition is met, g...
Different types of method declaration in C#
Static method - declared with 'static' keyword and can be called without creating an instance of the class
Instance method - declared without 'static' keyword and can only be called on an instance of the class
Async method - declared with 'async' keyword and can be used to perform asynchronous operations
Extension method - declared with 'this' keyword and can be called as if...
Joins are used to combine data from two or more tables based on a related column.
Joins are used in SQL to retrieve data from multiple tables.
They are based on a related column between the tables.
Common types of joins include inner join, left join, right join, and full outer join.
Inner join returns only the matching rows from both tables.
Left join returns all the rows from the left table and matching rows from the ...
Data can be passed to a COBOL program via JCL using DD statements.
Define a DD statement in the JCL with the same name as the input file in the COBOL program
Specify the input file name in the COBOL program's INPUT PROCEDURE
Use the ACCEPT statement in the COBOL program to read the input data
Boxing is the process of converting a value type to a reference type, while unboxing is the process of converting a reference type to a value type.
Boxing is done implicitly by the compiler when a value type is assigned to a reference type variable.
Unboxing requires an explicit cast from the reference type to the value type.
Boxing and unboxing can impact performance as they involve memory allocation and copying of data.
...
Garbage collection is a process in programming where the system automatically reclaims memory occupied by objects that are no longer in use.
Garbage collection helps prevent memory leaks by automatically freeing up memory that is no longer needed.
It is commonly used in languages like Java, C#, and Python.
Garbage collection can be either automatic or manual, with automatic being the most common approach.
Examples of garba...
MVC stands for Model-View-Controller, a software architectural pattern. Razor is a markup syntax used in ASP.NET MVC.
MVC is a design pattern that separates an application into three main components: Model, View, and Controller
Razor is a markup syntax used in ASP.NET MVC to create dynamic web pages
MVC helps in organizing code and separating concerns, making it easier to maintain and test applications
Software development is the process of creating, designing, testing, and maintaining software applications.
Involves writing code to create software applications
Includes designing the user interface and user experience
Testing the software for bugs and errors
Maintaining and updating the software as needed
ListView is a legacy view for displaying lists in Android, while RecyclerView is a more flexible and efficient replacement.
ListView is less efficient in terms of memory and performance compared to RecyclerView.
RecyclerView provides better performance by recycling views and separating the responsibilities of layout and data management.
RecyclerView supports more advanced features like animations and item decorations.
List...
Services and work manager are components in software development that help manage background tasks and processes.
Services are components that run in the background to perform long-running operations without affecting the user interface.
Work manager is a library that helps manage background tasks efficiently, taking into account factors like battery life and network availability.
Services can be used for tasks like downl...
I applied via Job Portal
Use the extend() method in Python to combine multiple lists into a single list.
Use the extend() method to add elements from one list to another list.
Alternatively, you can use the + operator to concatenate lists.
Example: list1 = [1, 2, 3], list2 = [4, 5, 6], combined_list = list1 + list2
I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.
Types of classes include abstract classes, concrete classes, interface classes, and inner classes.
Abstract classes cannot be instantiated and may contain abstract methods.
Concrete classes can be instantiated and provide implementations for all methods.
Interface classes define a contract for classes to implement.
Inner classes are classes defined within another class.
I address difficult situations within a team by promoting open communication, seeking to understand all perspectives, and collaborating on solutions.
Promote open communication to address issues early on
Seek to understand all perspectives before making decisions
Collaborate with team members to find mutually beneficial solutions
Cloning Oracle E-Business Suite R12.2 involves several key steps for replication and maintenance.
1. Prepare the source instance by ensuring it is in a stable state.
2. Create a backup of the source database and application files.
3. Use the Rapid Clone utility to clone the instance.
4. Update the configuration files for the new instance.
5. Run post-cloning scripts to finalize the setup.
6. Verify the cloned instance by per...
Steps to resolve tablespace issues and phases of ADOP in application development.
Monitor tablespace usage regularly to anticipate issues before they arise.
Increase the size of the tablespace by adding data files.
Archive or purge old data to free up space.
Implement partitioning to manage large tables more effectively.
Review and optimize database queries to reduce space consumption.
In ADOP, phases include: Prepare, Apply...
I applied via Referral and was interviewed in Oct 2024. There were 2 interview rounds.
I expect a challenging role that fosters growth, collaboration, and innovation in technology analysis.
Opportunities for professional development, such as training programs or workshops.
A collaborative work environment where team members share ideas and insights.
Involvement in innovative projects that push the boundaries of technology.
Clear communication from leadership regarding company goals and expectations.
A culture...
I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.
Kersal server is a type of server used for hosting websites and applications.
Kersal server is known for its reliability and performance.
It is often used by businesses to host their websites and applications.
Kersal server offers features like high uptime, security, and scalability.
Examples of Kersal server providers include AWS, Google Cloud, and Microsoft Azure.
Dependency injection is a design pattern in which components are given their dependencies rather than creating them internally.
Dependency injection helps in achieving loose coupling between classes.
It allows for easier testing and maintenance of code.
There are three types of dependency injection: constructor injection, setter injection, and interface injection.
We are using a microservices architecture in our project.
Decomposes the application into smaller, independent services
Each service is responsible for a specific function
Allows for scalability and flexibility
Example: Netflix, Amazon, Uber
Overloading is having multiple methods in the same class with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.
Overloading involves multiple methods with the same name but different parameters.
Overriding involves a method in a subclass with the same name and parameters as a method in the superclass.
Overloading is resolved...
MVC architecture is implemented by separating the application into Model, View, and Controller components.
Create models to represent data and business logic
Develop views to display the user interface
Write controllers to handle user input and update the model
What people are saying about Infosys
Some of the top questions asked at the Infosys Technology Analyst interview -
The duration of Infosys Technology Analyst interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 230 interview experiences
Difficulty level
Duration
based on 4.6k reviews
Rating in categories
Technology Analyst
54.8k
salaries
| ₹3 L/yr - ₹11.5 L/yr |
Senior Systems Engineer
53.7k
salaries
| ₹2.5 L/yr - ₹8.1 L/yr |
Technical Lead
35k
salaries
| ₹7.3 L/yr - ₹20 L/yr |
System Engineer
32.5k
salaries
| ₹2.4 L/yr - ₹5.3 L/yr |
Senior Associate Consultant
31k
salaries
| ₹6.3 L/yr - ₹16.9 L/yr |
TCS
Wipro
Cognizant
Accenture