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 IT Analyst Interview Questions and Answers

Updated 16 Feb 2025

Infinite Computer Solutions IT Analyst Interview Experiences

2 interviews found

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

I appeared for an interview before Feb 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Can you describe your past work experience?
Round 2 - HR 

(1 Question)

  • Q1. What are your salary expectations?

IT Analyst Interview Questions & Answers

user image Anonymous

posted on 23 Jan 2021

I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Technology related

Interview Preparation Tips

Interview preparation tips for other job seekers - The lasted for about an hour. Impress in first few minutes , have a script for -tell me about yourself. All the questions asked are related to the technology I am in and the ones I mentioned in my resume. Build your resume properly do not add something you are not good at or prepare well for whatever you mentioned in your resume and better back them with relevant projects. Your confidence matters. If you are not sure do not answer and accept you don't know and will be working on yourself.

IT Analyst Interview Questions Asked at Other Companies

asked in TCS
Q1. 1. What is interface how to use? 2. Tell me a small example for i ... read more
asked in TCS
Q2. How to load data from tab delimiter file instead of csv
asked in TCS
Q3. Writing NO DATA FOUND after WHEN OTHERS is allowed in plsql block
asked in TCS
Q4. How would you insert contacts to newly created contacts using tri ... read more
asked in UnitedLex
Q5. What is Organizational unit? What is the difference between share ... read more

Interview questions from similar companies

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

I applied via Walk-in and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Many types of logical questions

Round 2 - Group Discussion 

Currently trending to the social media

Interview Preparation Tips

Interview preparation tips for other job seekers - Must learning to they programming language

I applied via Approached by Company and was interviewed before May 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Short basic algorithms test

Round 2 - Technical 

(1 Question)

  • Q1. Java OOPS Concept Questions, Multithreading
Round 3 - HR 

(1 Question)

  • Q1. Team Management Skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay strong and firm, make sure they are convinced of your skills
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 - Technical 

(1 Question)

  • Q1. About A360 and other skills
Round 3 - Technical 

(1 Question)

  • Q1. Management and problem solving
Round 4 - HR 

(1 Question)

  • Q1. Package and joining date

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Coding Test 

Use java 8 to find the first repeated character in a given string

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

I applied via Naukri.com and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Technical 

(8 Questions)

  • Q1. It is technical interview for screening for technical knowledge
  • Q2. Explain Oops concept in .net
  • Ans. 

    OOPs concept in .NET refers to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementatio...

  • Answered by AI
  • Q3. What is .Net core advance features
  • Ans. 

    Some advanced features of .Net Core include cross-platform support, performance improvements, and support for modern development practices.

    • Cross-platform support allows developers to build and run applications on different operating systems.

    • Performance improvements such as faster startup times and lower memory usage.

    • Support for modern development practices like containerization and microservices architecture.

    • Built-in s...

  • Answered by AI
  • Q4. What is Interface vs Abstraction
  • Ans. 

    Interface defines a contract for a class to implement, while abstraction hides the implementation details.

    • Interface is a blueprint of a class that defines what methods a class must implement.

    • Abstraction is a concept that hides the implementation details and shows only the functionality.

    • Interfaces can have multiple inheritance, while abstraction can be achieved using abstract classes.

    • Example: Interface 'Shape' may have ...

  • Answered by AI
  • Q5. What are extention methods
  • Ans. 

    Extension methods are a way to add new methods to existing types without modifying the original type.

    • Extension methods are defined as static methods in a static class.

    • They must be in the same namespace as the type being extended.

    • They are called like instance methods on the extended type.

    • Example: Adding a method to the String class to reverse a string.

  • Answered by AI
  • Q6. Explain service life time
  • Q7. What is middle tier
  • Ans. 

    Middle tier is the layer of software that acts as a bridge between the front-end user interface and the back-end database.

    • Middle tier handles business logic and processing of data

    • It often includes application servers, web servers, and APIs

    • Examples include Java EE, .NET Framework, and Node.js

  • Answered by AI
  • Q8. What is DI and it's use
  • Ans. 

    DI stands for Dependency Injection and is a design pattern used to increase flexibility and maintainability of code.

    • DI is a technique where one object supplies the dependencies of another object instead of the object creating them itself.

    • It helps in decoupling components, making them easier to test and reuse.

    • DI containers like Spring Framework in Java are used to manage dependencies and inject them into objects.

    • Example...

  • Answered by AI
Round 2 - Technical 

