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

Filter interviews by

Girmiti Software Interview Questions and Answers

Updated 26 Apr 2025
Popular Designations

20 Interview questions

A Software Manual Tester was asked 3mo ago
Q. Tell me about yourself.
Ans. 

I am a dedicated software manual tester with a passion for quality assurance and a keen eye for detail.

  • Over 5 years of experience in manual testing across various domains, including e-commerce and finance.

  • Skilled in creating and executing test cases, ensuring comprehensive coverage of application functionalities.

  • Proficient in using testing tools like JIRA and TestRail for tracking defects and managing test cases.

  • S...

View all Software Manual Tester interview questions
A Junior Java Developer was asked 12mo ago
Q. What are the differences between an abstract class and an interface?
Ans. 

Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

  • Abstract classes can have constructors, interfaces cannot.

  • A class can implement multiple interfaces, but can only extend one abstract class.

  • Interfaces are used to achieve multiple inheritance in Java.

  • Abstract classes are used to provide a common base for subclasses to extend.

View all Junior Java Developer interview questions
A Junior Java Developer was asked 12mo ago
Q. What are the differences between String, StringBuffer, and StringBuilder?
Ans. 

String is immutable, StringBuffer is synchronized and mutable, StringBuilder is not synchronized and mutable.

  • String is immutable, meaning its value cannot be changed once it is created.

  • StringBuffer is synchronized, making it thread-safe, but slower than StringBuilder.

  • StringBuilder is not synchronized, making it faster than StringBuffer but not thread-safe.

View all Junior Java Developer interview questions
A Java Developer was asked 12mo ago
Q. Write a program to reverse a string.
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

View all Java Developer interview questions
A fresher was asked
Q. What is the difference between a List and a Set?
Ans. 

List is an ordered collection of elements with duplicates allowed, while Set is an unordered collection of unique elements.

  • List maintains the insertion order of elements, while Set does not guarantee any specific order.

  • List allows duplicate elements, while Set does not allow duplicates.

  • Examples: List - [1, 2, 3, 1], Set - {1, 2, 3}

View all fresher interview questions
A fresher was asked
Q. What do you know about collections?
Ans. 

Collections refer to the process of gathering and organizing items or objects into a group.

  • Collections can include items such as books, art, antiques, coins, stamps, etc.

  • People often collect items based on personal interest, hobby, or investment purposes.

  • Collections can be displayed in museums, galleries, private homes, or online platforms.

  • Some famous collections include the British Museum in London, the Louvre in...

View all fresher interview questions
A Software Developer was asked
Q. What is the difference between method overloading and method overriding?
Ans. 

Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a method in a subclass with the same name and parameters as in the superclass.

  • Method overloading is compile-time polymorphism while method overriding is runtime polymorphism.

  • Method overloading is used to provide different ways of calling the same method with different parameters.

  • Method overriding ...

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. How do you create an object?
Ans. 

To create an object, define a class and instantiate it using the 'new' keyword.

  • Define a class with properties and methods

  • Instantiate the class using the 'new' keyword

  • Access the object's properties and methods using dot notation

View all Software Developer interview questions
A Software Developer was asked
Q. What is the difference between throw and throws?
Ans. 

throw is used to explicitly throw an exception in a method, while throws is used to declare the exceptions that a method may throw.

  • throw is used within a method to throw an exception when a certain condition is met

  • throws is used in the method signature to declare the exceptions that may be thrown by the method

  • throw is followed by an exception object, while throws is followed by the exception class names separated ...

View all Software Developer interview questions
A Software Developer was asked
Q. Briefly explain the concepts of OOPS.
Ans. 

OOPs is a programming paradigm based on the concept of objects that interact with each other.

  • OOPs stands for Object-Oriented Programming.

  • It focuses on creating objects that have properties and methods.

  • Encapsulation, Inheritance, and Polymorphism are the three main pillars of OOPs.

  • Encapsulation is the process of hiding the internal details of an object from the outside world.

  • Inheritance allows a class to inherit pr...

View all Software Developer interview questions

Girmiti Software Interview Experiences

14 interviews found

I applied via Company Website and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

9 Questions

  • Q1. What is inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class, and can also add new properties and methods.

    • Fo...

  • Answered by AI
  • Q2. Brief explain oops concept?
  • Ans. 

    OOPs is a programming paradigm based on the concept of objects that interact with each other.

    • OOPs stands for Object-Oriented Programming.

    • It focuses on creating objects that have properties and methods.

    • Encapsulation, Inheritance, and Polymorphism are the three main pillars of OOPs.

    • Encapsulation is the process of hiding the internal details of an object from the outside world.

    • Inheritance allows a class to inherit propert...

  • Answered by AI
  • Q3. What is collection?
  • Ans. 

    A collection is a group of related objects or data items that can be accessed and manipulated in a unified way.

    • Collections are used to store and organize data in a program.

    • They can be of various types such as arrays, lists, sets, maps, etc.

    • Collections provide methods to add, remove, and access elements.

    • Examples include ArrayList, HashSet, TreeMap, etc.

  • Answered by AI
  • Q4. Difference between throw and throws?
  • Ans. 

    throw is used to explicitly throw an exception in a method, while throws is used to declare the exceptions that a method may throw.

    • throw is used within a method to throw an exception when a certain condition is met

    • throws is used in the method signature to declare the exceptions that may be thrown by the method

    • throw is followed by an exception object, while throws is followed by the exception class names separated by co...

  • Answered by AI
  • Q5. Difference between checked exception and unchecked exception?
  • Ans. 

    Checked exceptions are checked at compile-time, while unchecked exceptions are not.

    • Checked exceptions are declared in the method signature or caught using try-catch blocks.

    • Unchecked exceptions do not need to be declared or caught explicitly.

    • Checked exceptions are typically used for recoverable errors, while unchecked exceptions are used for unrecoverable errors.

    • Examples of checked exceptions include IOException and SQL...

  • Answered by AI
  • Q6. How to create a object?
  • Ans. 

    To create an object, define a class and instantiate it using the 'new' keyword.

    • Define a class with properties and methods

    • Instantiate the class using the 'new' keyword

    • Access the object's properties and methods using dot notation

  • Answered by AI
  • Q7. What is interface?
  • Ans. 

    An interface is a contract that specifies the methods and properties that a class must implement.

    • An interface defines a set of methods and properties that a class must implement

    • Interfaces are used to achieve abstraction and polymorphism

    • Interfaces can be used to define contracts between different parts of a system

    • A class can implement multiple interfaces

    • Interfaces are declared using the 'interface' keyword in most progr...

  • Answered by AI
  • Q8. Difference between method overloading and overriding?
  • Ans. 

    Method overloading is having multiple methods with the same name but different parameters. Method overriding is having a method in a subclass with the same name and parameters as in the superclass.

    • Method overloading is compile-time polymorphism while method overriding is runtime polymorphism.

    • Method overloading is used to provide different ways of calling the same method with different parameters.

    • Method overriding is us...

  • Answered by AI
  • Q9. Simple program (input - r$3y@o9hy#*a&r), (output - numbers - 2,alphabet - 7,special character - 5)
  • Ans. 

    This program counts the number of digits, alphabets, and special characters in a given string.

    • Use a loop to iterate through each character in the string.

    • Check if the character is a digit using isdigit() method.

    • Check if the character is an alphabet using isalpha() method.

    • Count special characters by checking if the character is neither a digit nor an alphabet.

    • Example: For input 'r$3y@o9hy#*a&r', output will be: numbe...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - this interview was a technical one. it lasted for about 30 to 35 minutes. the interviewer wanted to test my technical skills. most of the questions asked to me were related to java i.e. (core concept, advance java, oops concept). he is very clever to ask answers with examples. luckily i was able to answer with example most of the questions correctly. you need to stay calm and should apply presence of mind. please go through the job description before applying. all the best :-)

Skills evaluated in this interview

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

Group discussion about a topic artificial intelligence

Round 2 - Technical 

(2 Questions)

  • Q1. About a python topics
  • Q2. Simple code snippets in python
  • Ans. 

    Python code snippets for beginners

    • Use print() function to display output

    • Indentation is crucial in Python for code blocks

    • Python is case-sensitive, so be careful with variable names

  • Answered by AI

Skills evaluated in this interview

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
  • 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<String> list = new ArrayList...

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

Skills evaluated in this interview

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

Write a program for string reverse

Round 2 - Technical 

(4 Questions)

  • Q1. Difference betweeen string, stringbuffer and string builder
  • Ans. 

    String is immutable, StringBuffer is synchronized and mutable, StringBuilder is not synchronized and mutable.

    • String is immutable, meaning its value cannot be changed once it is created.

    • StringBuffer is synchronized, making it thread-safe, but slower than StringBuilder.

    • StringBuilder is not synchronized, making it faster than StringBuffer but not thread-safe.

  • Answered by AI
  • Q2. Question on OOps concept
  • Q3. Abstract and interface difference
  • Ans. 

    Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

    • Abstract classes can have constructors, interfaces cannot.

    • A class can implement multiple interfaces, but can only extend one abstract class.

    • Interfaces are used to achieve multiple inheritance in Java.

    • Abstract classes are used to provide a common base for subclasses to extend.

  • Answered by AI
  • Q4. Questions on collections

Skills evaluated in this interview

fresher Interview Questions & Answers

user image Anonymous

posted on 15 May 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(4 Questions)

  • Q1. Core java Concept, oops, collection..
  • Q2. What is Oops, can you explain?
  • Ans. 

    Object-Oriented Programming (OOP) is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve a problem.

    • It involves concepts like classes, objects, inheritance, polymorphism, and encapsulation.

    • For example, in a banking system, a 'BankAccount' class can have objects like '...

  • Answered by AI
  • Q3. What do you know about collections?
  • Ans. 

    Collections refer to the process of gathering and organizing items or objects into a group.

    • Collections can include items such as books, art, antiques, coins, stamps, etc.

    • People often collect items based on personal interest, hobby, or investment purposes.

    • Collections can be displayed in museums, galleries, private homes, or online platforms.

    • Some famous collections include the British Museum in London, the Louvre in Pari...

  • Answered by AI
  • Q4. Diff between list and Set?
  • Ans. 

    List is an ordered collection of elements with duplicates allowed, while Set is an unordered collection of unique elements.

    • List maintains the insertion order of elements, while Set does not guarantee any specific order.

    • List allows duplicate elements, while Set does not allow duplicates.

    • Examples: List - [1, 2, 3, 1], Set - {1, 2, 3}

  • Answered by AI

