Upload Button Icon Add office photos

Filter interviews by

Giant Eagle Senior Software Engineer Interview Questions and Answers

Updated 26 Oct 2022

Giant Eagle Senior Software Engineer Interview Experiences

1 interview found

I applied via Recruitment Consulltant and was interviewed in Apr 2022. There were 5 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 

(1 Question)

  • Q1. C# OOPS related questions, Design Patterns and simple coding questions such as Fizz Buzz and Palindrome for which I had to share my screen code and run the solution and explain the Time & Space complexity ...
Round 3 - Technical 

(1 Question)

  • Q1. Very Easy Technical round with a panel of 3 from US in which easy coding questions on List etc were asked to program and run on an online compiler
Round 4 - Technical 

(1 Question)

  • Q1. Director Round with an Indian guy sitting in US - How to do central logging in a multi server setup? I answered by saying we can use AWS Cloudwatch to achieve this for monitoring analysis & logging or we c...
Round 5 - HR 

(1 Question)

  • Q1. Had two HR rounds - They said that they cannot give the salary which I had initially shared with them as my expected salary. If that was the case then why waste someone's time, they could have told me this...

Interview Preparation Tips

Interview preparation tips for other job seekers - Better clear up the expected salary before itself, so that you don't end up getting your time wasted.

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Aug 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Linked list implementation with second largest and second smallest
  • Ans. 

    Implement a linked list with methods to find the second largest and second smallest elements.

    • Create a linked list class with methods to insert elements, find second largest, and find second smallest.

    • Traverse the linked list to find the largest and smallest elements, then find the second largest and second smallest.

    • Handle edge cases such as empty list or lists with less than 2 elements.

    • Consider using a priority queue to...

  • Answered by AI
  • Q2. Max Frequency Character in a string
  • Ans. 

    Find the character with the highest frequency in a given string.

    • Iterate through the string and count the frequency of each character using a hashmap.

    • Track the character with the highest frequency as you iterate.

    • Return the character with the highest frequency at the end.

  • Answered by AI
  • Q3. Longest common subsequence print
  • Ans. 

    Find and print the longest common subsequence in an array of strings

    • Use dynamic programming to find the longest common subsequence

    • Iterate through the array of strings to find common characters

    • Print the longest common subsequence found

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Solid design principles
  • Ans. 

    Solid design principles are fundamental guidelines for designing software that is maintainable, scalable, and efficient.

    • Follow the SOLID principles (Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, Dependency Inversion)

    • Use design patterns like Factory, Singleton, Observer, etc. to solve common design problems

    • Keep code modular, reusable, and easy to understand

    • Separate concerns and avoid ti

  • Answered by AI
  • Q2. Snake and Ladder LLD
  • Q3. Executor Service

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers kind of works on predefined knowledge. Don't use logic just provide them the basic answers and it will work. Interviewers aren't knowledgeable. You'll feel a gap in their understanding if you try to go little different.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jun 2024. There were 4 interview rounds.

Round 1 - Coding Test 

DSA medium and Java Coding Questions

Round 2 - Coding Test 

Frontend coding questions in Js and React js

Round 3 - One-on-one 

(2 Questions)

  • Q1. What are Hooks and life cycle in React
  • Q2. Behavioural questions like leadership etc
Round 4 - HR 

(2 Questions)

  • Q1. Salary Expectations
  • Q2. Company Values and Mission
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is ReactQuery?
  • Ans. 

    ReactQuery is a library for managing server state in React applications.

    • Provides hooks for fetching, caching, and updating data from APIs

    • Automatically handles caching, background refetching, and stale data management

    • Improves performance by reducing unnecessary network requests

  • Answered by AI
  • Q2. Have you used useMemo, useCallback
  • Ans. 

    Yes, I have used useMemo and useCallback in React applications.

    • Used useMemo to memoize expensive calculations and prevent unnecessary re-renders.

    • Used useCallback to memoize functions and prevent unnecessary re-creations.

    • Example: const memoizedValue = useMemo(() => calculateValue(a, b), [a, b]);

    • Example: const memoizedFunction = useCallback(() => { doSomething(a, b); }, [a, b]);

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

2 coding questions were asked one on string to remove the nested parantheses and form string.
Second question was- I was given a mapping array and a num array
Mapping - {6,2,0,7,1,8,3,4,5,9}
NUM- {996, 25, 225}
Output- 553, 08, 008}

Round 2 - Technical 