(9 Questions)

  • Q1. It is for deep knowledge and knowledge of cloud and communication accessment
  • Q2. Explain structure and later of current project
  • Ans. 

    The current project is a web application for managing inventory and sales.

    • The project follows a MVC (Model-View-Controller) architecture

    • Uses technologies like React for the front-end and Node.js for the back-end

    • Database schema includes tables for products, customers, orders, etc.

    • Implemented features like user authentication, product search, and order processing

  • Answered by AI
  • Q3. What is your current role
  • Q4. Explain Solid principles
  • Ans. 

    SOLID principles are a set of five design principles that help make software designs more understandable, flexible, and maintainable.

    • Single Responsibility Principle (SRP) - A class should have only one reason to change.

    • Open/Closed Principle (OCP) - Software entities should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should be replaceable with objects o...

  • Answered by AI
  • Q5. Explain the is IOC
  • Ans. 

    Inversion of Control (IoC) is a design principle where the flow of control is inverted compared to traditional programming.

    • IoC is a design pattern where the control of flow is inverted from the traditional approach.

    • In IoC, the control is passed to a framework or container that manages the flow of the application.

    • Dependency Injection is a common implementation of IoC, where dependencies are injected into a class rather

  • Answered by AI
  • Q6. What is pipeline funtions
  • Ans. 

    Pipeline functions are a series of functions or tasks that are executed in a specific order to process data or perform actions.

    • Pipeline functions help streamline complex processes by breaking them down into smaller, manageable tasks

    • Each function in the pipeline takes input from the previous function and passes output to the next function

    • Commonly used in data processing, automation, and software development workflows

  • Answered by AI
  • Q7. How to use session in .net core
  • Ans. 

    Session in .NET Core is used to store user-specific information across multiple requests.

    • Use services.AddSession() in ConfigureServices method of Startup class to enable session

    • Use app.UseSession() in Configure method of Startup class to add session middleware

    • Access session data using HttpContext.Session property

    • Example: HttpContext.Session.SetString("UserName", "JohnDoe") to store a string in session

    • Example: string us...

  • Answered by AI
  • Q8. Explain ACID properties in DB
  • Ans. 

    ACID properties in DB ensure data integrity and consistency

    • Atomicity: All operations in a transaction are completed successfully or none at all

    • Consistency: Data is always in a valid state before and after a transaction

    • Isolation: Transactions are isolated from each other until they are completed

    • Durability: Once a transaction is committed, changes are permanent and survive system failures

  • Answered by AI
  • Q9. What are diff Isolation levels
  • Ans. 

    Isolation levels define the level of visibility a transaction has on other concurrent transactions.

    • Isolation levels include READ UNCOMMITTED, READ COMMITTED, REPEATABLE READ, and SERIALIZABLE.

    • READ UNCOMMITTED allows dirty reads, READ COMMITTED prevents dirty reads but allows non-repeatable reads, REPEATABLE READ prevents non-repeatable reads but allows phantom reads, and SERIALIZABLE prevents all anomalies.

    • Isolation le...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. What is sal expectation
  • Ans. 

    Salary expectation is the amount of money a candidate expects to be paid for a specific job role.

    • Salary expectation is usually discussed during the job interview process.

    • Candidates may base their salary expectations on factors such as their experience, qualifications, industry standards, and cost of living.

    • Employers may also consider the candidate's salary expectation when making a job offer.

    • It is important for candida...

  • Answered by AI
  • Q2. How soon you can join

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare some cloud concepts

Skills evaluated in this interview

Technical Lead Interview Questions & Answers

Nagarro user image Ravinder Deshwal

posted on 13 Mar 2025

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

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

  • Q1. Good core understanding
  • Q2. Architectural concept based
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Design a restaurant management application
  • Ans. 

    A restaurant management application to streamline operations and enhance customer experience.

    • Features for managing menu items, orders, reservations, and staff schedules

    • Integration with POS systems for seamless transactions

    • Analytics dashboard for tracking sales, inventory, and customer feedback

    • Mobile app for customers to place orders and make reservations

    • Automated alerts for low inventory or high demand items

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Difference between design pattern and design principle
  • Ans. 

    Design patterns are reusable solutions to common problems in software design, while design principles are guidelines to follow for good design practices.

    • Design patterns provide specific solutions to recurring problems in software design, such as Singleton, Factory, and Observer patterns.

    • Design principles are general guidelines that help in designing software that is maintainable, scalable, and flexible, such as SOLID p...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java Collections
  • Q2. Java8 Stream program
  • Ans. 

    Java8 Stream program to filter even numbers and double them

    • Use Stream to filter even numbers

    • Use map to double the filtered numbers

    • Use collect to collect the results into a list

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Completable future
  • Q2. Microservice architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - Salary discussion and project informations

Skills evaluated in this interview

Infinite Computer Solutions Interview FAQs

How many rounds are there in Infinite Computer Solutions IT Analyst interview?
Infinite Computer Solutions interview process usually has 2 rounds. The most common rounds in the Infinite Computer Solutions interview process are Technical and HR.
How to prepare for Infinite Computer Solutions IT Analyst 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 Customer Service, IT Helpdesk, Incident management, Monitoring and Operations.

Tell us how to improve this page.

Infinite Computer Solutions IT Analyst Interview Process

based on 4 interviews

Interview experience

3.8
  
Good
View more
Join Infinite Computer Solutions Digitally Engineering Tomorrow, Today
Infinite Computer Solutions IT Analyst Salary
based on 111 salaries
₹3 L/yr - ₹12.3 L/yr
25% less than the average IT Analyst Salary in India
View more details

Infinite Computer Solutions IT Analyst Reviews and Ratings

based on 16 reviews

2.0/5

Rating in categories

1.6

Skill development

1.6

Work-life balance

2.6

Salary

1.5

Job security

1.6

Company culture

1.7

Promotions

1.7

Work satisfaction

Explore 16 Reviews and Ratings
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
832 salaries
unlock blur

₹9.8 L/yr - ₹28.9 L/yr

Associate Software Engineer
749 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