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 Interview Questions, Process, and Tips

Updated 25 Mar 2025

Top Infinite Computer Solutions Interview Questions and Answers

View all 90 questions

Infinite Computer Solutions Interview Experiences

Popular Designations

149 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. How will you scale-up and scale-down Kubernetes pods?
  • Ans. 

    Scaling Kubernetes pods involves adjusting the number of replicas based on demand.

    • Use Kubernetes Horizontal Pod Autoscaler (HPA) to automatically adjust the number of replicas based on CPU or memory usage

    • Manually scale pods using kubectl commands like 'kubectl scale deployment --replicas='

    • Implement Cluster Autoscaler to automatically adjust the number of nodes in a cluster based on resource usage

Answered by AI
  • Q2. How variables are being passed in JAVA?
  • Ans. 

    Variables in JAVA are passed by value, meaning a copy of the variable's value is passed to a method.

    • In JAVA, primitive data types are passed by value, while objects are passed by reference.

    • When a primitive data type is passed to a method, a copy of the value is passed, so changes made to the parameter inside the method do not affect the original variable.

    • When an object is passed to a method, the reference to the object...

  • Answered by AI
  • Q3. Write a sample JAVA program to parse and validate mail-id
  • Ans. 

    A sample JAVA program to parse and validate mail-id

    • Use regular expressions to validate the email format

    • Check for the presence of '@' symbol and domain name

    • Utilize try-catch blocks for error handling

    • Use Java libraries like javax.mail.internet.InternetAddress for validation

  • Answered by AI

    Interview Preparation Tips

    Topics to prepare for Infinite Computer Solutions Senior Technical Lead interview:
    • JAVA, Docker, Kubernetes
    Interview preparation tips for other job seekers - Be confident and honest in your speech.

    Skills evaluated in this interview

    Top Infinite Computer Solutions Senior Technical Lead Interview Questions and Answers

    Q1. How will you scale-up and scale-down Kubernetes pods?
    View answer (1)

    Senior Technical Lead Interview Questions asked at other Companies

    Q1. What is containerization (Docker)? what are steps to create container, till it gets deploy on server.
    View answer (1)

    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
    • Ans. 

      SQL joins queries are used to combine rows from two or more tables based on a related column between them.

      • Use INNER JOIN to return rows when there is at least one match in both tables

      • Use LEFT JOIN to return all rows from the left table and the matched rows from the right table

      • Use RIGHT JOIN to return all rows from the right table and the matched rows from the left table

      • Use FULL JOIN to return rows when there is a match

    • Answered by AI
    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

    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?
    View answer (1)

    Software Developer Interview Questions asked at other Companies

    Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
    View answer (43)
    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

    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?
    View answer (1)

    Software Developer Interview Questions asked at other Companies

    Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
    View answer (43)
    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

    Top Infinite Computer Solutions Senior Technical Lead Interview Questions and Answers

    Q1. How will you scale-up and scale-down Kubernetes pods?
    View answer (1)

    Senior Technical Lead Interview Questions asked at other Companies

    Q1. What is containerization (Docker)? what are steps to create container, till it gets deploy on server.
    View answer (1)

    Infinite Computer Solutions interview questions for popular designations

     Software Engineer

     (14)

     Senior Software Engineer

     (9)

     Associate Software Engineer

     (8)

     Technical Lead

     (6)

     Senior Technical Lead

     (5)

     Softwaretest Engineer

     (4)

     Support Engineer

     (3)

     Software Developer

     (3)

    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.

    IT Operations Manager Interview Questions asked at other Companies

    Q1. Have you worked on monitoring windows applications? Explain
    View answer (1)

    Get interview-ready with Top Infinite Computer Solutions Interview Questions

    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

    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

    Senior QA Lead Interview Questions asked at other Companies

    Q1. Scenario: Suppose a build is supposed to go live in 2 hrs but you just found a bug while monkey testing. What would you do now?
    View answer (1)

    Jobs at Infinite Computer Solutions

    View all
    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.

    Software Engineer Trainee Interview Questions asked at other Companies

    Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
    View answer (1)
    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

    Technical Lead Interview Questions asked at other Companies

    Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
    View answer (4)
    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

    Automation Test Engineer Interview Questions asked at other Companies

    Q1. How to handle scrollbar and mouse activities Jenkins and Github Story Point in Agile
Backlogs in Agile
Jira workflow explain framework pom.xml wap number reverse program StellException
Exception in Selenium diff - getwindowhandles() and get... read more
    View answer (2)
    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.
    • Ans. 

      I am a Java Developer with 5 years of experience in developing web applications and software solutions.

      • Experienced in Java programming language

      • Proficient in developing web applications

      • Skilled in software solution development

    • Answered by AI
    • Q2. What is class in java.
    • Ans. 

      A class in Java is a blueprint for creating objects, defining attributes and behaviors.

      • Classes are used to create objects in Java.

      • They define attributes (fields) and behaviors (methods) of the objects.

      • Classes can be instantiated to create multiple objects of the same type.

      • Example: class Car { String color; void drive() { ... } }

      • Example: Car myCar = new Car();

    • Answered by AI

    Skills evaluated in this interview

    Java Developer Interview Questions asked at other Companies

    Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
    View answer (4)
    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

    Sdet Automation Test Engineer Interview Questions asked at other Companies

    Q1. Wait in selenium and how to find all links present in a page xpath
    View answer (2)

    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
    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.

    Infinite Computer Solutions Interview Process

    based on 156 interviews

    Interview experience

    3.8
      
    Good
    View more
    Join Infinite Computer Solutions Digitally Engineering Tomorrow, Today

    Interview Questions from Similar Companies

    Nagarro Interview Questions
    4.0
     • 763 Interviews
    Publicis Sapient Interview Questions
    3.5
     • 621 Interviews
    GlobalLogic Interview Questions
    3.6
     • 593 Interviews
    EPAM Systems Interview Questions
    3.7
     • 556 Interviews
    UST Interview Questions
    3.8
     • 518 Interviews
    CGI Group Interview Questions
    4.0
     • 493 Interviews
    View all

    Infinite Computer Solutions Reviews and Ratings

    based on 1.6k reviews

    3.3/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.6k Reviews and Ratings
    Front End Developer

    Noida

    1-3 Yrs

    Not Disclosed

    Technical Lead

    Pune

    10-14 Yrs

    Not Disclosed

    Solution Architect

    Hyderabad / Secunderabad

    10-12 Yrs

    Not Disclosed

    Explore more jobs
    Software Engineer
    1.4k salaries
    unlock blur

    ₹3 L/yr - ₹12.2 L/yr

    Senior Software Engineer
    1.3k salaries
    unlock blur

    ₹6.8 L/yr - ₹22.5 L/yr

    Technical Lead
    833 salaries
    unlock blur

    ₹9.8 L/yr - ₹28.9 L/yr

    Associate Software Engineer
    750 salaries
    unlock blur

    ₹2.5 L/yr - ₹8.5 L/yr

    Softwaretest Engineer
    601 salaries
    unlock blur

    ₹3 L/yr - ₹11 L/yr

    Explore more salaries
    Compare Infinite Computer Solutions with

    Sutherland Global Services

    3.6
    Compare

    Optum Global Solutions

    4.0
    Compare

    Hexaware Technologies

    3.5
    Compare

    FIS

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