Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Girmiti Software Team. If you also belong to the team, you can get access from here

Girmiti Software Verified Tick

Compare button icon Compare button icon Compare
4.3

based on 247 Reviews

Filter interviews by

Girmiti Software Java Developer Interview Questions and Answers

Updated 19 Jun 2024

Girmiti Software Java Developer Interview Experiences

1 interview found

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

(6 Questions)

  • Q1. Questions on string, String buffer, String builder
  • Q2. Questions on Oops concept
  • Q3. W.r.t a program on string reverse
  • Ans. 

    Program to reverse a string using Java

    • Use StringBuilder class to reverse the string

    • Convert the string to StringBuilder, call reverse() method, then convert back to string

    • Alternatively, use char array and swap characters from start and end

  • Answered by AI
  • Q4. Difference on Arraylist and linkedlist, hashmap and hashset
  • Ans. 

    ArrayList vs LinkedList: ArrayList uses dynamic array, LinkedList uses doubly linked list. HashMap vs HashSet: HashMap stores key-value pairs, HashSet stores unique elements.

    • ArrayList is faster for accessing elements by index, LinkedList is faster for adding/removing elements in the middle.

    • HashMap allows null key and values, HashSet does not allow duplicate elements.

    • Example: ArrayList list = new ArrayList<>(); LinkedLi...

  • Answered by AI
  • Q5. One program on collection
  • Q6. Questions on Springboot, spring security

Skills evaluated in this interview

Interview questions from similar companies

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 Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is runtime polymorphism, and can you provide a code example to illustrate it?
  • Q2. Streams in java
  • Q3. How do we create threads in Java, and how do we invoke them?
  • Q4. What is a Rest Template and how is it used?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Oops concept asked
  • Q2. Springboot annotations
Round 2 - One-on-one 

(2 Questions)

  • Q1. Project details simply
  • Q2. Springboot related
Round 3 - HR 

(2 Questions)

  • Q1. Easy about salary
  • Q2. Details about asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic concept and real time example is the only thing achieve to clear interview
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

There was pattern question in any programming language and you have make the pattern dynamic.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare patterns question with any programming language
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. 1 question on merge sort, 1 question on SQL queries, oops concepts in depth with real-life examples, core java concepts in depth, collection framework.
  • Q2. Merge 2 sorted arrays,
  • Ans. 

    Merge 2 sorted arrays into a single sorted array.

    • Create a new array with the combined length of the two input arrays

    • Use two pointers to iterate through the two arrays and compare elements to merge them into the new array

    • Handle cases where one array is longer than the other

  • Answered by AI
  • Q3. Find the top salary of a department
  • Q4. 4 pillars of oops
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction are the 4 pillars of OOPs

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

    • Inheritance: Ability of a class to inherit properties and behavior from another class. Example: Parent and Child classes

    • Polymorphism: Ability to present the same interface for different data types. Example: Method overloading and overr...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for DataMetica Java Developer interview:
  • Collections
  • Core Java
  • OOPS
  • SQL
  • Data Structures
  • Algorithms
Interview preparation tips for other job seekers - Prepare well for about collection framework and oops concepts.

Skills evaluated in this interview

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

Round 1 - Coding Test 

Code review to find bugs

Round 2 - Technical 

(1 Question)

  • Q1. State the features of interface Spring boot annotations Microservice communication table index
  • Ans. 

    Interface features include abstraction, multiple inheritance, and contract enforcement.

    • Abstraction: Interfaces allow for the definition of methods without implementation, providing a blueprint for classes to follow.

    • Multiple Inheritance: Java interfaces support multiple inheritance, allowing a class to implement multiple interfaces.

    • Contract Enforcement: Interfaces define a contract that implementing classes must adhere

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Oct 2023. 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 

(2 Questions)

  • Q1. Basic Java, Oops concept, Spring boot, DSA
  • Q2. Mostly common question. Based on java.

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to ignore this organization.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Jun 2023. 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 - Technical 

(1 Question)

  • Q1. SAP related questions
Round 3 - Technical 

(1 Question)

  • Q1. High level Managerial round
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Java basic problems , Array , Collections, String , Java 8 , Spring Boot,String MVC

Round 3 - Technical 

(2 Questions)

  • Q1. Tell me about your Project ?
  • Q2. Write a code which count the number of String (words) occurrence in sentence ?
  • Ans. 

    Count the occurrence of each word in a sentence using Java code.

    • Split the sentence into an array of words using split() method.

    • Create a HashMap to store each word and its count.

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

    • Print the word and its count at the end.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Basic JAVA , Advance Java and Java 8 also Spring , SQL and Hibernate

Skills evaluated in this interview

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

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. What is Java? What is oops concepts? What is string and what are the types of string?
  • Ans. 

    Java is a high-level programming language used for developing applications. OOPs concepts are the principles of object-oriented programming. String is a sequence of characters.

    • Java is an object-oriented language that is platform-independent.

    • OOPs concepts include inheritance, encapsulation, polymorphism, and abstraction.

    • String is a class in Java that represents a sequence of characters.

    • Types of strings include immutable

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary expectation

Skills evaluated in this interview

Girmiti Software Interview FAQs

How many rounds are there in Girmiti Software Java Developer interview?
Girmiti Software interview process usually has 1 rounds. The most common rounds in the Girmiti Software interview process are Technical.
How to prepare for Girmiti Software 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 Girmiti Software. The most common topics and skills that interviewers at Girmiti Software expect are Advanced Java, Core Java, Hibernate, Microservices and Spring Boot.
What are the top questions asked in Girmiti Software Java Developer interview?

Some of the top questions asked at the Girmiti Software Java Developer interview -

  1. difference on Arraylist and linkedlist, hashmap and hash...read more
  2. w.r.t a program on string reve...read more
  3. questions on string, String buffer, String buil...read more

Tell us how to improve this page.

Girmiti Software Java Developer Salary
based on 41 salaries
₹3.1 L/yr - ₹8 L/yr
10% less than the average Java Developer Salary in India
View more details

Girmiti Software Java Developer Reviews and Ratings

based on 4 reviews

4.9/5

Rating in categories

4.9

Skill development

4.9

Work-Life balance

4.9

Salary & Benefits

4.9

Job Security

4.9

Company culture

4.9

Promotions/Appraisal

4.9

Work Satisfaction

Explore 4 Reviews and Ratings
Software Engineer
128 salaries
unlock blur

₹3 L/yr - ₹10.4 L/yr

Senior Software Engineer
118 salaries
unlock blur

₹5 L/yr - ₹17 L/yr

Software Developer
100 salaries
unlock blur

₹3 L/yr - ₹12 L/yr

Softwaretest Engineer
46 salaries
unlock blur

₹2.5 L/yr - ₹10 L/yr

Java Developer
41 salaries
unlock blur

₹3.2 L/yr - ₹8 L/yr

Explore more salaries
Compare Girmiti Software with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

Tech Mahindra

3.6
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