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

Infinite Computer Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Infinite Computer Solutions Software Developer Interview Questions, Process, and Tips

Updated 24 Feb 2025

Top Infinite Computer Solutions Software Developer Interview Questions and Answers

  • Q1. What are the differences and similarities between Java and Python, and which one is considered the best?
  • Q2. Can you describe a cooking disaster you experienced?
  • Q3. What is testing, and what do you know about it?
View all 6 questions

Infinite Computer Solutions Software Developer Interview Experiences

3 interviews found

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 was interviewed 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?
  • Q2. Can you provide details about your project?
  • Q3. What is testing, and what do you know about it?
  • 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?
  • Q2. Can you tell me about yourself?
  • Q3. Can you describe a cooking disaster you experienced?
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

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

I was interviewed in May 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Design patterns? Solid principal? Oops concepts? Diff bw ref and out? Caching? Diff bw string and stringbuider Validation controls State management techniques Page life cycle and stages Grabage collector S...
  • Q2. Diff bw union and union all Diff bw sp and functions Diff primary key and forgion key Temp table
  • Ans. 

    Explanation of differences between union and union all, stored procedures and functions, primary key and foreign key, and temp tables.

    • Union combines and removes duplicates, while union all combines without removing duplicates.

    • Stored procedures are precompiled and can return multiple result sets, while functions are not precompiled and can only return a single value.

    • Primary key uniquely identifies a record, while foreig...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Second round manager round. That is also same like technical

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Given strings and asked to write down the first non-repeatable string
  • Q2. Palindrome program in java
  • Ans. 

    A palindrome program in Java checks if a given string reads the same forwards and backwards.

    • Create a function that takes a string input

    • Use a loop to compare characters from both ends of the string

    • Return true if the string is a palindrome, false otherwise

  • Answered by AI
  • Q3. Diamond problem in java
  • Ans. 

    Diamond problem in Java occurs when a class inherits from two classes that have a common ancestor, resulting in ambiguity.

    • Diamond problem arises in multiple inheritance scenarios in Java.

    • It occurs when a class inherits from two classes that have a common ancestor.

    • To resolve the diamond problem, Java does not support multiple inheritance through classes, but it can be achieved using interfaces.

    • Example: Class A and Class...

  • Answered by AI
  • Q4. Given a list of numbers and insisted to get the sum of numbers which gives 6
  • Ans. 

    Iterate through the list and find pairs of numbers that sum up to 6

    • Iterate through the list and check if the current number + any other number in the list equals 6

    • Store the pairs of numbers that sum up to 6 in a separate list

    • Return the list of pairs

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Java based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on your technical skills. Be good at writing pseudo code, Focus on java and oops concepts.

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding and aptitude coding and aptitude with technical questions

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about the oops concepts
  • Ans. 

    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

  • Answered by AI
  • Q2. Details about your project
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines.

    • Used HTML, CSS, and JavaScript for front-end development

    • Utilized Node.js and MongoDB for back-end development

    • Implemented user authentication and authorization features

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well basic concepts and resume questions are asked
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic questions on dotnet core
  • Q2. Basic questions on angular
Round 2 - Coding Test 

MCQ asked for css,js etx

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

I applied via Recruitment Consulltant

Round 1 - Technical 

(1 Question)

  • Q1. Ask for basic dot net questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic core java, reasoning,english

Round 2 - Coding Test 

Dsa question of arrays

Round 3 - Technical 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. Stacks and queues
  • Q3. Time complexity

Interview Preparation Tips

Topics to prepare for Nagarro Software Developer interview:
  • java
  • dsa
  • arrays
  • stacks
  • queue
  • dbms
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Quants, Reasoning and Verbal
Computer fundamental and pseudocode

Round 2 - Group Discussion 

15 mins with general topics

Round 3 - HR 

(2 Questions)

  • Q1. What do like in your college the most?
  • Ans. 

    I enjoyed the collaborative projects and hands-on learning experiences in my college.

    • Collaborating with classmates on coding projects

    • Hands-on experience with different programming languages

    • Engaging discussions in computer science classes

  • Answered by AI
  • Q2. Do you have any other offer?

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good communication skill ,that is enough
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Ticketing system design
  • Ans. 

    Ticketing system design involves creating a platform for users to submit, track, and resolve issues or requests.

    • Design a user-friendly interface for submitting tickets

    • Implement a system for assigning tickets to appropriate teams or individuals

    • Include features for tracking ticket status and communication with users

    • Consider scalability and performance of the system

    • Integrate with other tools or systems for seamless workfl

  • Answered by AI
  • Q2. Aws ec2 and jenkins

Skills evaluated in this interview

Infinite Computer Solutions Interview FAQs

How many rounds are there in Infinite Computer Solutions Software Developer interview?
Infinite Computer Solutions interview process usually has 3-4 rounds. The most common rounds in the Infinite Computer Solutions interview process are Technical, Group Discussion and Aptitude Test.
How to prepare for Infinite Computer Solutions Software Developer 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 Automation Testing, Cloud, Coding, Mulesoft Anypoint Platform and Networking.
What are the top questions asked in Infinite Computer Solutions Software Developer interview?

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

  1. What are the differences and similarities between Java and Python, and which on...read more
  2. Can you describe a cooking disaster you experienc...read more
  3. What is testing, and what do you know about ...read more

Tell us how to improve this page.

Infinite Computer Solutions Software Developer Interview Process

based on 4 interviews

Interview experience

3.8
  
Good
View more
Join Infinite Computer Solutions Digitally Engineering Tomorrow, Today
Infinite Computer Solutions Software Developer Salary
based on 175 salaries
₹3.8 L/yr - ₹15 L/yr
12% more than the average Software Developer Salary in India
View more details

Infinite Computer Solutions Software Developer Reviews and Ratings

based on 24 reviews

2.8/5

Rating in categories

2.9

Skill development

2.8

Work-life balance

2.9

Salary

3.0

Job security

2.8

Company culture

3.0

Promotions

2.9

Work satisfaction

Explore 24 Reviews and Ratings
Software Engineer
1.4k salaries
unlock blur

₹3 L/yr - ₹12.5 L/yr

Senior Software Engineer
1.3k salaries
unlock blur

₹6.5 L/yr - ₹22 L/yr

Technical Lead
813 salaries
unlock blur

₹10 L/yr - ₹34.3 L/yr

Associate Software Engineer
726 salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

Softwaretest Engineer
613 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Explore more salaries
Compare Infinite Computer Solutions with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview