Premium Employer

i

This company page is being actively managed by Infinite Computer Solutions Team. If you also belong to the team, you can get access from here

Filter interviews by

Infinite Computer Solutions Interview Questions and Answers

Updated 26 Jun 2025
Popular Designations

83 Interview questions

A Software Engineer was asked 2mo ago
Q. How do you remove duplicates in Java?
Ans. 

Java provides various methods to remove duplicates from an array of strings, ensuring unique values in the collection.

  • Using HashSet: Convert the array to a HashSet, which automatically removes duplicates. Example: `Set<String> uniqueSet = new HashSet<>(Arrays.asList(array));`

  • Using Streams: Java 8+ allows using streams to filter duplicates. Example: `String[] uniqueArray = Arrays.stream(array).distinct(...

View all Software Engineer interview questions
A Major Incident Manager was asked 3mo ago
Q. What are the day-to-day activities of a Major Incident Manager?
Ans. 

A Major Incident Manager oversees incident response, ensuring effective communication and resolution during critical service disruptions.

  • Monitor incident management tools for alerts and escalations.

  • Coordinate with cross-functional teams during major incidents, e.g., IT, operations, and support.

  • Facilitate incident review meetings to analyze root causes and improve processes.

  • Communicate updates to stakeholders and m...

View all Major Incident Manager interview questions
An Associate Software Engineer was asked 4mo ago
Q. Explain OOPS concepts with real-time examples.
Ans. 

OOPs concepts like encapsulation, inheritance, polymorphism, and abstraction are fundamental in software engineering.

  • Encapsulation: Bundling data and methods that operate on the data within one unit, e.g., a class representing a bank account.

  • Inheritance: A mechanism where a new class derives properties from an existing class, e.g., a 'Dog' class inheriting from an 'Animal' class.

  • Polymorphism: The ability to presen...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked 4mo ago
Q. What is the query for fetching the top 5 salaries from the employee table?
Ans. 

Use SQL to retrieve the top 5 highest salaries from the employee table.

  • Use the SQL SELECT statement to specify the columns you want to retrieve.

  • Use the ORDER BY clause to sort the salaries in descending order.

  • Limit the results to the top 5 using the LIMIT clause.

  • Example query: SELECT salary FROM employee ORDER BY salary DESC LIMIT 5;

View all Associate Software Engineer interview questions
An Executive was asked 4mo ago
Q. What do you know about the technical process?
Ans. 

Technical process involves a series of steps or actions to achieve a specific goal or outcome.

  • Technical process typically involves planning, designing, implementing, and evaluating.

  • It often requires specialized knowledge, skills, and tools.

  • Examples include software development, manufacturing processes, and engineering design.

View all Executive interview questions
An Executive was asked 4mo ago
Q. What is DNS and how does it work?
Ans. 

DNS stands for Domain Name System, it translates domain names to IP addresses to locate resources on the internet.

  • DNS is like a phone book for the internet, translating human-readable domain names (like google.com) to IP addresses (like 172.217.3.206).

  • DNS works by sending queries to a series of servers starting from the local DNS resolver, then to authoritative DNS servers for the specific domain.

  • DNS uses a hierar...

View all Executive interview questions
A Software Developer was asked 4mo ago
Q. What is testing, and what do you know about it?
Ans. 

Testing is the process of evaluating a software application to ensure it meets specified requirements and functions correctly.

  • Testing involves executing the software with the intent of finding bugs or errors.

  • Types of testing include unit testing, integration testing, system testing, and acceptance testing.

  • Testing can be manual or automated, with automated testing using tools like Selenium or JUnit.

  • Regression testi...

View all Software Developer interview questions
Are these interview questions helpful?
A Software Engineer was asked 4mo ago
Q. Write code to filter records using Java 8.
Ans. 

Using Java 8 stream to filter records in an array of strings

  • Use stream() method to convert the array to a stream

  • Use filter() method to specify the filtering condition

  • Use collect() method to collect the filtered elements back into an array

View all Software Engineer interview questions
A Software Engineer was asked 4mo ago
Q. How does Spring Security work?
Ans. 

Spring Security provides comprehensive security services for Java applications, including authentication and authorization.

  • Authentication: Verifies user identity using various methods (e.g., username/password, OAuth).

  • Authorization: Determines user permissions to access resources (e.g., roles like ADMIN or USER).

  • Filters: Uses a chain of filters to intercept requests and apply security measures.

  • Configuration: Can be...

View all Software Engineer interview questions
A Senior Software Engineer was asked 5mo ago
Q. Suppose we have a list containing 'abc1', 'abcd', '1231', null, and an empty string. Write Java 8 code to find only the numbers.
Ans. 

Using Java 8 stream to filter out numbers from a list of strings.

  • Use Java 8 stream to filter out numbers using regex.

  • Use filter() method along with regex pattern to check for numbers.

  • Collect the filtered numbers into a new list.

View all Senior Software Engineer interview questions

Infinite Computer Solutions Interview Experiences

156 interviews found

Network Lead Interview Questions & Answers

user image Anonymous

posted on 6 Nov 2019

Interview Questionnaire 

3 Questions

  • Q1. Question would be asked purely technical. My interview was done 2 technical round. Second round more deeper. Both round be taken by client. Last round with HR final discussion.
  • Q2. As I did the interview for network integration engineer. Interviewer ask most of the question on real scenario based.
  • Q3. Question on BGP, OSPF, ISIS, MPLS and mobility.

Software Developer Interview Questions & Answers

user image Vysishtya Dandu

posted on 24 Feb 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Aug 2024.

Round 1 - Group Discussion 

I just need to speak fluently on a specific topic.

Round 2 - Aptitude Test 

The online assessment consists of basic aptitude questions, three coding questions, and a section on pseudocode.

Round 3 - Technical 

(4 Questions)

  • Q1. What are the differences and similarities between Java and Python, and which one is considered the best?
  • Ans. 

    Java and Python are both popular programming languages, with Java being statically typed and Python being dynamically typed.

    • Java is statically typed, while Python is dynamically typed

    • Java requires explicit declaration of data types, while Python does not

    • Java is compiled into bytecode which runs on the Java Virtual Machine, while Python is interpreted at runtime

    • Java is commonly used for enterprise applications and Andro...

  • Answered by AI
  • Q2. Can you provide details about your project?
  • Ans. 

    Developed a web application for online shopping with user authentication and payment gateway integration.

    • Created user registration and login functionality using JWT tokens

    • Implemented secure payment processing using Stripe API

    • Designed responsive UI/UX for seamless shopping experience

  • Answered by AI
  • Q3. What is testing, and what do you know about it?
  • Ans. 

    Testing is the process of evaluating a software application to ensure it meets specified requirements and functions correctly.

    • Testing involves executing the software with the intent of finding bugs or errors.

    • Types of testing include unit testing, integration testing, system testing, and acceptance testing.

    • Testing can be manual or automated, with automated testing using tools like Selenium or JUnit.

    • Regression testing en...

  • Answered by AI
  • Q4. Write SQL joins queries
Round 4 - HR 

(3 Questions)

  • Q1. What are the reasons you have not been placed in any company until now?
  • Ans. 

    Lack of relevant experience, tough competition, and limited job opportunities in desired field.

    • Limited job opportunities in desired field

    • Tough competition from experienced candidates

    • Lack of relevant experience for the positions applied for

  • Answered by AI
  • Q2. Can you tell me about yourself?
  • Q3. Can you describe a cooking disaster you experienced?
  • Ans. 

    I once tried to bake a cake but accidentally used salt instead of sugar.

    • Confused salt with sugar while baking

    • Realized mistake after tasting batter

    • Had to start over with new ingredients

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 5 interview rounds.

Round 1 - JAM 

(1 Question)

  • Q1. The 1st round was JAM - Just a minute. They will give you a topic on the spot and we have to talk about this topic for 1-2min. Topics: The perfect prank you pulled, The best trip, Your pet's inner thoughts...
Round 2 - Group Discussion 

The 2nd round is GD: The GD was conducted properly for other batches. But for our batch the HR just collected everyone's resume and asked qns from our resume.
(Note: This is not an elimination round)

Round 3 - Aptitude Test 

The 3rd round was Aptitude and Technical mcq test: 10 qns - DBMS, 20 - Quants, 20 - Java mcq
(Note: This round has negative markings)

Round 4 - Technical 

(3 Questions)

  • Q1. Resume based and about projects
  • Q2. Basic sql queries Eg: SQL query to find the no of students in a department
  • Q3. Reverse a string - Python
  • Ans. 

    Reverse a string in Python using slicing

    • Use string slicing with a step of -1 to reverse the string

    • Example: 'hello'[::-1] will return 'olleh'

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. The last round was general hr: Since there were two many candidates the process took too much time. There was no questions asked during the hr round, who ever has agreed to the 2yrs bond were recruited

Interview Preparation Tips

Interview preparation tips for other job seekers - NOTE:
1. The 2yrs bond agreement.
2. No stipend will be provided for 2025 passouts (you have to work for the first 6months without stipend)
3. Based on business demand you may get QA role.

This is the worst interview experience I ever had and I would never recommend this company to anyone. I declined the offer.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Rubh on rails related questions
Round 2 - Technical 

(1 Question)

  • Q1. Ruby on rails related questions
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Na..........................
  • Q2. N...........................................
Round 2 - HR 

(2 Questions)

  • Q1. NA....................
  • Q2. NA.............................................

Interview Preparation Tips

Interview preparation tips for other job seekers - Taken 2 round from Infinite end and 1 from client end and shared offer letter and sudden after 2 days HR replied that offer revoked ...strength after sharing offer letter they are revoking offer without any reason. think twice before interview in this company and don't trust on HR team.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Aug 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Test NG Annotations
  • Q2. TestNG parallel and cross browser testing
  • Q3. Code to swap two strings
  • Ans. 

    Code to swap two strings in an array

    • Create a temporary variable to store one of the strings

    • Assign the value of the first string to the second string

    • Assign the value of the temporary variable to the first string

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain about last project
  • Ans. 

    Led a team in implementing automated testing for a web application

    • Implemented Selenium WebDriver for automated testing

    • Created test scripts in Java to validate functionality

    • Utilized Jenkins for continuous integration

    • Collaborated with developers to identify and resolve bugs

  • Answered by AI
  • Q2. Eplain POM diff btwn POM.xml and Testng.XML file
  • Ans. 

    POM.xml manages project dependencies, while TestNG.xml configures test execution parameters.

    • POM.xml (Project Object Model) is used in Maven to manage project dependencies and build configurations.

    • Example: POM.xml specifies libraries like Selenium or JUnit that the project needs to run.

    • TestNG.xml is used to configure and organize test execution in TestNG framework.

    • Example: TestNG.xml defines test suites, test groups, an...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - interviewer who took my second round was technical manager and was lill off on his tone thogh questions were not that difficlt

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Just-a-minute 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a recent graduate with a degree in Computer Science, passionate about coding and eager to learn and grow in the software engineering field.

    • Recent graduate with a degree in Computer Science

    • Passionate about coding and software development

    • Eager to learn and grow in the software engineering field

  • Answered by AI
  • Q2. Small talk (mostly topics from google or you can talk about anything of your choice)
Round 2 - Group Discussion 

I did not have GD, the company official shortlisted us based on our resume, which again was not as scrutinized as you'd expect. The shortlisted 17-18 out of 20 candidates to the next round. Some slots did have GD tho.

Round 3 - Aptitude Test 

Around 125 students from my college and many more from previous batches and other colleges had to take up the aptitude test. It consisted of 50 questions. The split up is 20 aptitude, 20 java and 10 DBMS questions. All questions carry negative marks. Aptitude section mainly consisted questions from mensuration.

Round 4 - One-on-one 

(2 Questions)

  • Q1. Fully resume based questions were asked.
  • Q2. There were three panels, in the other panels DSA questions were asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Passed out batches were "onboarded" while current final years were told that they were "shortlisted" and have to sit for the HR round. The day 1 process went on till 8pm. Other than that, overall the interview process was decent, the results were intimated on time.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. C# features .Net Features
  • Q2. Azure APIM Docker container
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Oct 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. TestNG: explain different annotations, parallel test,
  • Ans. 

    testNG annotations are used to control the flow of test execution and parallel test execution allows running tests concurrently.

    • testNG annotations include @Test, @BeforeSuite, @AfterSuite, @BeforeTest, @AfterTest, @BeforeClass, @AfterClass, @BeforeMethod, @AfterMethod

    • Annotations help in setting up preconditions, postconditions, grouping tests, prioritizing tests, and enabling/disabling tests

    • Parallel test execution in t...

  • Answered by AI
  • Q2. Selenium: actions class, xpath writing, windowhandles.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for testNG, selenium well and java programming.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was of 1 hour 30 mins.

Round 2 - Group Discussion 

Tell me about music.

Round 3 - Technical 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. What is class in java.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain your project in details
  • Q2. What is your current roles and responsibilites
  • Ans. 

    As an SDET Automation Test Engineer, I design, develop, and execute automated tests to ensure software quality and performance.

    • Test Automation Development: I create automated test scripts using tools like Selenium and TestNG to validate application functionality.

    • Test Strategy Implementation: I develop and implement test strategies that align with project requirements, ensuring comprehensive test coverage.

    • Continuous Int...

  • Answered by AI

What people are saying about Infinite Computer Solutions

View All
an associate software engineer
2w
Does company certification vouchers create hurdles?
Hi Friends, I just need your help. actually I am preparing for the 'Databricks certified Data Engineer associate' certification. Certification costs around 20K and I got a 50% voucher through company email. So will there be any issues if I use vouchers and put the resignation?
Got a question about Infinite Computer Solutions?
Ask anonymously on communities.

Infinite Computer Solutions Interview FAQs

How many rounds are there in Infinite Computer Solutions interview?
Infinite Computer Solutions interview process usually has 2-3 rounds. The most common rounds in the Infinite Computer Solutions interview process are Technical, HR and Resume Shortlist.
How to prepare for Infinite Computer Solutions interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Infinite Computer Solutions. The most common topics and skills that interviewers at Infinite Computer Solutions expect are SQL, Troubleshooting, Javascript, Python and Healthcare.
What are the top questions asked in Infinite Computer Solutions interview?

Some of the top questions asked at the Infinite Computer Solutions interview -

  1. Which library do you use to automate tasks in a...read more
  2. in which layer the Ip address is working on if it working on L3 so how can we a...read more
  3. what is the OSI model and describe about the each and every layer of that layer...read more
What are the most common questions asked in Infinite Computer Solutions HR round?

The most common HR questions asked in Infinite Computer Solutions interview are -

  1. Why should we hire y...read more
  2. Tell me about yourse...read more
How long is the Infinite Computer Solutions interview process?

The duration of Infinite Computer Solutions interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 165 interview experiences

Difficulty level

Easy 27%
Moderate 71%
Hard 3%

Duration

Less than 2 weeks 74%
2-4 weeks 22%
4-6 weeks 4%
View more
Join Infinite Computer Solutions Digitally Engineering Tomorrow, Today

Interview Questions from Similar Companies

DXC Technology Interview Questions
3.7
 • 839 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
NTT Data Interview Questions
3.8
 • 660 Interviews
Publicis Sapient Interview Questions
3.5
 • 645 Interviews
GlobalLogic Interview Questions
3.6
 • 628 Interviews
EPAM Systems Interview Questions
3.7
 • 569 Interviews
UST Interview Questions
3.8
 • 544 Interviews
View all

Infinite Computer Solutions Reviews and Ratings

based on 1.7k reviews

3.4/5

Rating in categories

3.0

Skill development

3.3

Work-life balance

3.2

Salary

3.0

Job security

3.1

Company culture

2.8

Promotions

3.1

Work satisfaction

Explore 1.7k Reviews and Ratings
Test Lead

Pune

5-14 Yrs

Not Disclosed

Senior System Engineer

Noida

5-10 Yrs

₹ 7.5-11.2 LPA

Senior Software Test Engineer

Bangalore / Bengaluru

4-7 Yrs

₹ 5.6-23 LPA

Explore more jobs
Software Engineer
1.6k salaries
unlock blur

₹3 L/yr - ₹12.5 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹6.9 L/yr - ₹24 L/yr

Technical Lead
972 salaries
unlock blur

₹14.7 L/yr - ₹27 L/yr

Associate Software Engineer
787 salaries
unlock blur

₹3 L/yr - ₹8.5 L/yr

Softwaretest Engineer
626 salaries
unlock blur

₹3 L/yr - ₹11.2 L/yr

Explore more salaries
Compare Infinite Computer Solutions with

DXC Technology

3.7
Compare

Sutherland Global Services

3.5
Compare

Optum Global Solutions

4.0
Compare

Virtusa Consulting Services

3.7
Compare
write
Share an Interview