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 Software Tester Interview Questions and Answers

Updated 21 May 2021

Girmiti Software Software Tester Interview Experiences

1 interview found

I applied via Other and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Only puzzles
  • Q2. Puzzle based and some scenario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare for some scenario based questions

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. What are joins? Types of joins with example.
  • Ans. 

    Joins are used to combine data from two or more tables based on a related column.

    • Types of joins include inner join, left join, right join, and full outer join.

    • Inner join returns only the matching rows from both tables.

    • Left join returns all rows from the left table and matching rows from the right table.

    • Right join returns all rows from the right table and matching rows from the left table.

    • Full outer join returns all row...

  • Answered by AI
  • Q2. Logic based questions like swap three variables.
  • Q3. OOP Conceptual questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Datametica is highly data oriented company and revolves around the SQL, Bigquery, ETL Tools. So if you have previous experience or skill in these areas, mention it.

Skills evaluated in this interview

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

(1 Question)

  • Q1. What is server and abap server
  • Ans. 

    A server is a computer or software that provides functionality for other programs or devices. ABAP server is a server that runs ABAP programs.

    • A server is a computer or software that provides services or resources to other computers or programs.

    • ABAP server is a server that runs ABAP (Advanced Business Application Programming) programs, commonly used in SAP systems.

    • ABAP server handles requests from clients and executes A...

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Worst experience company is not so good

Round 2 - Technical 

(2 Questions)

  • Q1. What is object oriented programming
  • Ans. 

    Object oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOP focuses on creating objects that interact with each other to solve problems

    • Encapsulation, inheritance, and polymorphism are key principles of OOP

    • Examples of OOP languages include Java, C++, and Python

  • Answered by AI
  • Q2. Questions on data structute
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy and good English passage reading

Round 2 - Technical 

(1 Question)

  • Q1. Projects coding dbms queries basic coding

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview learn about project and basic coding

I applied via LinkedIn and was interviewed in Nov 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. C,C++,JAVA,PHYTON ,PROJECT
  • Q2. ALL THING ANSWER GIVEN BY ME

Interview Preparation Tips

Interview preparation tips for other job seekers - GOOD COMUNICATION SKILL,GOOD KNOWLEEDGE
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Coding Test 

Tudip is one of the company whose selection process is very easy only its PI may be quite hard

Interview Preparation Tips

Topics to prepare for Tudip Technologies Software Engineer interview:
  • DSA
Interview preparation tips for other job seekers - Learn basics of aptitude and coding and prectice basic questions
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jul 2024.

Round 1 - Coding Test 

Leet code medium level question

Round 2 - Technical 

(2 Questions)

  • Q1. About Java Streams
  • Q2. Restful API coding completion based on given file
Round 3 - HR 

(2 Questions)

  • Q1. To check your attitude
  • Q2. Given detailed about company and what project you are going to work on?
Round 4 - One-on-one 

(5 Questions)

  • Q1. Hashmap working
  • Ans. 

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

    • Hashmap uses a hashing function to map keys to indices in an array.

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

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

  • Answered by AI
  • Q2. Multithreading cases
  • Q3. Scenario specific on how to handle multiple events on a single variable to have accurate result
  • Q4. Database indexing
  • Q5. Architecture level
Interview experience
3
Average
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 - Aptitude Test 

Not so much difficult. english comprehension matters for this test.

Round 3 - Technical 

(2 Questions)

  • Q1. Departmental question asked.
  • Q2. What is C++ and what are the basics
  • Ans. 

    C++ is a high-level programming language used for developing system software, application software, and video games.

    • C++ is an extension of the C programming language

    • It supports object-oriented programming concepts like classes, inheritance, polymorphism, etc.

    • It is a compiled language and provides low-level memory manipulation features

    • C++ is widely used in developing operating systems, device drivers, game engines, and ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - brush up your IT knowledge. also, increase your confidence.

Skills evaluated in this interview

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Aptitude test was easy level and moderate level.

Round 2 - Coding Test 

Coding test was held in the google form which was very easy.

Round 3 - Technical 

(3 Questions)

  • Q1. What is volatile keyword?
  • Ans. 

    The volatile keyword in software engineering is used to indicate that a variable's value can be modified by multiple threads.

    • Volatile keyword ensures that the variable's value is always read from and written to the main memory, rather than cached in a thread's local cache.

    • It is used to prevent unexpected behavior in multi-threaded environments where multiple threads may access and modify the same variable simultaneousl...

  • Answered by AI
  • Q2. What is abstract class
  • Ans. 

    An abstract class is a class that cannot be instantiated and is meant to be subclassed.

    • An abstract class can have abstract methods that must be implemented by its subclasses.

    • An abstract class can also have non-abstract methods that can be inherited by its subclasses.

    • An abstract class provides a common interface for its subclasses.

    • An abstract class can have instance variables and constructors.

    • An abstract class cannot be...

  • Answered by AI
  • Q3. Where do you use abstract class
  • Ans. 

    Abstract classes are used to provide a common interface and partial implementation for related classes.

    • Abstract classes are used when you want to create a base class that cannot be instantiated on its own but can be inherited by other classes.

    • They are useful when you want to define common methods and properties that multiple related classes should have.

    • Abstract classes can have both abstract and non-abstract methods.

    • Ab...

  • Answered by AI

Skills evaluated in this interview

Girmiti Software Interview FAQs

What are the top questions asked in Girmiti Software Software Tester interview?

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

  1. Puzzle based and some scenario based questio...read more
  2. Only puzzl...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

MAQ Software Interview Questions
1.9
 • 100 Interviews
Webkul Software Interview Questions
3.8
 • 59 Interviews
Softenger Interview Questions
4.1
 • 52 Interviews
DataMetica Interview Questions
3.6
 • 44 Interviews
View all
Girmiti Software Software Tester Salary
based on 6 salaries
₹3.5 L/yr - ₹6 L/yr
12% less than the average Software Tester Salary in India
View more details

Girmiti Software Software Tester Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
128 salaries
unlock blur

₹3 L/yr - ₹11.2 L/yr

Senior Software Engineer
115 salaries
unlock blur

₹5 L/yr - ₹15.5 L/yr

Software Developer
103 salaries
unlock blur

₹2.5 L/yr - ₹10 L/yr

Softwaretest Engineer
43 salaries
unlock blur

₹2.8 L/yr - ₹9.2 L/yr

Java Developer
41 salaries
unlock blur

₹3.2 L/yr - ₹8 L/yr

Explore more salaries
Compare Girmiti Software with

Tekwissen

4.8
Compare

Softenger

4.1
Compare

XcelServ Solutions

4.5
Compare

Damco Solutions

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview