Upload Button Icon Add office photos

Grey Orange

Compare button icon Compare button icon Compare

Filter interviews by

Grey Orange Senior Software Engineer Interview Questions, Process, and Tips

Updated 14 Aug 2024

Top Grey Orange Senior Software Engineer Interview Questions and Answers

  • Q1. Prime Numbers within a Range Given an integer N, determine and print all the prime numbers between 2 and N, inclusive. Input: Integer N Output: Prime numbers printed on ...read more
  • Q2. Anagram Substring Search Given two strings 'STR' and 'PTR', identify all starting indices of 'PTR' anagram substrings in 'STR'. Two strings are anagrams if one can be re ...read more
  • Q3. What are some common testing questions related to Linux and operating systems?

Grey Orange Senior Software Engineer Interview Experiences

3 interviews found

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

I applied via Recruitment Consulltant and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Coding Test 

It started with basic introduction, than move ahead with Java, Spring boot question in the end, he asked one leetcode medium question based on DP . Ques : Find a minimum number of jumps required to reach the end of the array, and each index , it can jump arr[index] time at max, you need to calculate minimum number of steps required to reach at the end.

Interview Preparation Tips

Interview preparation tips for other job seekers - Java , Spring boot and Data structures
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 dsa questions need to be implemented in 1hr

Round 2 - Technical 

(1 Question)

  • Q1. Projects you have worked on. 1. vector implementation in C++
  • Ans. 

    Implemented vector data structure in C++

    • Used templates to create a generic vector class

    • Implemented basic vector operations like push, pop, insert, erase

    • Optimized vector resizing by using exponential growth

    • Used iterators to traverse the vector elements

    • Implemented vector algorithms like sort and binary search

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Compensation, expected and other document submitting.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for dsa and puzzles. Communicate with interviewer

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

Q1. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q3. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q4. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q5. Pascal's Triangle Construction You are provided with an integer ' ... read more

I was interviewed in Oct 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

  • Q1. 

    Prime Numbers within a Range

    Given an integer N, determine and print all the prime numbers between 2 and N, inclusive.

    Input:

    Integer N

    Output:

    Prime numbers printed on separate lines

    Example:

    Input...
  • Ans. 

    Generate and print all prime numbers between 2 and N, inclusive.

    • Iterate from 2 to N and check if each number is prime

    • A prime number is only divisible by 1 and itself

    • Print each prime number on a new line

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

  • Q1. 

    Anagram Substring Search

    Given two strings 'STR' and 'PTR', identify all starting indices of 'PTR' anagram substrings in 'STR'. Two strings are anagrams if one can be rearranged to form the other.

    Input:

    ...
  • Ans. 

    Implement a function to find all starting indices of anagram substrings of a given string in another string.

    • Create a frequency map of characters in the 'PTR' string.

    • Use a sliding window approach to check for anagrams in 'STR'.

    • Return the starting indices of anagram substrings found.

    • Example: For input 'BACDGABCD' and 'ABCD', output should be [0, 5].

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

  • Q1. What are some common testing questions related to Linux and operating systems?
  • Ans. 

    Common testing questions related to Linux and operating systems

    • What are the different types of testing that can be performed on a Linux operating system?

    • How do you test the compatibility of software with different Linux distributions?

    • Can you explain the process of testing kernel modules in a Linux environment?

    • What tools and techniques do you use for performance testing on Linux systems?

    • How do you ensure the security an

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Senior Software Engineer in GurgaonEligibility criteriaNoGreyOrange interview preparation:Topics to prepare for the interview - Python, data structures and algorithm, sql, testing, automationTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : practice coding
Tip 2 : be thorough with your resume

Application resume tips for other job seekers

Tip 1 : have good projects
Tip 2 : fulfill the required tech stack

Final outcome of the interviewSelected

Skills evaluated in this interview

Senior Software Engineer Jobs at Grey Orange

View all

