Upload Button Icon Add office photos

Filter interviews by

Infosystems Java Developer Interview Questions and Answers

Updated 9 Sep 2021

Infosystems Java Developer Interview Experiences

1 interview found

I applied via Walk-in and was interviewed before Sep 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Which is your project name
  • Q2. Which ip/op build in your project
  • Ans. 

    We used various input/output operations in our project including file I/O, network I/O, and console I/O.

    • We used file I/O to read and write data to files on the local system.

    • We used network I/O to communicate with remote servers and APIs.

    • We used console I/O to interact with the user through the command line interface.

    • We also used various Java libraries for input/output operations such as java.io and java.net.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - So project based questions are asking

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Given an array of non-negative integers.Find the length of the longest subsequence such that elements in the subsequence are contiguous integers. The consecutive numbers can be in any order. Example n=7 nu...
  • Ans. 

    Find the length of the longest subsequence of contiguous integers in an array.

    • Sort the array

    • Iterate through the array and check for consecutive integers

    • Keep track of the longest subsequence found

  • Answered by AI
  • Q2. Get list of pincodes from these objects Employee{ id Long, name String, Addresses : List
    } Addresses{ houseNo long, pindcode long, state String, country String, } Ans. Use flatMap to flatten and then use m...
  • Ans. 

    Use flatMap and map to extract list of pincodes from Employee objects

    • Use flatMap to flatten the list of Addresses in each Employee object

    • Use map to iterate over the flattened list and extract the pincodes

    • Example: employeeList.stream().flatMap(emp -> emp.getAddresses().stream()).map(address -> address.getPincode()).collect(Collectors.toList())

  • Answered by AI
  • Q3. What is Database Pooling, Hikari and its configurations. Java 8 to current enchancements and current java version Factory and Builder design patterns to explain and code Project expalantion and details, Cr...
  • Ans. 

    Database pooling is a technique used to manage a pool of database connections for efficient resource utilization. HikariCP is a popular database connection pooling library in Java.

    • HikariCP is a high-performance database connection pooling library for Java applications.

    • It is known for its low latency and high throughput.

    • Configurations for HikariCP include settings such as maximum pool size, connection timeout, and idle ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and design patterns and knowledge of springboot,java & streams API advance methods etc.

Skills evaluated in this interview

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

(1 Question)

  • Q1. They asked some core Java Concepts,String,Java 8,SpringBoot Architecture,Stream API code
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 features
  • Q2. Junit code writing
Round 2 - HR 

(2 Questions)

  • Q1. Reason for job change
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic environment.

    • Desire for professional growth

    • Seeking new challenges

    • Interested in a more dynamic work environment

  • Answered by AI
  • Q2. Past experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Ask to write code for equal and hashcode in notepad
  • Q2. Type of Collections and its internal working
  • Ans. 

    Java collections are data structures that store and manipulate groups of objects.

    • Types of collections include List, Set, Map, Queue, etc.

    • Internal workings involve data structures like arrays, linked lists, hash tables, etc.

    • Collections framework provides interfaces and classes for working with collections.

  • Answered by AI
  • Q3. Count number of occurrence of string from Array
  • Ans. 

    Count occurrences of a specific string in an array of strings.

    • Iterate through the array and use a HashMap to store the count of each string.

    • Use the string as key and increment the count each time it is encountered.

    • Return the count of the specific string at the end.

  • Answered by AI
  • Q4. Write a code using stream
  • Ans. 

    Using stream to filter a list of strings

    • Use the filter method to apply a predicate to each element in the stream

    • Convert the stream back to a list using the collect method

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Due to network and power issue interview and processed

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Cycle sort based question
  • Q2. Streams api, optional, lambda implementation
  • Q3. Hashmap iteration ways
  • Ans. 

    There are multiple ways to iterate over a HashMap in Java.

    • Using keySet() and values() methods

    • Using entrySet() method

    • Using forEach() method with lambda expression

  • Answered by AI
  • Q4. Method overriding based code question -> guess the output
  • Ans. 

    Method overriding in Java with code example

    • Output will be 'Child class method' as the method in Child class overrides the method in Parent class

    • Method overriding is a feature that allows a subclass to provide a specific implementation of a method that is already provided by its superclass

    • The method in the subclass should have the same name, return type, and parameters as the method in the superclass

  • Answered by AI
  • Q5. Write API to save data
  • Ans. 

    API to save data in Java

    • Use HTTP POST method to send data to the server

    • Create a RESTful endpoint to handle the data saving

    • Validate the input data before saving it to the database

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Microservices communication
  • Q2. Hash map working
  • Ans. 

    Hash map is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • Hash map uses hashing to map keys to their corresponding values.

    • It allows for constant time complexity O(1) for insertion, deletion, and retrieval operations.

    • Example: HashMap map = new HashMap<>(); map.put("key", 123); int value = map.get("key");

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Count duplicate from int array
  • Ans. 

    Count duplicates in an int array

    • Create a HashMap to store the count of each element in the array

    • Iterate through the array and update the count in the HashMap

    • Count the elements with count greater than 1 as duplicates

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Ask to write code for equal and hashcode in notepad
  • Q2. Type of Collections and its internal working
  • Ans. 

    Java collections are data structures that store and manipulate groups of objects.

    • Types of collections include List, Set, Map, Queue, etc.

    • Internal workings involve data structures like arrays, linked lists, hash tables, etc.

    • Collections framework provides interfaces and classes for working with collections.

    • Example: ArrayList internally uses an array to store elements.

  • Answered by AI
  • Q3. Count number of occurrence of string from Array
  • Ans. 

    Count occurrences of a specific string in an array of strings.

    • Iterate through the array and compare each element with the target string.

    • Increment a counter each time the target string is found.

    • Return the final count of occurrences.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Due to network and power issue interview and processed

Skills evaluated in this interview

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 Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 feature & java 9
  • Q2. Profiler concept internal work
Round 2 - Coding Test 

Separate 0 and 1 and then store in the sme array

Interview Preparation Tips

Interview preparation tips for other job seekers - Just read some array questions and core java, java 8, spring boot & microservices

Tell us how to improve this page.

People are getting interviews through

based on 1 Infosystems interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
System Engineer
11 salaries
unlock blur

₹3.6 L/yr - ₹4.8 L/yr

Consultant
7 salaries
unlock blur

₹8.5 L/yr - ₹16.6 L/yr

Software Engineer
6 salaries
unlock blur

₹3.2 L/yr - ₹7 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹4 L/yr - ₹10.1 L/yr

Team Lead
5 salaries
unlock blur

₹2 L/yr - ₹18.9 L/yr

Explore more salaries
Compare Infosystems with

Udaan

4.0
Compare

Ekart Logistics

4.0
Compare

Home Credit Finance

4.1
Compare

SBI Cards & Payment Services

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview