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

Updated 26 Jun 2025
Popular Designations

9 Interview questions

A Senior IOS Developer was asked 5mo ago
Q. 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

View all Senior IOS Developer interview questions
A Senior IOS Developer was asked 5mo ago
Q. 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

View all Senior IOS Developer interview questions
A Senior IOS Developer was asked 5mo ago
Q. 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 ...

View all Senior IOS Developer interview questions
A Senior IOS Developer was asked 5mo ago
Q. 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...

View all Senior IOS Developer interview questions
A Senior IOS Developer was asked 5mo ago
Q. 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 ...

View all Senior IOS Developer interview questions
A Software Engineer was asked
Q. Create a login page with authentication using ReactJS, HTML, and CSS.
Ans. 

Create a login page using ReactJS, HTML, and CSS with authentication functionality.

  • Set up a React project using Create React App: `npx create-react-app login-page`.

  • Create a Login component with controlled form inputs for username and password.

  • Use state to manage form data: `const [credentials, setCredentials] = useState({ username: '', password: '' });`.

  • Implement a handleSubmit function to process login: `const ha...

View all Software Engineer interview questions
A SQL Database Administrator was asked
Q. If a database is using TDE, how do you add it to an Always On Availability Group?
Ans. 

Integrating Transparent Data Encryption (TDE) with Always On Availability Groups requires specific steps for configuration.

  • Ensure TDE is enabled on the primary database before adding it to an Always On group.

  • Backup the TDE certificate and private key from the primary server.

  • Restore the TDE certificate on all secondary replicas to ensure encryption compatibility.

  • Use SQL Server Management Studio (SSMS) or T-SQL comm...

View all SQL Database Administrator interview questions
Are these interview questions helpful?
A Software Engineer was asked 1mo ago
Q. Over view of full stack
Ans. 

Full stack development involves both front-end and back-end technologies to create complete web applications.

  • Front-end: Technologies like HTML, CSS, and JavaScript frameworks (e.g., React, Angular) for user interface.

  • Back-end: Server-side languages like Node.js, Python (Django/Flask), or Ruby on Rails for application logic.

  • Database: Use of SQL (MySQL, PostgreSQL) or NoSQL (MongoDB) databases to store and manage da...

View all Software Engineer interview questions
An IOS Developer was asked
Q. 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

View all IOS Developer interview questions

Infinite Computer Solutions Interview Experiences for Freshers

14 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.
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
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Reactjs, html, css and create login page with auth
  • Ans. 

    Create a login page using ReactJS, HTML, and CSS with authentication functionality.

    • Set up a React project using Create React App: `npx create-react-app login-page`.

    • Create a Login component with controlled form inputs for username and password.

    • Use state to manage form data: `const [credentials, setCredentials] = useState({ username: '', password: '' });`.

    • Implement a handleSubmit function to process login: `const handleS...

  • Answered by AI
Round 2 - Technical 

(1 Question)

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

(1 Question)

  • Q1. Expectation and past experiences
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

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
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
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before May 2024, where I was asked the following questions.

  • Q1. Basics of java
  • Q2. Over view of full stack
  • Ans. 

    Full stack development involves both front-end and back-end technologies to create complete web applications.

    • Front-end: Technologies like HTML, CSS, and JavaScript frameworks (e.g., React, Angular) for user interface.

    • Back-end: Server-side languages like Node.js, Python (Django/Flask), or Ruby on Rails for application logic.

    • Database: Use of SQL (MySQL, PostgreSQL) or NoSQL (MongoDB) databases to store and manage data.

    • AP...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Fresher can join. And experienced not to join
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:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
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

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

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

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 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 differences between classes and structs, and when should each be u...read more
  3. What are the key principles of memory management in iOS app developme...read more
What are the most common questions asked in Infinite Computer Solutions HR round for freshers?

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

  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

4.1/5

based on 8 interview experiences

Difficulty level

Easy 25%
Moderate 75%

Duration

Less than 2 weeks 50%
2-4 weeks 25%
4-6 weeks 25%
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
Senior Technical Lead

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Senior Technical Lead

Bangalore / Bengaluru

10-15 Yrs

₹ 15.4-28 LPA

Senior Technical Lead

Bangalore / Bengaluru

6-11 Yrs

Not Disclosed

Explore more jobs
Software Engineer
1.6k salaries
unlock blur

₹4.7 L/yr - ₹11 L/yr

Senior Software Engineer
1.4k salaries
unlock blur

₹10.7 L/yr - ₹20 L/yr

Technical Lead
979 salaries
unlock blur

₹14.5 L/yr - ₹25 L/yr

Associate Software Engineer
782 salaries
unlock blur

₹3.5 L/yr - ₹7.5 L/yr

Softwaretest Engineer
626 salaries
unlock blur

₹4.3 L/yr - ₹10 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