Interview questions from similar companies

I applied via Approached by Company and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - System test 

(1 Question)

  • Q1. Advantage and disadvantage of framework.
  • Ans. 

    Frameworks provide structure and pre-built components for software development, but can also limit flexibility and require learning curve.

    • Advantage: Provides structure and pre-built components for faster development

    • Advantage: Can improve code quality and maintainability

    • Disadvantage: Can limit flexibility and customization

    • Disadvantage: Requires learning curve and potential dependency issues

    • Example: ReactJS provides a fr...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is Oops? Advantage and disadvantage
  • Ans. 

    Oops stands for Object-Oriented Programming. It is a programming paradigm that uses objects to represent real-world entities.

    • Advantages: code reusability, modularity, encapsulation, inheritance, polymorphism

    • Disadvantages: complexity, steep learning curve, performance overhead

    • Example: creating a class 'Car' with properties like 'make', 'model', and 'year', and methods like 'start_engine' and 'stop_engine'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics in server side and client side coding

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. First-round was an online test on hacker rank. There were 4 questions related to the array, string, and tree.
  • Q2. Create an immutable class.
  • Ans. 

    An immutable class is a class whose instances cannot be modified after creation.

    • Make all fields private and final

    • Don't provide any setter methods

    • Ensure that any mutable objects passed to the constructor are defensively copied

    • Make the class final so that it cannot be subclassed

  • Answered by AI
  • Q3. Create a Singelton pattern.
  • Ans. 

    Singleton pattern ensures only one instance of a class is created and provides a global point of access to it.

    • Create a private constructor to prevent direct instantiation of the class.

    • Create a private static instance of the class.

    • Create a public static method to access the instance, and create the instance if it doesn't exist.

    • Ensure thread safety by using synchronized keyword or double-checked locking.

  • Answered by AI
  • Q4. Difference between Vector and ArrayList.
  • Ans. 

    Vector is synchronized and ArrayList is not. Vector is thread-safe and ArrayList is not.

    • Vector is a legacy class and ArrayList is a part of the Java Collection Framework.

    • Vector is synchronized which means only one thread can access it at a time, while ArrayList is not.

    • Vector is thread-safe which means it can be used in a multi-threaded environment, while ArrayList is not.

    • Vector is slower than ArrayList because of synch...

  • Answered by AI
  • Q5. Create Linked List without using the internal library and provide the functionality of add delete find.
  • Ans. 

    Create Linked List without using internal library and provide add, delete, find functionality.

    • Create a Node class with data and next pointer

    • Create a LinkedList class with head pointer and methods to add, delete, and find nodes

    • Use a loop to traverse the list and perform operations

    • Handle edge cases such as adding to an empty list or deleting the head node

  • Answered by AI
  • Q6. One question was related to binary search.
  • Q7. Few more questions related to java.
  • Q8. The architecture of the current system.
  • Ans. 

    The current system follows a microservices architecture.

    • The system is divided into multiple independent services.

    • Each service has its own database and communicates with other services through APIs.

    • The architecture allows for scalability and flexibility.

    • Examples of microservices used in the system include user authentication, payment processing, and inventory management.

  • Answered by AI
  • Q9. Find the total no of the island in a 2d matrix. Working code was required.
  • Ans. 

    Find the total no of islands in a 2D matrix.

    • Use DFS or BFS to traverse the matrix.

    • Mark visited cells to avoid repetition.

    • Count the number of islands found.

  • Answered by AI
  • Q10. Find loop in a linked list.
  • Ans. 

    Loop detection in a linked list.

    • Use two pointers, one moving at twice the speed of the other.

    • If there is a loop, the faster pointer will eventually catch up to the slower one.

    • If there is no loop, the faster pointer will reach the end of the list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Before the interview brush up on the Linked list, Tree, and array. This is a common interview problem asked in Snapdeal.

Skills evaluated in this interview

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