Skills evaluated in this interview

IOS Developer Interview Questions & Answers

user image Anonymous

posted on 21 May 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Asked on iOS concepts
Round 2 - Technical 

(1 Question)

  • Q1. Asked about certificate pinning and app security
Round 3 - HR 

(1 Question)

  • Q1. Hr head tops all the best. After 2 days got an email saying i am rejected in hr round.

Interview Preparation Tips

Interview preparation tips for other job seekers - One of the worst company, after hr round they says got rejected without any explanation. Worst Hr
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Are you ready to sign 3 years bond?
  • Q2. Questions on Java/Python
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Tell about your self
  • Ans. 

    I am a dedicated software manual tester with a passion for quality assurance and a keen eye for detail.

    • Over 5 years of experience in manual testing across various domains, including e-commerce and finance.

    • Skilled in creating and executing test cases, ensuring comprehensive coverage of application functionalities.

    • Proficient in using testing tools like JIRA and TestRail for tracking defects and managing test cases.

    • Strong...

  • Answered by AI
  • Q2. About work procedure
  • Q3. About application tool
  • Q4. About company matter
  • Q5. About my self
  • Q6. About resume question
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1.Remove the duplicates in the array.
2.reverse a string

Round 2 - One-on-one 

(1 Question)

  • Q1. OOps in java Multithreading
  • Ans. 

    Object-oriented programming in Java allows for creating classes and objects to model real-world entities. Multithreading enables concurrent execution of multiple threads within a single process.

    • Java supports OOP concepts like inheritance, encapsulation, polymorphism, and abstraction.

    • Multithreading in Java allows multiple threads to run concurrently, improving performance and responsiveness.

    • Example: Creating a new threa...

  • Answered by AI

Skills evaluated in this interview

IT Analyst Interview Questions & Answers

user image Anonymous

posted on 2 May 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Testing ,Java platform

Interview Questions & Answers

user image Bhaskar D A

posted on 9 Jun 2023

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

Good day
It was nice

Round 2 - One-on-one 

(2 Questions)

  • Q1. Manual testing Selenium Java
  • Q2. Manual testing Selenium

Interview Preparation Tips

Interview preparation tips for other job seekers - Good day

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Girmiti Software?
Ask anonymously on communities.

Girmiti Software Interview FAQs

How many rounds are there in Girmiti Software interview?
Girmiti Software interview process usually has 1-2 rounds. The most common rounds in the Girmiti Software interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Girmiti Software 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 Transaction Processing, J2EE, Java, Customer Handling and Manual Testing.
What are the top questions asked in Girmiti Software interview?

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

  1. Oops concepts How to add elements to hashmap Handle drop-down In drop-down how ...read more
  2. simple program (input - r$3y@o9hy#*a&r), (output - numbers - 2,alphabet - 7,spe...read more
  3. difference between checked exception and unchecked excepti...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.6/5

based on 13 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

MAQ Software Interview Questions
1.9
 • 104 Interviews
Webkul Software Interview Questions
4.0
 • 71 Interviews
Softenger Interview Questions
4.0
 • 58 Interviews
Tata Digital Interview Questions
2.9
 • 47 Interviews
DataMetica Interview Questions
3.5
 • 45 Interviews
View all

Girmiti Software Reviews and Ratings

based on 229 reviews

4.0/5

Rating in categories

4.3

Skill development

4.0

Work-life balance

3.8

Salary

4.1

Job security

3.9

Company culture

3.9

Promotions

4.0

Work satisfaction

Explore 229 Reviews and Ratings
Technical Lead or Senior Engineer

Bangalore / Bengaluru

0-2 Yrs

Not Disclosed

Lead or Senior Engineer QA

Bangalore / Bengaluru

2-7 Yrs

₹ 7.5-12.05 LPA

Lead or Senior Engineer QA

Bangalore / Bengaluru

3-6 Yrs

₹ 9-11 LPA

Explore more jobs
Software Developer
135 salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Software Engineer
133 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Senior Software Engineer
117 salaries
unlock blur

₹5 L/yr - ₹15.5 L/yr

Java Developer
48 salaries
unlock blur

₹3.2 L/yr - ₹8 L/yr

Softwaretest Engineer
43 salaries
unlock blur

₹2.8 L/yr - ₹9.2 L/yr

Explore more salaries
Compare Girmiti Software with

Tekwissen

4.8
Compare

Softenger

4.0
Compare

XcelServ Solutions

4.4
Compare

Capital Numbers Infotech

4.4
Compare
write
Share an Interview