Upload Button Icon Add office photos

Filter interviews by

Giant Eagle Software Engineer Interview Questions and Answers

Updated 18 Oct 2022

Giant Eagle Software Engineer Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed in Apr 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic dsa algo apti and english

Round 2 - Coding Test 

Easy string questions from leetcode

Interview Preparation Tips

Interview preparation tips for other job seekers - Only communication skills matter.... Asked me to show my project and complex personality questions

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Mar 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Virtual Interview - 3 rounds same day [DS & Algo, Java, Architecture/Product]

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good. Focus on problem solving and speed to clear 1st Round. Strong Java fundamentals upto Java 8,9 is enough to clear 2nd Round. Basic Design and Product Architecture knowledge can help clear the final round.

Believe yourself and keep working !!

Interview Preparation Tips

General Tips: It's not a World Cup final and you're not Tendulkar. So relax, you don't have the burden of a nation's expectation on you. If you've managed to understand the fundamentals of algorithms, data structures, OS etc., cracking interviews shouldn't be hard. If you've not, then I guess you need at least a couple of months of intense preparation.
College Name: NIT SURATHKAL

I applied via LinkedIn and was interviewed in Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How you will design an E-Commerce system
  • Ans. 

    An E-Commerce system can be designed by identifying user requirements, selecting appropriate technologies, and implementing secure payment and shipping methods.

    • Identify user requirements and create user stories

    • Select appropriate technologies for front-end, back-end, and database

    • Implement secure payment and shipping methods

    • Design a user-friendly interface with easy navigation

    • Ensure scalability and performance of the sys...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Initial interview was a telephonic interview for 30 minutes. Basic question and 1 question was how you will design an e-commerce system. Difficulty level was average.
Second round was an assignment .
Third round was again a technical interview

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. Vanilla JS questions.
Round 2 - Technical 

(1 Question)

  • Q1. Basic React questions
Round 3 - Behavioral 

(1 Question)

  • Q1. Past experiences and projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep basics good.
Promises, Callbacks, Async Await along with code is asked.
SImple React app to create from scratch.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions about JavaScript and React
Round 2 - Group Discussion 

Usually they judge on basis of your behaviour and attitude.

Round 3 - HR 

(1 Question)

  • Q1. Discussion about the CTC

I applied via Company Website and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Internal working of hash map
  • Ans. 

    Hash map is a data structure that stores key-value pairs and uses a hash function to map keys to indices in an array.

    • Hash function is used to convert the key into an index in the array

    • Collisions occur when two keys map to the same index, which can be resolved using separate chaining or open addressing

    • Load factor is the ratio of number of elements to the size of the array, and affects the performance of hash map

    • Operatio...

  • Answered by AI
  • Q2. Core Java Concepts
  • Q3. SQL queries to get 2nd highest salary
  • Ans. 

    SQL query to get 2nd highest salary

    • Use ORDER BY and LIMIT to get the highest salary

    • Use subquery to exclude the highest salary and get the 2nd highest

    • Example: SELECT salary FROM employees ORDER BY salary DESC LIMIT 1,1

  • Answered by AI
  • Q4. Authentication and Authorisation
  • Q5. Data structures and algorithms questions
  • Q6. Questions on design side

Interview Preparation Tips

Interview preparation tips for other job seekers - It was very good experience giving interview at Lowe's. Recruitment process is very smooth.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
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 

Two DSA ques were asked. One easy and one medium.

Round 3 - Technical 

(1 Question)

  • Q1. Project discussion and some DSA ques
Round 4 - HR 

(1 Question)

  • Q1. Standard hr question
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Internals of hashset
  • Ans. 

    HashSet is a collection that stores unique elements using a hash table.

    • Uses hashing to store elements

    • Does not allow duplicate elements

    • Provides constant-time performance for basic operations like add, remove, contains

  • Answered by AI
  • Q2. Deques based questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Projects discussion from beginning
  • Q2. How do you resolve conflicts?
  • Ans. 

    I resolve conflicts by actively listening, understanding all perspectives, finding common ground, and proposing solutions.

    • Actively listen to all parties involved

    • Understand each perspective and the underlying reasons for conflict

    • Find common ground and areas of agreement

    • Propose solutions that address the concerns of all parties

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before Oct 2021. There were 4 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. What is the difference between virtual and real DOM?
  • Ans. 

    Virtual DOM is a lightweight copy of the real DOM, used for efficient updates.

    • Real DOM updates are slow and expensive, while virtual DOM updates are fast and efficient.

    • Virtual DOM is used in React to update the UI without reloading the entire page.

    • Real DOM is the actual HTML document, while virtual DOM is a JavaScript object.

    • Virtual DOM compares the previous and current states of the UI to determine the minimum number ...

  • Answered by AI
  • Q2. What is the difference between var, let and const?
  • Ans. 

    var is function scoped, let and const are block scoped. var can be redeclared and reassigned, let can be reassigned but not redeclared, const cannot be reassigned or redeclared.

    • var is hoisted to the top of the function, let and const are not

    • var can be redeclared within the same scope, let and const cannot

    • let and const have a temporal dead zone where they cannot be accessed before they are declared

    • const cannot be reassi...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Optimization techniques in React.
  • Ans. 

    Optimization techniques in React include code splitting, lazy loading, and memoization.

    • Code splitting: breaking down the code into smaller chunks to reduce load time.

    • Lazy loading: loading components only when they are needed, reducing initial load time.

    • Memoization: caching the results of expensive function calls to improve performance.

    • Using shouldComponentUpdate to prevent unnecessary re-renders.

    • Using React.PureCompone...

  • Answered by AI
  • Q2. All about flexbox modal in CSS.
Round 4 - Behavioral 

(1 Question)

  • Q1. Agile methodology and your previous projects
  • Ans. 

    I have experience working with Agile methodology in my previous projects.

    • I have worked in Scrum and Kanban frameworks.

    • I have experience in conducting daily stand-up meetings, sprint planning, and retrospectives.

    • I have worked in cross-functional teams and have experience in collaborating with product owners and stakeholders.

    • I have used tools like Jira and Trello to manage tasks and track progress.

    • In one of my previous p...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Lowe's Software Engineer interview:
  • React.Js
  • Javascript
  • CSS
Interview preparation tips for other job seekers - Prepare basics of React and JavaScript properly and be thorough with your projects you have worked on.

Skills evaluated in this interview

Giant Eagle Interview FAQs

How many rounds are there in Giant Eagle Software Engineer interview?
Giant Eagle interview process usually has 3 rounds. The most common rounds in the Giant Eagle interview process are Resume Shortlist, Aptitude Test and Coding Test.
How to prepare for Giant Eagle 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 C#, .Net, CSS, HTML and RDBMS.

Tell us how to improve this page.

Fast track your campus placements

View all
Giant Eagle Software Engineer Salary
based on 4 salaries
₹12.7 L/yr - ₹14.3 L/yr
60% more than the average Software Engineer Salary in India
View more details
Analyst
26 salaries
unlock blur

₹6.7 L/yr - ₹11 L/yr

Senior Analyst
24 salaries
unlock blur

₹8 L/yr - ₹22.5 L/yr

Lead Engineer
18 salaries
unlock blur

₹24 L/yr - ₹38 L/yr

Senior Software Engineer
17 salaries
unlock blur

₹15 L/yr - ₹29 L/yr

Associate Analyst
11 salaries
unlock blur

₹5.6 L/yr - ₹9.8 L/yr

Explore more salaries
Compare Giant Eagle with

Reliance Retail

3.9
Compare

Walmart

3.7
Compare

DMart

3.9
Compare

Future Group

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