(4 Questions)

  • Q1. Callback method in java and alternatives
  • Ans. 

    Callback method in Java allows passing a function as an argument to another function. Alternatives include using interfaces, lambda expressions, and method references.

    • Callback method allows passing a function as an argument to another function

    • Alternatives include using interfaces, lambda expressions, and method references

    • Example: Using Runnable interface in Java to pass a function as a callback

  • Answered by AI
  • Q2. Hashmap vs concurrent hashmap
  • Ans. 

    Hashmap is not thread-safe, while ConcurrentHashMap is thread-safe and allows for concurrent access.

    • Hashmap is not thread-safe and can lead to race conditions in a multi-threaded environment.

    • ConcurrentHashMap is thread-safe and allows for concurrent access by multiple threads without the need for external synchronization.

    • ConcurrentHashMap achieves thread-safety by dividing the map into segments, each of which can be lo...

  • Answered by AI
  • Q3. Different method to invoke methode with using constructor or variable
  • Ans. 

    You can invoke a method using a constructor by creating an instance of the class and calling the method, or by using a variable that holds a reference to the method.

    • Invoke method using constructor: ClassName obj = new ClassName(); obj.methodName();

    • Invoke method using variable: ClassName obj = new ClassName(); Runnable r = obj::methodName; r.run();

  • Answered by AI
  • Q4. Ask many scenario based questions

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Its a normal questions which usually service based company asked
  • Q2. Overall it is good
Round 2 - Case Study 

Ask you to implement any solution like caching using LRU or LFU

Round 3 - Assignment 

Its a manager round where they discuss about u=your past experiences and also they tell you about the project

Round 4 - HR 

(2 Questions)

  • Q1. I think they gave you only based on your previous offer.
  • Q2. Negotiate well with them . Don't accept just for the sake of an offer because further they will not change it until/ unless it is filling position.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(1 Question)

  • Q1. How can fragments communicate among themselves
  • Ans. 

    Fragments can communicate among themselves using interfaces, shared view models, and activity callbacks.

    • Use interfaces to define communication contract between fragments

    • Implement the interface in the hosting activity and pass it to the fragments

    • Use shared view models to share data between fragments

    • Use activity callbacks like onActivityResult() to communicate between fragments

  • Answered by AI
Round 2 - Coding Test 

Find cycle in a linked list

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Design patterns
  • Q2. IIS services questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Tree question, Traversing tree and finding node on given condition
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Questions about Garbage Collector, Internal Hash map workflow, Functional interface

Giant Eagle Interview FAQs

How many rounds are there in Giant Eagle Senior Software Engineer interview?
Giant Eagle interview process usually has 5 rounds. The most common rounds in the Giant Eagle interview process are Technical, HR and Resume Shortlist.
How to prepare for Giant Eagle Senior Software Engineer 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 Giant Eagle. The most common topics and skills that interviewers at Giant Eagle expect are Automation, Oracle Financials, SQL, Application Support and Bi Publisher.
What are the top questions asked in Giant Eagle Senior Software Engineer interview?

Some of the top questions asked at the Giant Eagle Senior Software Engineer interview -

  1. Director Round with an Indian guy sitting in US - How to do central logging in ...read more
  2. C# OOPS related questions, Design Patterns and simple coding questions such as ...read more
  3. Very Easy Technical round with a panel of 3 from US in which easy coding questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Walmart Interview Questions
3.8
 • 397 Interviews
DMart Interview Questions
4.0
 • 391 Interviews
Tata Group Interview Questions
4.2
 • 357 Interviews
Vishal Mega Mart Interview Questions
3.8
 • 153 Interviews
V-Mart Interview Questions
4.2
 • 141 Interviews
Landmark Group Interview Questions
4.0
 • 141 Interviews
Lowe's Interview Questions
4.2
 • 128 Interviews
Target Interview Questions
4.2
 • 115 Interviews
View all

Fast track your campus placements

View all
Giant Eagle Senior Software Engineer Salary
based on 15 salaries
₹19.5 L/yr - ₹29 L/yr
68% more than the average Senior Software Engineer Salary in India
View more details

Giant Eagle Senior Software Engineer Reviews and Ratings

based on 4 reviews

2.1/5

Rating in categories

1.3

Skill development

3.0

Work-Life balance

2.6

Salary & Benefits

1.0

Job Security

2.6

Company culture

2.0

Promotions/Appraisal

1.3

Work Satisfaction

Explore 4 Reviews and Ratings
Analyst
26 salaries
unlock blur

₹6.7 L/yr - ₹11 L/yr

Senior Analyst
23 salaries
unlock blur

₹8 L/yr - ₹22.5 L/yr

Senior Software Engineer
18 salaries
unlock blur

₹15 L/yr - ₹29 L/yr

Lead Engineer
18 salaries
unlock blur

₹21 L/yr - ₹34.3 L/yr

Senior Pricing Analyst
10 salaries
unlock blur

₹6.5 L/yr - ₹15 L/yr

Explore more salaries
Compare Giant Eagle with

Reliance Retail

3.9
Compare

Future Group

4.3
Compare

Spencer's Retail

3.8
Compare

DMart

4.0
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