i
Infogain
Work with us
Filter interviews by
A programme to check if a given string is a palindrome.
Create a function that takes a string as input.
Convert the string to lowercase and remove any non-alphanumeric characters.
Reverse the string and compare it to the original string.
If they are the same, return true. Otherwise, return false.
Yes, protected members are inherited in subclasses in hierarchy.
Protected members are accessible within the class and its subclasses.
They are not accessible outside the class hierarchy.
Subclasses can access protected members of their parent class.
Example: class A has a protected member x, class B extends A can access x.
Example: class C extends B can also access x.
super and this are used in object-oriented programming to refer to the parent class and current instance respectively.
super is used to call a method or constructor from the parent class
this is used to refer to the current instance of the class
super() must be the first statement in a constructor
this() can be used to call another constructor in the same class
The super class of Exception is Throwable.
Throwable is the root class of all exceptions in Java.
It has two direct subclasses: Exception and Error.
Exceptions are used for recoverable errors while Errors are used for unrecoverable errors.
All exceptions and errors inherit from Throwable.
Throwable provides methods like getMessage() and printStackTrace() to handle exceptions.
Checked and Unchecked Exceptions are types of exceptions in Java. Checked exceptions are checked at compile-time while unchecked exceptions are not.
Checked exceptions are those which are checked at compile-time and must be handled by the programmer using try-catch or throws keyword.
Examples of checked exceptions include IOException, SQLException, ClassNotFoundException.
Unchecked exceptions are those which are not ...
Yes, we can use super and this in a single constructor.
Using 'super' in a constructor calls the parent class constructor.
Using 'this' in a constructor calls another constructor in the same class.
We can use both 'super' and 'this' in the same constructor to call both parent and same class constructors.
Example: public MyClass(int x) { this(x, 0); super(); }
Data structures are essential for efficient storage and retrieval of data.
Data structures allow for faster access and manipulation of data.
They help in organizing and managing large amounts of data.
Examples include arrays, linked lists, trees, and graphs.
Without data structures, algorithms would be less efficient and more complex.
Data structures are used in various fields such as computer science, finance, and eng...
Deadlock is a situation where two or more processes are unable to proceed because they are waiting for each other to release resources.
Deadlock occurs when two or more processes are blocked and unable to proceed.
It happens when each process is holding a resource and waiting for another resource to be released.
There are four necessary conditions for deadlock: mutual exclusion, hold and wait, no preemption, and circ...
I come from a close-knit family that values education and support, fostering my passion for technology and problem-solving.
My parents are both educators, which instilled a love for learning in me from a young age.
I have a younger sister who is currently studying computer science, and we often collaborate on coding projects.
Family gatherings are filled with discussions about technology and innovation, encouraging me to ...
I hold several certifications that enhance my skills in software development and demonstrate my commitment to continuous learning.
Certified Java Developer: This certification validates my proficiency in Java programming, including object-oriented concepts and design patterns.
AWS Certified Solutions Architect: It showcases my ability to design and deploy scalable systems on AWS, which is crucial for cloud-based applicat...
Infogain offers a dynamic and innovative work environment with opportunities for growth and learning.
Infogain has a strong focus on employee development and provides ample opportunities for learning and growth.
The company values innovation and encourages employees to think outside the box.
Infogain has a diverse range of clients and projects, providing exposure to a variety of industries and technologies.
The company has...
Data structures are essential for efficient storage and retrieval of data.
Data structures allow for faster access and manipulation of data.
They help in organizing and managing large amounts of data.
Examples include arrays, linked lists, trees, and graphs.
Without data structures, algorithms would be less efficient and more complex.
Data structures are used in various fields such as computer science, finance, and engineer...
A programme to check if a given string is a palindrome.
Create a function that takes a string as input.
Convert the string to lowercase and remove any non-alphanumeric characters.
Reverse the string and compare it to the original string.
If they are the same, return true. Otherwise, return false.
The super class of Exception is Throwable.
Throwable is the root class of all exceptions in Java.
It has two direct subclasses: Exception and Error.
Exceptions are used for recoverable errors while Errors are used for unrecoverable errors.
All exceptions and errors inherit from Throwable.
Throwable provides methods like getMessage() and printStackTrace() to handle exceptions.
Checked and Unchecked Exceptions are types of exceptions in Java. Checked exceptions are checked at compile-time while unchecked exceptions are not.
Checked exceptions are those which are checked at compile-time and must be handled by the programmer using try-catch or throws keyword.
Examples of checked exceptions include IOException, SQLException, ClassNotFoundException.
Unchecked exceptions are those which are not check...
super and this are used in object-oriented programming to refer to the parent class and current instance respectively.
super is used to call a method or constructor from the parent class
this is used to refer to the current instance of the class
super() must be the first statement in a constructor
this() can be used to call another constructor in the same class
Yes, we can use super and this in a single constructor.
Using 'super' in a constructor calls the parent class constructor.
Using 'this' in a constructor calls another constructor in the same class.
We can use both 'super' and 'this' in the same constructor to call both parent and same class constructors.
Example: public MyClass(int x) { this(x, 0); super(); }
Yes, protected members are inherited in subclasses in hierarchy.
Protected members are accessible within the class and its subclasses.
They are not accessible outside the class hierarchy.
Subclasses can access protected members of their parent class.
Example: class A has a protected member x, class B extends A can access x.
Example: class C extends B can also access x.
Deadlock is a situation where two or more processes are unable to proceed because they are waiting for each other to release resources.
Deadlock occurs when two or more processes are blocked and unable to proceed.
It happens when each process is holding a resource and waiting for another resource to be released.
There are four necessary conditions for deadlock: mutual exclusion, hold and wait, no preemption, and circular ...
What people are saying about Infogain
Mine sweeper logic for a box click
To delete an element from a linked list, update the pointers of the previous node to skip the node to be deleted.
Traverse the linked list to find the node to be deleted
Update the 'next' pointer of the previous node to skip the node to be deleted
Free the memory allocated to the node to be deleted
I expect a competitive salary that reflects my skills, experience, and the industry standards for a Senior Software Engineer.
Research industry standards: For example, Glassdoor or Payscale can provide insights into average salaries for similar roles.
Consider my experience: With over 5 years in software development and expertise in multiple programming languages, I bring significant value.
Location matters: Salaries can ...
Remove duplicate objects from an array of multiple objects.
Create a new array to store unique objects
Loop through the original array and check if the object already exists in the new array
If not, add it to the new array
Return the new array
Maintain state by using a global variable or a state management system.
Use a global variable to store the state and access it whenever needed.
Use a state management system like Redux or MobX to manage the state.
Avoid using local variables or closures to store state as they will be lost when the code is repeated.
Consider using object-oriented programming principles to encapsulate state within objects.
Use functional prog...
I applied via LinkedIn and was interviewed in Jul 2020. There was 1 interview round.
posted on 26 Feb 2021
I applied via Company Website and was interviewed before Feb 2020. There were 4 interview rounds.
Handled high pressure from client by prioritizing tasks and communicating effectively.
Identified critical issues and addressed them first
Communicated regularly with the client to provide updates and manage expectations
Collaborated with team members to delegate tasks and ensure timely delivery
Maintained a calm and professional demeanor to avoid escalating the situation
Release management is the process of planning, scheduling, coordinating, and deploying software releases.
It involves identifying the scope of the release and the features to be included
Creating a release plan and schedule
Coordinating with different teams involved in the release process
Testing the release to ensure it meets quality standards
Deploying the release to production
Monitoring the release to ensure it is stable...
posted on 2 Jun 2022
I appeared for an interview before Jun 2021.
Had DSA and aptitude questions
posted on 11 Apr 2021
I'm a passionate software engineer with a strong background in full-stack development and a love for solving complex problems.
Experience in developing web applications using React and Node.js.
Worked on a team project that improved application performance by 30%.
Strong understanding of algorithms and data structures, demonstrated in coding competitions.
Enjoy collaborating with cross-functional teams to deliver high-qual...
posted on 7 May 2022
I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.
Basic aptitude knowledge
Strong in java
I applied via Naukri.com and was interviewed before Sep 2019. There were 6 interview rounds.
posted on 15 Sep 2021
I appeared for an interview before Sep 2020.
Round duration - 90 minutes
Round difficulty - Easy
It happens in very friendly manner.
Given an 'M x N' matrix, print all the possible paths from the top-left corner to the bottom-right corner. You can only move either right (from (i,j) to (i,j+1)) or dow...
Print all possible paths from top-left to bottom-right in a matrix by moving only right or down.
Use backtracking to explore all possible paths from top-left to bottom-right in the matrix.
At each cell, recursively explore moving right and down until reaching the bottom-right corner.
Keep track of the current path and add it to the result when reaching the destination.
Yes, I can create 2 tables in SQL and perform operations like INSERT, SELECT, UPDATE, and DELETE.
Create Table 1: CREATE TABLE employees (id INT, name VARCHAR(50), salary DECIMAL(10,2));
Create Table 2: CREATE TABLE departments (dept_id INT, dept_name VARCHAR(50));
Insert Data: INSERT INTO employees VALUES (1, 'John Doe', 50000);
Select Data: SELECT * FROM employees WHERE salary > 40000;
Update Data: UPDATE employees SET...
Round duration - 90 minutes
Round difficulty - Medium
No problem occur very friendly environment.
Round duration - 90 minutes
Round difficulty - Hard
You need to determine all possible paths for a rat starting at position (0, 0) in a square maze to reach its destination at (N-1, N-1). The maze is represented as an N*N ma...
Find all possible paths for a rat in a maze from source to destination.
Use backtracking to explore all possible paths in the maze.
Keep track of visited cells to avoid revisiting them.
Explore all possible directions (up, down, left, right) from each cell.
Add the current direction to the path and recursively explore further.
If the destination is reached, add the path to the list of valid paths.
Tip 1 : Competitive programming plays a major role when you are appearing for coding rounds as a fresher. In the coding rounds, you won't get direct problems copied from Geeksforgeeks or Leetcode. You would be required to use your logical thinking to go ahead in the process. This is where competitive programming helps.
Tip 2 : Coding rounds are all about Coding + Timing. Most people fail to excel due to the pressure of a timer ticking on your head. So, instead of just solving problems, try to participate in timed contests. This will help you be used to the pressure of the timer.
Tip 3 : Many big companies like Microsoft, Amazon, and even Google expect you to be good at standard problems. So, once you are done with coding round by your logical skills and competitive programming, you must be well versed with some standard problems in order to excel.
Application resume tips for other job seekersTip 1 : Make it short, crisp, and simple. It is always good to have a 1 pager resume.
Tip 2 : Resume must comprise of the following: Educational Qualifications, Technical skills, Projects, Work experience (if any), Achievements. Other than this, you may include some extra co-curricular achievements.
Software Engineer
1.3k
salaries
| ₹2.8 L/yr - ₹11.2 L/yr |
Development Consultant
832
salaries
| ₹5.5 L/yr - ₹22 L/yr |
Technical Lead
600
salaries
| ₹11.6 L/yr - ₹37 L/yr |
Consultant
501
salaries
| ₹4.9 L/yr - ₹20 L/yr |
Senior Consultant
355
salaries
| ₹7.4 L/yr - ₹28 L/yr |
DXC Technology
Sutherland Global Services
Optum Global Solutions
Virtusa Consulting Services