It is simple MCQ machine test and test result is generated then forwarded for First round which is telephonic round.

Round 2 - Coding Test 

This round is on Zoom and will try to check your coding knowledge. Like your role in existing project in current company etc. Totally project related

Round 3 - HR 

(1 Question)

  • Q1. This is for your joining dates a
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2022. There were 3 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. They asked questions related your project and technical questions
Round 3 - Coding Test 

You have to do programming test. This is based on logical question.

I applied via Approached by Company and was interviewed before Oct 2021. There were 6 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 - Coding Test 

Simple programming test from mettl website

Round 3 - Technical 

(2 Questions)

  • Q1. First tech interview is also more of a coding round.
  • Q2. Questions on data structures in Java Multithreading Immutability
Round 4 - Technical 

(1 Question)

  • Q1. 2nd technical interview more of conceptual questions on related technology
Round 5 - Technical 

(1 Question)

  • Q1. Tech manager round based on previous project and scenario based questions
Round 6 - HR 

(1 Question)

  • Q1. Salary discuss Why you want to join paytm

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared before interview
Go through basic programming questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in May 2023.

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 - Coding Test 

Some mcq questions on Java and 2 DSA medium questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Spring boot , Java and DSA questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Design BookMyShow low level design
  • Ans. 

    BookMyShow low level design for ticket booking system

    • Use microservices architecture for scalability and flexibility

    • Implement user authentication and authorization for secure transactions

    • Utilize databases for storing user and event information

    • Include payment gateway integration for seamless transactions

  • Answered by AI
Round 5 - One-on-one 

(1 Question)

  • Q1. Design lru cache and code
  • Ans. 

    LRU cache is a data structure that stores a fixed number of items and removes the least recently used item when the cache is full.

    • Use a combination of a doubly linked list and a hashmap to implement the LRU cache.

    • When an item is accessed, move it to the front of the linked list to mark it as the most recently used item.

    • When adding a new item, check if the cache is full. If it is full, remove the least recently used ite...

  • Answered by AI

Skills evaluated in this interview

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 - Technical 

(1 Question)

  • Q1. Sharding, sql vs nosql, project discussion and tradoffs
Round 3 - HR 

(1 Question)

  • Q1. Behavior and culture questions

Grey Orange Interview FAQs

How many rounds are there in Grey Orange Senior Software Engineer interview?
Grey Orange interview process usually has 2-3 rounds. The most common rounds in the Grey Orange interview process are Coding Test, Resume Shortlist and Technical.
How to prepare for Grey Orange 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 Grey Orange. The most common topics and skills that interviewers at Grey Orange expect are Python, Algorithms, Automation Testing, Brs and C++.
What are the top questions asked in Grey Orange Senior Software Engineer interview?

Some of the top questions asked at the Grey Orange Senior Software Engineer interview -

  1. projects you have worked on. 1. vector implementation in ...read more
  2. Compensation, expected and other document submitti...read more

Tell us how to improve this page.

Grey Orange Senior Software Engineer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more
Grey Orange Senior Software Engineer Salary
based on 56 salaries
₹13.1 L/yr - ₹31 L/yr
61% more than the average Senior Software Engineer Salary in India
View more details

Grey Orange Senior Software Engineer Reviews and Ratings

based on 3 reviews

2.4/5

Rating in categories

2.7

Skill development

1.6

Work-life balance

2.7

Salary

2.1

Job security

1.0

Company culture

2.1

Promotions

2.1

Work satisfaction

Explore 3 Reviews and Ratings
Senior Engineer - Software Support

Gurgaon / Gurugram

1-2 Yrs

Not Disclosed

Explore more jobs
Senior Engineer
71 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
56 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
55 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
52 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Member of Technical Staff
46 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Grey Orange with

Flipkart

4.0
Compare

Delhivery

3.9
Compare

Zomato

3.8
Compare

Swiggy

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