i
Infosys
Work with us
Filter interviews by
Multithreading involves multiple threads within a single process, while multiprocessing uses multiple processes for parallel execution.
Multithreading shares the same memory space, making it lightweight and faster for tasks like I/O operations.
Multiprocessing has separate memory spaces, which can lead to better performance for CPU-bound tasks.
Example of multithreading: A web server handling multiple requests simult...
Thymeleaf is a modern server-side Java template engine for web and standalone environments, designed for processing and creating HTML, XML, and more.
Thymeleaf integrates seamlessly with Spring Framework, making it a popular choice for Spring MVC applications.
It allows for natural templating, meaning templates can be opened and edited in a browser without needing to be processed by the server.
Thymeleaf supports var...
Swagger is an open-source framework for designing, building, and documenting RESTful APIs.
Swagger provides a user-friendly interface for API documentation.
It uses a standard format (OpenAPI Specification) to describe APIs.
Developers can generate client libraries and server stubs from Swagger definitions.
Example: A Swagger UI can display endpoints for a weather API, showing methods like GET /weather.
Swagger allows ...
VLANs segment networks for improved performance and security by creating virtual networks within a physical network.
VLAN stands for Virtual Local Area Network, allowing logical segmentation of networks.
Improves security by isolating sensitive data traffic from general traffic.
Enhances performance by reducing broadcast domains, minimizing unnecessary traffic.
Example: A company can create separate VLANs for HR, Fina...
Static routing is a method of manually configuring routes in a network, providing fixed paths for data packets.
Static routes are manually configured by a network administrator.
They do not change unless manually altered, providing predictable routing.
Useful in small networks where routes are unlikely to change.
Example: A static route can be set to direct traffic from a local network to a specific gateway.
Static rou...
Network security involves measures to protect data and resources in a network from unauthorized access and attacks.
Firewalls: Act as barriers between trusted and untrusted networks, controlling incoming and outgoing traffic.
Intrusion Detection Systems (IDS): Monitor network traffic for suspicious activity and alert administrators.
Encryption: Protects data in transit and at rest, ensuring that only authorized users...
An Internet Service Provider (ISP) is a company that provides individuals and organizations access to the Internet.
ISPs can be local, regional, or national, such as Comcast, AT&T, or Verizon.
They offer various services including broadband, dial-up, and fiber-optic connections.
ISPs may also provide additional services like email hosting, web hosting, and domain registration.
Some ISPs operate as mobile network p...
I am proficient in Python, a versatile language used for web development, data analysis, and automation tasks.
Python is known for its readability and simplicity, making it ideal for beginners.
I have experience using Python for data analysis with libraries like Pandas and NumPy.
I have developed web applications using Flask and Django frameworks.
Python's extensive libraries allow for automation of repetitive tasks, ...
Connect SQL Server with Python using libraries, perform data cleaning, and model data effectively.
Use 'pyodbc' or 'SQLAlchemy' to connect to SQL Server. Example: 'import pyodbc; conn = pyodbc.connect('DSN=DataSource;UID=user;PWD=password')'
Execute SQL queries to fetch data using 'pandas'. Example: 'df = pd.read_sql('SELECT * FROM table_name', conn)'
Perform data cleaning using 'pandas' methods like 'dropna()', 'fil...
Unstructured data sets can be analyzed using various techniques to extract meaningful insights and details.
Use Natural Language Processing (NLP) to analyze text data, such as patient notes or social media posts.
Implement machine learning algorithms to categorize and cluster unstructured data, like images or videos.
Utilize data visualization tools to identify patterns in unstructured data, such as customer feedback...
I appeared for an interview in Jun 2025, where I was asked the following questions.
I am motivated by the opportunity to make a positive impact, continuous learning, and fostering strong relationships in the workplace.
Making a positive impact: I thrive when I can help resolve employee issues, leading to a more harmonious workplace.
Continuous learning: I am driven by the chance to develop my skills, such as attending workshops on conflict resolution.
Building relationships: I find motivation in creating...
I bring a unique blend of experience, skills, and passion for fostering positive employee relations and enhancing workplace culture.
Proven track record in conflict resolution, having successfully mediated disputes that improved team dynamics.
Strong communication skills, demonstrated by leading workshops that educated employees on their rights and responsibilities.
Experience in developing employee engagement programs, r...
I once mismanaged a team project, leading to missed deadlines and team frustration, but learned valuable lessons in communication.
Failed to communicate project expectations clearly, resulting in confusion among team members.
Missed a critical deadline due to lack of proper planning and resource allocation.
Realized the importance of regular check-ins and feedback loops to keep the team aligned.
Implemented new strategies ...
I pursued a career in Employee Relations to foster a positive workplace culture and support employee well-being and engagement.
Passion for people: I enjoy helping individuals navigate workplace challenges, ensuring they feel heard and valued.
Conflict resolution: I have successfully mediated disputes, such as resolving a team conflict that improved collaboration and productivity.
Promoting engagement: I initiated employe...
I communicate openly and empathetically, fostering trust and collaboration while adapting my style to suit diverse audiences.
I prioritize active listening, ensuring that I fully understand others' perspectives before responding.
I adapt my communication style based on the audience; for example, I use technical language with specialists and simpler terms with non-experts.
I encourage open dialogue by creating a safe space...
I would approach difficult clients with empathy, active listening, and a solution-oriented mindset to resolve their concerns effectively.
Listen actively to understand the client's concerns without interrupting.
Empathize with their situation by acknowledging their feelings, e.g., 'I understand how frustrating this must be for you.'
Ask clarifying questions to gather more information and ensure I fully understand the issu...
I successfully mediated a conflict between two departments, improving collaboration and enhancing employee morale.
Identified the root cause of the conflict through one-on-one meetings with team members.
Facilitated a joint meeting where both departments could express their concerns and expectations.
Implemented a follow-up plan to ensure ongoing communication and collaboration between the teams.
Measured success through e...
I appeared for an interview in Feb 2025.
Spring Boot's default server is Tomcat, but you can easily switch to others like Jetty or Undertow.
Spring Boot uses Tomcat as the default embedded server.
To use Jetty, add the dependency: 'spring-boot-starter-jetty' in your pom.xml.
For Undertow, include 'spring-boot-starter-undertow' in your dependencies.
You can exclude Tomcat by adding 'exclude = {Tomcat.class}' in your @SpringBootApplication annotation.
Spring Boot's default port is 8080, and it can be changed via application properties or command line arguments.
Default port: 8080.
Change via application.properties: server.port=9090.
Change via command line: java -jar app.jar --server.port=9090.
Change via YAML: server: port: 9090
The Optional class is a container that may or may not hold a non-null value, helping to avoid NullPointerExceptions.
Introduced in Java 8 to represent optional values.
Helps in avoiding null checks and NullPointerExceptions.
Methods include isPresent(), ifPresent(), orElse(), and orElseGet().
Example: Optional<String> name = Optional.ofNullable(getName());
Example: name.ifPresent(n -> System.out.println(n));
Optional.of() throws an exception for null, while Optional.ofNullable() allows null values, returning an empty Optional.
Optional.of(T value): Requires a non-null value; throws NullPointerException if value is null.
Example: Optional<String> opt = Optional.of('Hello'); // valid
Optional.ofNullable(T value): Accepts null values; returns Optional.empty() if value is null.
Example: Optional<String> opt = Optional....
Receiving negative feedback is an opportunity for growth; I approach it with an open mind and a willingness to improve.
Listen actively to the feedback without interrupting, showing respect for the manager's perspective.
Ask clarifying questions to fully understand the feedback and the areas needing improvement.
Reflect on the feedback and identify specific actions I can take to address the concerns raised.
Create a plan t...
My short-term goal is to enhance my Java skills, while my long-term goal is to lead projects and mentor junior developers.
Short-term: Master advanced Java frameworks like Spring and Hibernate to improve my development efficiency.
Short-term: Contribute to open-source projects to gain real-world experience and collaborate with other developers.
Long-term: Aim for a leadership role where I can guide teams in best practices...
My salary expectations are in line with industry standards and based on my experience and qualifications.
Research industry standards for Infrastructure Management Consultant salaries
Consider my level of experience and qualifications
Be prepared to negotiate based on the specific job responsibilities and benefits package
I have worked for three companies with varying sizes and industries, gaining experience in infrastructure management, project planning, and team leadership.
Managed infrastructure projects for a large tech company, overseeing network upgrades and server migrations
Led a team of IT professionals in a medium-sized financial institution, implementing disaster recovery plans and security protocols
Worked as a consultant for a...
I have worked for a variety of companies in the technology and infrastructure sector.
Worked for a multinational IT consulting firm
Managed infrastructure projects for a Fortune 500 company
Consulted for a government agency on infrastructure upgrades
I have worked with various technologies such as cloud computing, virtualization, network management, and cybersecurity.
Cloud computing - Managed AWS infrastructure for scalability and cost-efficiency.
Virtualization - Implemented VMware solutions to optimize server resources.
Network management - Configured Cisco routers and switches for efficient data flow.
Cybersecurity - Conducted vulnerability assessments and implemen...
Implemented a cloud migration project for a large financial institution
Led a team to assess current infrastructure and develop a migration plan
Utilized AWS services to migrate applications and data to the cloud
Ensured minimal downtime and optimized performance post-migration
I appeared for an interview in Dec 2024.
I am a dedicated and detail-oriented business analyst with a strong background in data analysis and problem-solving.
Experienced in conducting market research and analyzing trends
Skilled in creating detailed reports and presentations for stakeholders
Proficient in using data analysis tools such as Excel and SQL
Implicit enhancements are enhancements that are automatically applied to a program without any explicit coding, while explicit enhancements are enhancements that are manually added to a program through coding.
Implicit enhancements are activated by SAP without any additional coding from the developer.
Explicit enhancements require the developer to manually add code to enhance the program.
Implicit enhancements are often u...
Different types of enhancements include functional, performance, security, and usability enhancements.
Functional enhancements improve the core functionality of a system or product.
Performance enhancements focus on improving speed, efficiency, and scalability.
Security enhancements aim to protect the system from potential threats and vulnerabilities.
Usability enhancements enhance the user experience and make the system m...
Debugging background jobs involves checking logs, monitoring job status, and using debugging tools.
Check the logs for any error messages or warnings
Monitor the job status to see if it is running or stuck
Use debugging tools like debugger or profiler to analyze the code execution
Check for any dependencies or external factors affecting the job
Debugging smartforms involves identifying and fixing errors in the form design or code.
Check for syntax errors in the smartform code
Verify data binding and field mappings
Use debugging tools like breakpoints and watchpoints
Test the smartform with sample data to identify issues
Consult documentation or seek help from experienced developers
I have used the BAPI_MATERIAL_GET_DETAIL to retrieve material details in SAP system.
BAPI_MATERIAL_GET_DETAIL is used to fetch material master data in SAP
It can be used to retrieve information such as material description, unit of measure, and plant data
Example: BAPI_MATERIAL_GET_DETAIL('MaterialNumber')
File handling is the process of managing and manipulating files on a computer system.
File handling involves tasks such as creating, reading, writing, and deleting files.
It also includes operations like opening and closing files, as well as moving and copying files.
Examples of file handling functions include fopen(), fread(), fwrite(), and fclose() in programming languages like C or Python.
The FM used to upload data is 'UPLOAD_DATA'
The FM 'UPLOAD_DATA' is commonly used in SAP systems to upload data from external sources
It is often used in data migration projects or when bulk data needs to be imported into the system
The 'UPLOAD_DATA' FM typically requires input parameters such as file path, data format, and target table
To make a table field case sensitive, you can change the collation of the column to a case-sensitive collation.
Change the collation of the column to a case-sensitive collation like Latin1_General_CS or SQL_Latin1_General_CP1_CS_AS
For example, ALTER TABLE table_name ALTER COLUMN column_name COLLATE Latin1_General_CS_AS
BSPI is used instead of Update query for real-time data processing and to ensure data consistency.
BSPI (Business Service Provider Interface) is used for real-time data processing in SAP systems.
BSPI ensures data consistency by providing a standardized way to update data across different systems.
Update queries can be risky for real-time data processing as they may lead to data inconsistencies.
BSPI allows for better erro...
I am a detail-oriented business analyst with experience in data analysis and process improvement.
Experienced in data analysis and reporting
Skilled in process improvement and optimization
Strong attention to detail and problem-solving skills
Explicit enhancements are modifications made directly to a standard SAP object, while implicit enhancements are modifications made using enhancement points provided by SAP.
Explicit enhancements involve directly modifying the standard SAP object code.
Implicit enhancements involve using enhancement points provided by SAP to add custom code.
Explicit enhancements can be risky as they may be overwritten during system upgrad...
Customer Exit requirements involve defining conditions under which a customer can end their relationship with a company.
Identifying reasons why customers may want to exit the relationship
Defining the process for customers to formally request an exit
Determining any penalties or fees associated with exiting
Ensuring data privacy and security during the exit process
Developing strategies to retain customers before they exit
FM stands for Facilities Management, which includes various types such as Hard FM and Soft FM.
Hard FM involves physical assets like buildings and equipment maintenance.
Soft FM focuses on non-physical assets like cleaning, security, and catering services.
Other types include Integrated FM, Total FM, and Strategic FM.
Examples: Hard FM - HVAC maintenance, Soft FM - janitorial services.
BAPIs are created using transaction code BAPI in SAP system.
BAPIs are created using transaction code BAPI in SAP system.
BAPIs are defined using Function Modules in SAP.
BAPIs are used to integrate SAP systems with external systems.
BAPIs can be created for both standard SAP functions and custom functions.
Tcode for code optimization is SE30 in SAP
SE30 is a transaction code in SAP used for performance trace and analysis
It helps in identifying performance bottlenecks in ABAP code
SE30 provides detailed analysis of runtime, database, and memory consumption
Code optimization involves improving code efficiency and performance.
Identify and remove unnecessary code
Use efficient data structures and algorithms
Minimize the number of function calls
Optimize loops and conditional statements
Use caching and memoization techniques
Profile and analyze code for bottlenecks
The Tcode for ADOBE Form is SFP.
Tcode SFP is used to create and maintain Adobe Forms in SAP systems.
Adobe Forms are used for designing and formatting business documents like invoices, purchase orders, etc.
Yes, I have worked on Module Pool in SAP ABAP development.
I have experience creating interactive screens using Module Pool programming in SAP ABAP.
I have worked on designing screens with input fields, buttons, and logic to process user input.
I have implemented navigation between screens and data validation in Module Pool.
I have integrated Module Pool programs with backend ABAP logic for data processing.
I have experienc...
Commit statement is used to permanently save changes made in a transaction in a database.
Commits all changes made in a transaction to the database
Permanently saves the changes
Ends the transaction and makes the changes visible to other transactions
To gain practical experience and skills through internships, certifications, and volunteer work before securing a full-time job.
Took time to gain practical experience through internships, certifications, and volunteer work
Focused on developing skills and knowledge in relevant areas
Used the gap year to explore different career options and industries
Took time to travel or pursue personal interests before committing to a ...
I am open to relocation for the right opportunity.
Open to relocation for career growth
Interested in exploring new cities
Flexible with location preferences
Python is a high-level programming language known for its simplicity and readability.
Python is an interpreted language, meaning code is executed line by line.
It supports multiple programming paradigms like object-oriented, imperative, and functional programming.
Python has a large standard library and a thriving community with numerous third-party libraries.
Popular frameworks like Django and Flask are built using Python...
Object-oriented programming concepts that focus on classes and objects.
Encapsulation: Bundling data and methods that operate on the data into a single unit (class).
Inheritance: Ability of a class to inherit properties and behavior from another class.
Polymorphism: Ability to present the same interface for different data types.
Abstraction: Hiding the complex implementation details and showing only the necessary features.
Aptitude test questions
Machine learning is a branch of artificial intelligence that involves developing algorithms and models that can learn from and make predictions or decisions based on data.
Machine learning is a subset of artificial intelligence that focuses on developing algorithms that can learn from and make predictions or decisions based on data.
It involves training models on large datasets to recognize patterns and make predictions ...
An example of machine learning is training a model to predict customer churn in a telecom company.
Collect and preprocess data on customer behavior and churn
Split data into training and testing sets
Choose a machine learning algorithm (e.g. logistic regression)
Train the model on the training data
Evaluate the model's performance on the testing data
Use the model to predict customer churn in the future
Aptitude test questions
Artificial intelligence is the simulation of human intelligence processes by machines, especially computer systems.
AI involves machines performing tasks that typically require human intelligence, such as visual perception, speech recognition, decision-making, and language translation.
Machine learning is a subset of AI that allows machines to learn from data and improve their performance over time.
Examples of AI include...
There are three types of artificial intelligence: narrow AI, general AI, and superintelligent AI.
Narrow AI, also known as weak AI, is designed for a specific task or set of tasks, such as facial recognition or language translation.
General AI, also known as strong AI, is able to perform any intellectual task that a human can do.
Superintelligent AI is hypothetical and would surpass human intelligence in every way.
Example...
I appeared for an interview in Feb 2025.
An anagram is a word formed by rearranging the letters of another, while non-repeating characters are unique in a string.
Anagram Check: To determine if two strings are anagrams, sort both strings and compare them. Example: 'listen' and 'silent'.
Character Count: Use a hash map to count occurrences of each character in a string to find the first non-repeating character. Example: 'swiss' returns 'w'.
Case Sensitivity: Cons...
I appeared for an interview in Jan 2025.
Snowflake offers a unique architecture that separates storage and compute, providing scalability, flexibility, and cost-effectiveness.
Snowflake's architecture separates storage and compute, allowing for independent scaling of each component.
Snowflake uses virtual warehouses to allocate compute resources on-demand, optimizing performance and cost.
Snowflake's multi-cluster shared data architecture enables seamless collab...
Time travel refers to the ability to query historical data in Snowflake, while fail safe refers to the system's ability to maintain data integrity and availability in case of failures.
Time travel allows users to query data as it existed at a specific point in the past, using the TIMESTAMP parameter in queries.
Fail safe mechanisms in Snowflake ensure data integrity and availability by automatically handling system failu...
Live feed is real-time data while extract is historical data.
Live feed is data that is constantly updated in real-time.
Extract is historical data that is extracted at a specific point in time.
Live feed is commonly used for monitoring real-time events, while extract is used for analysis of past data.
Examples: Twitter feed is live data, while a monthly sales report is an extract.
Join combines data from two or more tables based on a related column, while data blending combines data from different sources without a direct relationship.
Join is used to combine data from multiple tables based on a common column.
Data blending is used to combine data from different sources without a direct relationship.
Join requires a common column to match records, while data blending does not require a common colum...
I appeared for an interview in Jan 2025.
Static calls are resolved at compile time, while dynamic calls are resolved at runtime.
Static calls are resolved at compile time based on the declared type of the object being called.
Dynamic calls are resolved at runtime based on the actual type of the object being called.
Static calls are faster but less flexible, while dynamic calls are slower but more flexible.
Example: In a static call, the method to be called is det...
Control over job execution can be achieved through job scheduling, monitoring, and automation.
Use job scheduling tools like Control-M or CA Workload Automation to manage job execution.
Monitor job progress and status using tools like IBM Tivoli Monitoring or Nagios.
Automate job execution and error handling with scripts or custom programs.
Implement job dependencies to ensure proper sequencing and execution.
Set up alerts ...
A cursor in databases is a pointer that allows for traversal and manipulation of query results.
A cursor is used to retrieve and process individual rows returned by a query.
It allows for sequential access to query results, enabling operations like fetching, updating, and deleting rows.
Cursors are commonly used in programming languages like SQL to work with result sets.
For example, in a banking application, a cursor can ...
Null variables in COBOL DB2 programs can be handled using NULL indicators and COALESCE function.
Use NULL indicators to check if a variable is null before processing it.
Use COALESCE function to replace null values with a default value.
Handle null variables carefully to avoid runtime errors.
The waterfall model is a linear sequential software development process where progress flows in one direction like a waterfall.
Involves distinct phases such as requirements, design, implementation, testing, and maintenance.
Each phase must be completed before moving on to the next phase.
Changes are difficult to implement once a phase is completed.
Example: Traditional software development approach where requirements are ...
Agile framework is a project management approach that emphasizes flexibility, collaboration, and incremental development.
Agile framework involves breaking down projects into smaller tasks called sprints
It promotes frequent communication and collaboration among team members
Allows for flexibility and adaptability to changes in requirements
Examples of Agile frameworks include Scrum, Kanban, and Extreme Programming
I appeared for an interview in Jan 2025.
The exam consists of seven sections, and the cutoff score is quite high; it is essential to complete the exam thoroughly.
I completed a 6-month internship at a tech company, where I worked on network infrastructure projects.
Assisted in setting up and configuring network devices such as routers and switches
Troubleshooted network issues and implemented solutions
Collaborated with team members on various IT projects
Participated in meetings with clients to discuss project requirements
I have worked on various major projects including designing and implementing network infrastructure, developing automation scripts, and optimizing system performance.
Designed and implemented a new network infrastructure for a large company, improving network speed and reliability
Developed automation scripts to streamline system monitoring and maintenance tasks, saving time and reducing errors
Optimized system performanc...
The latest news I heard regarding technology is the release of the new iPhone 13 with improved camera features.
Apple recently announced the release of the iPhone 13 series with upgraded camera capabilities.
The new iPhone 13 models come with improved low-light performance and cinematic mode for videos.
Apple also introduced the A15 Bionic chip for enhanced performance and battery life.
What people are saying about Infosys
Some of the top questions asked at the Infosys interview -
The duration of Infosys interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 5.3k interview experiences
Difficulty level
Duration
based on 43.1k reviews
Rating in categories
Hyderabad / Secunderabad,
Chennai
+13-8 Yrs
Not Disclosed
Hyderabad / Secunderabad,
Chennai
+14-9 Yrs
Not Disclosed
Hyderabad / Secunderabad,
Chennai
+13-8 Yrs
Not Disclosed
Technology Analyst
54.7k
salaries
| ₹4.8 L/yr - ₹10 L/yr |
Senior Systems Engineer
53.8k
salaries
| ₹2.5 L/yr - ₹6.3 L/yr |
Technical Lead
35.1k
salaries
| ₹9.4 L/yr - ₹16.4 L/yr |
System Engineer
32.5k
salaries
| ₹2.4 L/yr - ₹5.5 L/yr |
Senior Associate Consultant
31.2k
salaries
| ₹8.2 L/yr - ₹15 L/yr |
TCS
Wipro
Cognizant
Accenture