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 for Freshers

Updated 7 Apr 2025

Top Infinite Computer Solutions Interview Questions and Answers for Freshers

View all 6 questions

Infinite Computer Solutions Interview Experiences for Freshers

Popular Designations

13 interviews found

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
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. About Studies and Like Manager round
  • Ans. 

    What is Your major education .

  • Answered Anonymously
  • Q2. Previous working experience
  • Ans. 

    where you worked. what is your role.

  • Answered Anonymously
  • Q3. About some technical questions related our job
  • Ans. 

    which is the recent issue you faced in pipelines.

  • Answered Anonymously
  • Q4. Education Gap or career gap
Round 2 - HR 

(1 Question)

  • Q1. About Salary Discussion

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Reactjs, html, css and create login page with auth
Round 2 - Technical 

(1 Question)

  • Q1. Question on js,agile etc
Round 3 - HR 

(1 Question)

  • Q1. Expectation and past experiences

Top Infinite Computer Solutions Software Engineer Interview Questions and Answers

Q1. Which library do you use to automate tasks in aws?
View answer (3)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (225)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

(1 Question)

  • Q1. Healthcare related
Round 2 - Group Discussion 

Covid 19 topic related

Round 3 - HR 

(1 Question)

  • Q1. General questions

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

Infinite Computer Solutions interview questions for popular designations

 Software Engineer

 (15)

 Senior Software Engineer

 (10)

 Associate Software Engineer

 (8)

 Technical Lead

 (6)

 Senior Technical Lead

 (5)

 Softwaretest Engineer

 (4)

 Support Engineer

 (3)

 Software Developer

 (3)

Finance Trainee Interview Questions & Answers

user image Hema gupta

posted on 13 Oct 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. Basic questions
  • Q2. Domin knowledge of finance
Round 3 - Technical 

(1 Question)

  • Q1. Questions regarding finance

Interview Preparation Tips

Interview preparation tips for other job seekers - It was great

Finance Trainee Interview Questions asked at other Companies

Q1. What do you know about TDS?
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What are the differences between the MVC and MVVM architectural patterns, and in what scenarios should each be used?
  • Ans. 

    MVC focuses on separating data, presentation, and logic, while MVVM adds a ViewModel layer to enhance data binding and separation of concerns.

    • MVC: Model-View-Controller pattern separates data, presentation, and logic. Views directly interact with Models and Controllers.

    • MVVM: Model-View-ViewModel pattern adds a ViewModel layer between the View and Model to enhance data binding and separation of concerns.

    • MVC is more trad...

  • Answered by AI
  • Q2. What are the key principles of memory management in iOS app development?
  • Ans. 

    Key principles of memory management in iOS app development include reference counting, autorelease pools, and avoiding retain cycles.

    • Use ARC (Automatic Reference Counting) to manage memory automatically

    • Avoid retain cycles by using weak references or unowned references

    • Use autorelease pools to manage memory for temporary objects

  • Answered by AI
  • Q3. What are the differences between classes and structs, and when should each be used?
  • Ans. 

    Classes are reference types, while structs are value types. Classes are used for complex data structures, inheritance, and reference counting. Structs are used for simple data types and performance optimization.

    • Classes are reference types, stored on the heap, and support inheritance and reference counting. Use classes for complex data structures like objects, where identity matters.

    • Structs are value types, stored on th...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is your knowledge of core animation?
  • Ans. 

    Core Animation is a powerful framework in iOS for creating animations and visual effects.

    • Core Animation is a high-performance framework for animating views and graphics on iOS devices.

    • It allows for smooth animations, transitions, and effects without compromising performance.

    • Core Animation uses layers to manage the visual content of your app, providing hardware-accelerated rendering.

    • You can create animations using keyfr...

  • Answered by AI
  • Q2. How do you integrate and maintain third-party libraries?
  • Ans. 

    Integrating and maintaining third-party libraries involves adding dependencies, managing versions, and updating as needed.

    • Use dependency management tools like CocoaPods or Carthage to easily add and update libraries

    • Regularly check for updates and security patches for third-party libraries

    • Ensure compatibility with existing codebase by testing thoroughly after integrating new libraries

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussions

Senior IOS Developer Interview Questions asked at other Companies

