Upload Button Icon Add office photos

Filter interviews by

Gibraltar Technologies Senior Software Engineer 2 Interview Questions and Answers

Updated 2 Jul 2024

Gibraltar Technologies Senior Software Engineer 2 Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Question on core Java collection, multi threading,concurrent collection ,iterator,oops
  • Q2. Question on spring boot, singleton class, why we need final variables or class
Round 2 - Technical 

(2 Questions)

  • Q1. Asked me about project details
  • Q2. Load balancing, questions on deployment, which server is used in your project
Round 3 - HR 

(2 Questions)

  • Q1. Basic questions
  • Q2. Salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for technical in depth deep dive.
Core Java , Java 8 , spring boot,jpa, concurrent collection, elastic search ,git ,Jenkins,project and scenario based questions some basic coding questions with different complexity

Interview questions from similar companies

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

Round 1 - Coding Test 

Round1 - DSA question | Codility Platform
For a given String str, find the longest repeating and non-overlapping substrings. If there exists more than 1 such substring print out all of them as part of output.

Round 2 - Coding Test 

Round2 - DSA Question | stack | Codility Platform
Find largest area possible in a given Histogram where largest rectangle can be formed by a number of continuous bars whose heights are given in an array.

Round 3 - System Design 

(1 Question)

  • Q1. Design a Common Billing System for Azure services.
  • Ans. 

    Design a Common Billing System for Azure services.

    • Utilize Azure Billing API to track usage and costs

    • Implement role-based access control for billing information

    • Include automated invoicing and payment processing

    • Integrate with Azure Active Directory for user authentication

    • Provide detailed billing reports and analytics for customers

  • Answered by AI
Round 4 - Behavioral 

(2 Questions)

  • Q1. Share the most challenging task of your career so far.
  • Ans. 

    Designing and implementing a real-time data processing system for a high-traffic e-commerce platform.

    • Architecting a scalable and fault-tolerant system to handle millions of transactions per day.

    • Optimizing data processing algorithms to ensure low latency and high throughput.

    • Implementing real-time monitoring and alerting mechanisms to detect and address issues proactively.

  • Answered by AI
  • Q2. Why change from current organization?
  • Ans. 

    Seeking new challenges and growth opportunities in a larger organization with more advanced technologies.

    • Desire for new challenges and opportunities for growth

    • Interested in working with more advanced technologies

    • Seeking a larger organization with greater resources and opportunities for career advancement

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - In DSA rounds it is essential to not only solve the problem but also walk through different choices you have made and how it impacts the memory and number of iterations within the implemented algorithm.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Java programming string, linked list
  • Q2. Trees, threads, deadlocks, multithreading
Round 2 - Technical 

(2 Questions)

  • Q1. JAVA programming
  • Q2. Unit tests for the written program
Round 3 - Technical 

(2 Questions)

  • Q1. Data Structures and Algorithms
  • Q2. Unit tests in JAVA
  • Ans. 

    Unit tests in JAVA are used to test individual units or components of a software application.

    • Unit tests are written to verify the behavior of a specific piece of code in isolation.

    • They help ensure that each unit of code works correctly on its own.

    • JUnit is a popular Java framework for writing and running unit tests.

    • Mockito is often used in conjunction with JUnit for mocking dependencies in unit tests.

  • Answered by AI
Round 4 - Behavioral 

(2 Questions)

  • Q1. Salary Negotiation
  • Q2. About org policies

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
No response

I was interviewed in Nov 2024.

Round 1 - Coding Test 

Asked reverse number

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

I applied via Naukri.com and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. It was Data structure and Algorithm round
  • Q2. 1. Program to get a response as Excel column name for integer input. Input 1-> A, 2-> B, 3->C, ...26->Z,27->AA, 28->AB, 29->AC..52->AZ. 2. Find first no-repeating character in String. 3. Given a list of N...
  • Ans. 

    Program to convert integer to Excel column name, find first non-repeating character in a string, and create a map of last names with count of names.

    • For converting integer to Excel column name, you can use a recursive function to map the remainder of the division by 26 to the corresponding letter.

    • To find the first non-repeating character in a string, you can iterate through the string and use a HashMap to store the coun...

  • Answered by AI

Skills evaluated in this interview

I applied via Approached by company and was interviewed in Dec 2021. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic C++ related questions. 2 problems. Asked to open cpp.sh and code there and compile.
Round 2 - Technical 

(2 Questions)

  • Q1. Pointer related questions.
  • Q2. 4 problems. Asked to code for 2 of them.
Round 3 - Behavioral 

(1 Question)

  • Q1. Behavioral questions.
Round 4 - HR 

