i
Infosys
Work with us
Filter interviews by
Fundamental coding concepts include syntax, data structures, algorithms, and debugging, essential for effective programming.
Syntax: The set of rules that defines the combinations of symbols that are considered to be correctly structured programs. Example: In Python, indentation is crucial.
Data Structures: Ways to organize and store data for efficient access and modification. Example: Arrays, linked lists, and hash...
Java frameworks streamline development with reusable components, each serving different purposes and architectures.
Spring: A comprehensive framework for enterprise applications, focusing on dependency injection and aspect-oriented programming.
Hibernate: An ORM framework that simplifies database interactions by mapping Java objects to database tables.
JavaServer Faces (JSF): A component-based framework for building ...
Object-Oriented Programming (OOP) is a programming paradigm based on the concept of objects, which can contain data and code.
Encapsulation: OOP allows bundling of data and methods that operate on the data within a single unit or class, promoting data hiding. Example: A class 'Car' with attributes like 'speed' and methods like 'accelerate()'.
Inheritance: OOP enables a new class to inherit properties and behaviors f...
Polymorphism allows objects to be treated as instances of their parent class, enabling method overriding and interface implementation.
Method Overriding: Subclasses can provide specific implementations of methods defined in their parent class, e.g., a 'draw' method in 'Shape' class overridden by 'Circle' and 'Square'.
Method Overloading: Multiple methods can have the same name but different parameters, e.g., a 'prin...
OOP concepts include encapsulation, inheritance, polymorphism, and abstraction, forming the foundation of object-oriented programming.
Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).
Inheritance: Mechanism where a new class derives properties and behavior from an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).
Polymorphism: Ability to present ...
Java encapsulation is a fundamental OOP concept that restricts direct access to class members, promoting data hiding.
Encapsulation is achieved using access modifiers: private, protected, and public.
Private variables can only be accessed within the same class.
Public methods allow controlled access to private variables.
Example: A class 'Person' with private 'age' variable and public 'getAge()' method.
Encapsulation e...
The Software Development Lifecycle (SDLC) is a structured process for developing software applications through various stages.
1. Requirements Gathering: Identify user needs and system requirements.
2. Design: Create architecture and design specifications for the software.
3. Implementation: Write and compile the code based on design documents.
4. Testing: Validate the software through various testing methods (e.g., u...
A pointer is a variable that stores the memory address of another variable, enabling direct memory access and manipulation.
Pointers are used in languages like C and C++ to manage memory efficiently.
Example: int *ptr; // ptr is a pointer to an integer.
Pointers can be dereferenced to access the value at the memory address they point to.
Example: *ptr = 10; // assigns the value 10 to the integer pointed by ptr.
Pointer...
My primary skill is systems integration, ensuring seamless communication between hardware and software components.
Expert in designing and implementing system architectures, e.g., integrating cloud services with on-premises solutions.
Proficient in troubleshooting and optimizing system performance, such as reducing latency in data processing.
Experience with automation tools like Ansible and Puppet to streamline depl...
Overriding is a concept in object-oriented programming where a subclass provides a specific implementation of a method that is already provided by its parent class.
Occurs in inheritance when a subclass provides a specific implementation of a method from its parent class
The method in the subclass must have the same name, return type, and parameters as the method in the parent class
Allows for polymorphism and dynami...
I applied via Campus Placement and was interviewed before Mar 2022. There were 3 interview rounds.
Aptitude is easy. So nothing to be scared of.
Java is a high-level, object-oriented language while C++ is a low-level, object-oriented language.
Java is platform-independent while C++ is platform-dependent.
Java has automatic garbage collection while C++ requires manual memory management.
Java has a simpler syntax than C++.
Java has a larger standard library than C++.
C++ allows for direct memory manipulation while Java does not.
Java is used for web development, mobile...
Oops concepts in Java are the fundamental principles of object-oriented programming.
Encapsulation - hiding implementation details and exposing only necessary information
Inheritance - creating new classes from existing ones
Polymorphism - ability of objects to take on multiple forms
Abstraction - focusing on essential features and ignoring non-essential ones
Examples: class, object, inheritance, polymorphism, encapsulation
Developed a smart irrigation system using IoT technology.
Designed and implemented a sensor network to monitor soil moisture levels.
Developed a web application to control the irrigation system remotely.
Used Raspberry Pi and Arduino boards to collect and transmit data.
Conducted field tests to validate the system's effectiveness.
Received positive feedback from local farmers and agricultural experts.
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.
There were a total of seven sections: verbal ability, logical reasoning, arithmetic problems, verbal reasoning, puzzles, pseudocodes, and essay writing, with each section having its own cutoff scores.
Use SQL query with MAX function to retrieve person with highest salary.
Use SELECT statement to retrieve data
Use MAX function to find the highest salary
Use WHERE clause to filter out the person with highest salary
I have worked on projects involving network infrastructure upgrades, cloud migration, and cybersecurity enhancements.
Upgraded network infrastructure to improve performance and reliability
Migrated on-premise systems to the cloud for increased scalability and cost savings
Implemented cybersecurity measures such as firewalls and intrusion detection systems
Developed disaster recovery plans to ensure business continuity in c...
Merge 2 tables using SQL query
Use the JOIN keyword to combine rows from both tables based on a related column
Specify the columns to be selected from each table
Use different types of joins like INNER JOIN, LEFT JOIN, RIGHT JOIN, or FULL JOIN based on the requirement
I completed a system engineering internship at XYZ Company, where I worked on designing and implementing network infrastructure.
Worked on configuring routers and switches
Assisted in troubleshooting network issues
Collaborated with team members on project planning and execution
I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.
Its very easy
Basic maths questions learned up to 10
Basic Apptitude questions
I appeared for an interview in May 2025, where I was asked the following questions.
Fundamental coding concepts include syntax, data structures, algorithms, and debugging, essential for effective programming.
Syntax: The set of rules that defines the combinations of symbols that are considered to be correctly structured programs. Example: In Python, indentation is crucial.
Data Structures: Ways to organize and store data for efficient access and modification. Example: Arrays, linked lists, and hash tabl...
OOP is a programming paradigm based on objects, encapsulating data and behavior for modular and reusable code.
Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).
Inheritance: Mechanism to create a new class using properties and methods of an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).
Polymorphism: Ability to present the same interface for differe...
I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.
Duration was 1.5 hrs. Questions were asked on topics like aptitude, reasoning , puzzle solving and verbal ability. Also a topic was given on which candidates were expected to write an essay. Overall the difficulty level was easy to medium.
Yes, I have certifications in AWS and Azure cloud technologies.
Certified AWS Solutions Architect
Microsoft Certified: Azure Administrator Associate
Completed training courses on Google Cloud Platform
Encapsulation is the concept of bundling data and methods that operate on the data into a single unit, known as a class.
Encapsulation helps in hiding the internal state of an object and restricting access to it.
It allows for data hiding, which prevents outside code from directly accessing an object's internal state.
Access to the data is typically controlled through public methods (getters and setters) defined in the cl...
I appeared for an interview in Feb 2025.
Sorting algorithms arrange data in a specific order, crucial for efficient data processing and retrieval.
Types of sorting algorithms include: Bubble Sort, Quick Sort, Merge Sort, and Heap Sort.
Bubble Sort is simple but inefficient for large datasets; it repeatedly steps through the list.
Quick Sort is efficient for large datasets, using a divide-and-conquer approach to sort elements.
Merge Sort divides the array into hal...
The Software Development Lifecycle (SDLC) is a structured process for developing software applications through various stages.
1. Requirements Gathering: Identify user needs and system requirements.
2. Design: Create architecture and design specifications for the software.
3. Implementation: Write and compile the code based on design documents.
4. Testing: Validate the software through various testing methods (e.g., unit t...
I appeared for an interview in Feb 2025.
Questions regarding aptitude, pseudocode, and communication skills.
I was the team leader for our college project on developing a smart home automation system.
Led a team of 5 members in designing and implementing the system
Responsible for project planning, delegating tasks, and ensuring deadlines were met
Implemented features such as voice-controlled lights, temperature control, and security cameras
Presented the project at a college exhibition and received positive feedback
Collaborated ...
It is very easy, questions on all topics are covered.
Abstraction is hiding unnecessary details while encapsulation is bundling data and methods together.
Abstraction focuses on showing only essential features of an object while hiding unnecessary details.
Encapsulation involves bundling the data (attributes) and methods (functions) that operate on the data into a single unit.
Abstraction allows for easier understanding and management of complex systems.
Encapsulation helps i...
SQL query to update a record in a database table
Use the UPDATE statement followed by the table name
Set the column(s) to be updated using SET keyword
Specify the new values for the column(s) to be updated
Use WHERE clause to specify the condition for which record to update
Yes, I am willing to relocate for the right opportunity.
I am open to relocating for the right job opportunity
I have relocated for previous positions and am comfortable with the process
I understand the importance of being flexible and adaptable in the field of engineering
Infosys is a global leader in technology services and consulting, known for its innovative solutions and commitment to excellence.
Infosys has a strong reputation for delivering high-quality technology solutions to clients worldwide.
The company offers a wide range of opportunities for professional growth and development.
Infosys has a culture of innovation and collaboration, which aligns with my own values and career goa...
I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.
General Aptitude , Grammar MCQ and Essay Writing
I applied via Campus Placement
................................................................................
Questions about projects completed in previous roles.
Asked to describe specific projects worked on
Inquired about the technologies used in the projects
Asked about the challenges faced and how they were overcome
Asked about the impact of the projects on the organization
Inquired about the team collaboration and communication during the projects
The project utilized a variety of technologies including cloud computing, virtualization, automation tools, and network protocols.
Cloud computing (e.g. AWS, Azure)
Virtualization (e.g. VMware, Hyper-V)
Automation tools (e.g. Ansible, Puppet)
Network protocols (e.g. TCP/IP, DNS)
Principles of software engineering are guidelines that help in the development of high-quality software.
Requirements gathering and analysis
Design
Implementation
Testing
Maintenance
Documentation
Quality assurance
Version control
Continuous integration
Agile development
What people are saying about Infosys
The duration of Infosys System Engineer interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 742 interview experiences
Difficulty level
Duration
based on 3.9k reviews
Rating in categories
Technology Analyst
55.8k
salaries
| ₹2.6 L/yr - ₹11.6 L/yr |
Senior Systems Engineer
53.5k
salaries
| ₹2.5 L/yr - ₹8.5 L/yr |
Technical Lead
35k
salaries
| ₹7.3 L/yr - ₹20 L/yr |
System Engineer
32.4k
salaries
| ₹2.4 L/yr - ₹5.3 L/yr |
Senior Associate Consultant
30.9k
salaries
| ₹6.3 L/yr - ₹17 L/yr |
TCS
Wipro
Cognizant
Accenture