Q1. What are the differences between the MVC and MVVM architectural patterns, and in what scenarios should each be used?
View answer (1)

Jobs at Infinite Computer Solutions

View all
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. There were 2 interview rounds.

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 

(5 Questions)

  • Q1. Supply chain management
  • Q2. Business operations
  • Q3. SAP WM consultant
  • Q4. SAP MM consultant
  • Q5. SAP PP consultant

Interview Preparation Tips

Interview preparation tips for other job seekers - Very good company

Operations Executive Interview Questions asked at other Companies

Q1. What is the electric current? How is works ?
View answer (30)

IOS Developer Interview Questions & Answers

user image Anonymous

posted on 18 Oct 2021

I appeared for an interview in Sep 2021.

Interview Questionnaire 

3 Questions

  • Q1. Fundamentals of iOS .
  • Ans. 

    Fundamentals of iOS include UIKit, Core Data, Grand Central Dispatch, and Swift programming language.

    • UIKit is the framework for building iOS user interfaces

    • Core Data is the framework for managing data in iOS apps

    • Grand Central Dispatch is used for managing concurrency and parallelism

    • Swift is the primary programming language for iOS development

  • Answered by AI
  • Q2. Memory Management related questions.
  • Q3. Multithreading Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be very clear about the basics.

Skills evaluated in this interview

IOS Developer Interview Questions asked at other Companies

Q1. 1 - MVC PATTERN 2- CLOUSERS & it's type 3- Google SDK like Google maps 3- How u manage the constraints of any label , stick at every corner & center of view controller, when getting data from json.
View answer (1)

Interview Questionnaire 

1 Question

  • Q1. What is your knowledge , experience and communication skills

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was a technical one but was majority a stress test.the interview wanted to test both my knowledge and communication skills

Software Testing Engineer Interview Questions asked at other Companies

Q1. Maximal AND Subsequences Problem Given an array consisting of N integers, your task is to determine how many k-element subsequences of the given array exist where the bitwise AND of the subsequence's elements is maximal. Your objective is t... read more
View answer (1)

Interview Questionnaire 

1 Question

  • Q1. There are 3 rounds for me, L1(Technical), L2 (Manager), L3 (HR), Technical round is all about what they are looking for and also what you have mentioned in your CV/resume, L2 (A good conversation between y...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1) A Good Presentable CV/resume
2) Be Confident and Proactive
3) To the point answers are recommended

Senior Software Engineer Testing Interview Questions asked at other Companies

Q1. Sorting Characters by Frequency Given a string S, sort this string in increasing order based on the frequency of its characters. If two characters have the same frequency, the character with a lesser ASCII value should appear first. Return ... read more
View answer (1)

Infinite Computer Solutions Interview FAQs

How many rounds are there in Infinite Computer Solutions interview for freshers?
Infinite Computer Solutions interview process for freshers usually has 2-3 rounds. The most common rounds in the Infinite Computer Solutions interview process for freshers are Technical, HR and One-on-one Round.
How to prepare for Infinite Computer Solutions interview for freshers?
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 Communication Skills, Troubleshooting, Customer Support, NOC Operations and Service Desk.
What are the top questions asked in Infinite Computer Solutions interview for freshers?

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

  1. What are the differences between the MVC and MVVM architectural patterns, and i...read more
  2. What are the key principles of memory management in iOS app developme...read more
  3. What are the differences between classes and structs, and when should each be u...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 for Freshers

based on 7 interviews

Interview experience

4.1
  
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
Senior Test Analyst

Hyderabad / Secunderabad

4-8 Yrs

Not Disclosed

Support Engineer

Chennai

2-6 Yrs

₹ 4.2-5.5 LPA

Technical Lead

Bangalore / Bengaluru

7-10 Yrs

₹ 9-25 LPA

Explore more jobs
Software Engineer
1.4k salaries
unlock blur

₹3 L/yr - ₹12.3 L/yr

Senior Software Engineer
1.3k salaries
unlock blur

₹6.8 L/yr - ₹22.5 L/yr

Technical Lead
828 salaries
unlock blur

₹10 L/yr - ₹29 L/yr

Associate Software Engineer
744 salaries
unlock blur

₹2.5 L/yr - ₹7.6 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.5
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