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 Java Developer Interview Questions and Answers

Updated 6 Oct 2024

Infinite Computer Solutions Java Developer Interview Experiences

3 interviews found

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

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

It was not that hard

Round 2 - Aptitude Test 

Mainly ration proportion and SQL and basic Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy process just do basics

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk() . Parent run() - calls walk() C ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
asked in Deloitte
Q4. Convert BST to Greater Sum Tree Given a Binary Search Tree (BST) ... read more
Q5. 2. What will happen if hashcode only returns a constant? How will ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basic Java concepts, Spring concepts, annotations and Java String related coding

Java Developer Jobs at Infinite Computer Solutions

View all

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Assignment 

2 coding question (1st reverse a string without changing position of special character. 2nd remove elements before '#') + 20 mcqs

Round 2 - Group Discussion 

How to Improve software development process

Round 3 - Technical 

(3 Questions)

  • Q1. Rearrange string
  • Q2. Create form using react.js
  • Q3. Longest prefix of strings in array
Round 4 - HR 

(2 Questions)

  • Q1. Introduce your self
  • Q2. Basic hr question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Stream API related questions , methods etc.
  • Q2. What is Qualifier and Primary
  • Ans. 

    Qualifier and Primary are annotations used in Spring framework for dependency injection.

    • Qualifier annotation is used to specify which bean should be autowired when multiple beans of the same type are present

    • Primary annotation is used to specify the primary bean to be autowired when multiple beans of the same type are present

    • Qualifier can be used in combination with Autowired annotation to specify the bean name to be in...

  • Answered by AI
  • Q3. Spring boot annotations
  • Q4. Sort Array of 0 and 1
  • Ans. 

    Sort an array of 0s and 1s in linear time complexity.

    • Use two pointers approach - one from the start and one from the end.

    • Swap 0s to the left and 1s to the right until the pointers meet.

    • Time complexity: O(n), Space complexity: O(1).

  • Answered by AI
  • Q5. How do you handle code reviews
  • Ans. 

    I actively participate in code reviews to ensure code quality and learn from others.

    • I actively participate in code reviews by providing constructive feedback on others' code.

    • I also seek feedback on my own code to improve its quality and learn from others.

    • I follow coding standards and best practices during code reviews to maintain consistency and quality.

    • I use code review tools like GitHub pull requests or Bitbucket to

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Tell me about your project
  • Ans. 

    Developed a web-based inventory management system for a retail company.

    • Used Java, Spring Boot, and MySQL for backend development.

    • Implemented user authentication and authorization using Spring Security.

    • Designed a responsive front-end using HTML, CSS, and JavaScript.

    • Integrated barcode scanning functionality for efficient inventory tracking.

  • Answered by AI
  • Q2. Class vs object
  • Ans. 

    A class is a blueprint or template for creating objects, while an object is an instance of a class.

    • A class defines the properties and behaviors of objects, while an object is a specific instance of a class.

    • Classes can be used to create multiple objects with similar characteristics.

    • Objects have state (attributes) and behavior (methods) defined by the class.

    • Example: Class 'Car' defines properties like 'color' and 'model'...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Date to join?

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Comparable vs Comparator
  • Ans. 

    Comparable is an interface used for natural ordering, while Comparator is used for custom ordering in Java.

    • Comparable interface is used to define the natural ordering of objects. It is implemented by the class whose objects are to be sorted.

    • Comparator interface is used to define custom ordering of objects. It is implemented by a separate class that compares objects based on specific criteria.

    • Example: Sorting a list of ...

  • Answered by AI
  • Q2. Difference between List and Set
  • Ans. 

    List allows duplicate elements and maintains insertion order, while Set does not allow duplicates and does not maintain order.

    • List can contain duplicate elements, Set cannot

    • List maintains insertion order, Set does not guarantee order

    • List is implemented by classes like ArrayList, LinkedList, Set is implemented by classes like HashSet, TreeSet

    • Example: List list = new ArrayList<>(); Set set = new HashSet<>();

Answered by AI

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is Springboot
  • Ans. 

    Spring Boot is a framework that simplifies the development of Java applications by providing pre-configured settings and tools.

    • Spring Boot eliminates the need for manual configuration by providing defaults for most settings.

    • It allows developers to quickly set up and run standalone Spring-based applications.

    • Spring Boot includes embedded servers like Tomcat, Jetty, or Undertow for easy deployment.

    • It promotes convention o...

  • Answered by AI
  • Q2. Questions on kafka
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Dec 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 - Coding Test 

There were 2 coding questions

Round 3 - Technical 

(1 Question)

  • Q1. Java oops concepts, java 8 features, spring, DB related questions
Round 4 - Technical 

(1 Question)

  • Q1. Again technical questions also About company? Y bnp? Complex issues that u fixed..
Round 5 - HR 

(1 Question)

  • Q1. HR discussion like salary and all
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Fair and was interviewed in Nov 2022. There were 3 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 - Aptitude Test 

Reasoning topics,Java logica programming

Round 3 - Technical 

(3 Questions)

  • Q1. Oops concepts java Database in SQL
  • Q2. Introduction your self
  • Ans. 

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

    • I have a strong understanding of Java programming language and its frameworks like Spring and Hibernate.

    • I have experience in developing RESTful APIs and working with databases like MySQL and Oracle.

    • I am familiar with front-end technologies like HTML, CSS, and JavaScript.

    • I have worked on projects that involved integrating third-party APIs an...

  • Answered by AI
  • Q3. Oops concepts java College academy project

Interview Preparation Tips

Interview preparation tips for other job seekers - So,i am fresher I need to improve my skills and build my currier give me one chance.

Infinite Computer Solutions Interview FAQs

How many rounds are there in Infinite Computer Solutions Java Developer interview?
Infinite Computer Solutions interview process usually has 2 rounds. The most common rounds in the Infinite Computer Solutions interview process are Group Discussion, Aptitude Test and One-on-one Round.
How to prepare for Infinite Computer Solutions Java 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 Java, Spring Boot, Hibernate, Microservices and Spring.
What are the top questions asked in Infinite Computer Solutions Java Developer interview?

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

  1. What is class in ja...read more
  2. Basic Java concepts, Spring concepts, annotations and Java String related cod...read more

Tell us how to improve this page.

Infinite Computer Solutions Java Developer Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more
Join Infinite Computer Solutions Digitally Engineering Tomorrow, Today
Infinite Computer Solutions Java Developer Salary
based on 54 salaries
₹2.8 L/yr - ₹11.8 L/yr
15% more than the average Java Developer Salary in India
View more details

Infinite Computer Solutions Java Developer Reviews and Ratings

based on 2 reviews

4.2/5

Rating in categories

3.6

Skill development

4.2

Work-life balance

3.0

Salary

3.2

Job security

4.2

Company culture

3.8

Promotions

3.2

Work satisfaction

Explore 2 Reviews and Ratings
Java Developer

Bangalore / Bengaluru

5-9 Yrs

Not Disclosed

Explore more jobs
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