(6 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why are you looking for a change?
  • Q5. What are your strengths and weaknesses?
  • Q6. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on Data Structures and algorithms and the language that you are going to work on. Practice problem solving on online platforms like hackerrank or leetcode.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Interview Questions 

(20 Questions)

  • Q1. Explain the difference between ArrayList and LinkedList in Java. When would you choose one over the other?
  • Q2. What are the advantages and disadvantages of using Java’s synchronized keyword for thread synchronization? Can you explain how the ReentrantLock compares to synchronized?
  • Q3. What is the difference between == and .equals() in Java? When should each be used, and what issues can arise from improper usage?
  • Q4. How does the Java garbage collector work? Can you describe the different types of garbage collection algorithms available in Java?
  • Q5. What are the main features of Java 8? Can you explain how lambdas and the Stream API have changed the way Java applications are written?
  • Q6. Describe the differences between checked and unchecked exceptions in Java. Provide examples and explain how to handle them properly.
  • Q7. What is the Java Memory Model, and how does it affect multithreading and synchronization? How does volatile help ensure memory visibility?
  • Q8. Can you explain the difference between method overloading and method overriding in Java? Provide examples where each should be used.
  • Q9. What are functional interfaces in Java? How do they work with lambda expressions? Provide an example of a custom functional interface.
  • Q10. What is a Java Stream, and how does it differ from an Iterator? Explain how Streams can be used to process collections efficiently.
  • Q11. Explain the concept of immutability in Java. How does the String class achieve immutability, and what are the advantages of immutable objects?
  • Q12. What is the difference between final, finally, and finalize in Java? Provide examples to illustrate their usage.
  • Q13. Explain the Singleton design pattern in Java. How can you implement it safely to ensure thread safety?
  • Q14. What are Java annotations, and how are they used in frameworks like Spring? Explain the difference between built-in and custom annotations.
  • Q15. How do Java Streams handle parallel processing? What are the potential pitfalls of using parallel streams, and how can they be mitigated?
  • Q16. Explain the difference between ArrayList and LinkedList in Java. ArrayList is implemented as a dynamic array, while LinkedList is a doubly linked list. ArrayList provides fast random access (O(1) complexi...
  • Q17. What are the advantages and disadvantages of using Java’s synchronized keyword for thread synchronization? The synchronized keyword ensures that only one thread can access a block of code at a time. It pr...
  • Q18. What is the difference between == and .equals() in Java? == checks for reference equality, meaning it compares memory addresses. equals() checks for value equality, which can be overridden in user-defined...
  • Q19. How does the Java garbage collector work? Garbage collection in Java automatically reclaims memory occupied by unused objects. The JVM has different types of GC algorithms, including Serial, Parallel, CMS...
  • Q20. What are the main features of Java 8? Java 8 introduced lambda expressions, enabling functional-style programming. The Stream API allows efficient data processing with map, filter, and reduce operations. ...
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. No any no any questions for sharing.
  • Q2. Nothing questions for sharing
  • Q3. Nothing to share have for interview
  • Q4. Nothing to share for interview
  • Q5. Nothing have to sharing

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing for advice to job seekers.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I was interviewed in Dec 2024.

Round 1 - Technical 

(7 Questions)

  • Q1. Started with introduction
  • Q2. Asked about projects
  • Q3. Asked Architecture related questions and design pattern related questions
  • Q4. If you have 1 million requests how will you manage that
  • Ans. 

    I would use load balancing, caching, and scaling techniques to manage the 1 million requests.

    • Implement load balancing to distribute requests evenly across multiple servers.

    • Utilize caching to store frequently accessed data and reduce response times.

    • Scale horizontally by adding more servers to handle the increased load.

    • Optimize code and database queries to improve performance.

    • Monitor system performance and make adjustmen

  • Answered by AI
  • Q5. React vs SAP UI5
  • Ans. 

    React is a popular JavaScript library for building user interfaces, while SAP UI5 is a framework for developing enterprise-ready web applications.

    • React is more flexible and widely used in the industry.

    • SAP UI5 is specifically designed for SAP applications and has built-in support for SAP technologies.

    • React has a larger community and ecosystem with more resources and libraries available.

    • SAP UI5 provides a consistent user...

  • Answered by AI
  • Q6. Node VS JAVA
  • Ans. 

    Node.js is a runtime environment for executing JavaScript code outside of a browser, while Java is a general-purpose programming language often used for building enterprise applications.

    • Node.js is single-threaded and event-driven, making it ideal for handling asynchronous operations like I/O operations.

    • Java is a statically typed language with a strong emphasis on object-oriented programming, making it suitable for larg...

  • Answered by AI
  • Q7. Multitenancy in sap btp
  • Ans. 

    Multitenancy in SAP BTP allows multiple customers to share the same application instance while keeping their data isolated.

    • Multitenancy allows multiple customers (tenants) to use the same application instance.

    • Each tenant's data is isolated and secure from other tenants.

    • Tenants can customize their own settings, branding, and configurations within the shared application.

    • SAP BTP provides tools and features to manage multi...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Arrays and strings - 90 mins

Round 2 - Coding Test 

Create Modules, railway reservation system - 60 mins

Round 3 - Technical 

(5 Questions)

  • Q1. Difference between hashmap and hasptable
  • Q2. Why typescript over javascript
  • Q3. Find the percentage of increace in the quantity of item after making it price 20% extra
  • Q4. What is normalization
  • Q5. Date and time api available

Gibraltar Technologies Interview FAQs

How many rounds are there in Gibraltar Technologies Senior Software Engineer 2 interview?
Gibraltar Technologies interview process usually has 3 rounds. The most common rounds in the Gibraltar Technologies interview process are Technical and HR.
What are the top questions asked in Gibraltar Technologies Senior Software Engineer 2 interview?

Some of the top questions asked at the Gibraltar Technologies Senior Software Engineer 2 interview -

  1. Question on spring boot, singleton class, why we need final variables or cl...read more
  2. Load balancing, questions on deployment, which server is used in your proj...read more
  3. Question on core Java collection, multi threading,concurrent collection ,iterat...read more

Tell us how to improve this page.

Gibraltar Technologies Senior Software Engineer 2 Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Senior Software Engineer
20 salaries
unlock blur

₹5 L/yr - ₹9.1 L/yr

Technical Lead
20 salaries
unlock blur

₹10.5 L/yr - ₹34 L/yr

Senior Executive
16 salaries
unlock blur

₹2 L/yr - ₹6.9 L/yr

Software Developer
13 salaries
unlock blur

₹2 L/yr - ₹11.7 L/yr

Senior Associate
13 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Explore more salaries
Compare Gibraltar Technologies with

Teleperformance

3.9
Compare

Amazon

4.1
Compare

iEnergizer

4.6
Compare

Deloitte

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