Upload Button Icon Add office photos

Filter interviews by

Grey Orange Interview Questions, Process, and Tips

Updated 6 Jan 2025

Top Grey Orange Interview Questions and Answers

View all 26 questions

Grey Orange Interview Experiences

Popular Designations

37 interviews found

I was interviewed in Oct 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

  • Q1. All prime numbers

    Given an integer N, print all the prime numbers that lie in the range 2 to N (both inclusive).

    Input Format :
    Integer N
    
    Output Format :
    ...
  • Ans. 

    Wrote a for loop with end limit as √n

  • Answered by CodingNinjas
Round 2 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

  • Q1. Anagram Substring Search

    Given two strings ‘STR’ and ‘PTR’. Find all the starting indices of ‘PTR’ anagram substring in ‘STR’. Two strings are anagram if and only if one string can be converted into anothe...

  • Ans. 

    Wrote a simple code to find n strings

  • Answered by CodingNinjas
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

  • Q1. Operating System Based Question

    Linux questions. Testing questions

  • Ans. 

    Tip 1 : learn scripting
    Tip 2 : be thorough with resume

  • Answered by CodingNinjas

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 Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Coding Test 

Python n Linux SQL queries

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare SQL, python n Linux.

Senior Implementation Engineer Interview Questions asked at other Companies

Q1. How charging happen for subscriber?
View answer (1)
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 May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Coding round with dictionary implementation

Round 2 - Coding Test 

Coding round with vector implementation and puzzle

Round 3 - HR 

(1 Question)

  • Q1. About work and passion.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well for basics

Senior Software Development Engineer Interview Questions asked at other Companies

Q1. Level order traversal of a binary search tree from leaf to root? Print in a single line or Print new line for every level.
View answer (3)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. System architecture
  • Q2. Dict ,list and other questions

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Grey Orange interview questions for popular designations

 Senior Software Engineer

 (3)

 Software Developer

 (3)

 Software Engineer

 (3)

 Project Manager

 (2)

 Analyst

 (1)

 Application Support Engineer

 (1)

 Associate Director

 (1)

 Change Release Manager

 (1)

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

I applied via Campus Placement and was interviewed before Jul 2022. 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 - Coding Test 

Medium level coding questions were asked

Round 3 - Technical 

(3 Questions)

  • Q1. Implementation of Breadth First Search
  • Ans. 

    Breadth First Search is a graph traversal algorithm that explores all the neighbor nodes at the present depth prior to moving on to the nodes at the next depth level.

    • Start by visiting the root node and then visit all the neighbor nodes at the present depth level before moving on to the nodes at the next depth level.

    • Use a queue data structure to keep track of the nodes to be visited.

    • Mark each node as visited to avoid re...

  • Answered by AI
  • Q2. Implementation of Depth First Search
  • Ans. 

    Depth First Search is a graph traversal algorithm that explores as far as possible along each branch before backtracking.

    • Start at a node and explore as far as possible along each branch before backtracking

    • Use a stack to keep track of nodes to visit

    • Mark visited nodes to avoid revisiting them

    • Can be implemented recursively or iteratively

  • Answered by AI
  • Q3. Implementation of Inorder Traversal of a Binary Tree
  • Ans. 

    Inorder traversal of a binary tree involves visiting the left subtree, then the root, and finally the right subtree.

    • Start at the root node

    • Recursively traverse the left subtree

    • Visit the current node

    • Recursively traverse the right subtree

    • Repeat until all nodes are visited

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Swap Alternative nodes of a Linked list
  • Ans. 

    Swap alternative nodes of a linked list

    • Iterate through the linked list and swap the data of alternate nodes

    • Use temporary variables to store data during swapping

    • Ensure to handle cases where the linked list has an odd number of nodes

  • Answered by AI
  • Q2. Reverse a Linked list
  • Ans. 

    Reverse a linked list by changing the next pointers of each node

    • Start with three pointers: current, prev, and next

    • Iterate through the linked list, updating the next pointer of each node to point to the previous node

    • Update prev, current, and next pointers for each iteration

    • Example: 1 -> 2 -> 3 -> 4 -> null, after reversing: 4 -> 3 -> 2 -> 1 -> null

  • Answered by AI

Skills evaluated in this interview

Software Development Engineer Interview Questions asked at other Companies

Q1. Given an acyclic graph of a city where each edge represents a road in the city and each vertex represents an crossing. Write an algo to find out the minimum number of vertices at which a policemen will be kept so that all the roads are cove... read more
View answer (2)

Get interview-ready with Top Grey Orange Interview Questions

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

I applied via Naukri.com and was interviewed before Jul 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(4 Questions)

  • Q1. What is NPD process?
  • Ans. 

    NPD process stands for New Product Development process, which is a systematic approach to bringing a new product to market.

    • Idea generation and screening

    • Concept development and testing

    • Business analysis

    • Product development

    • Test marketing

    • Commercialization

  • Answered by AI
  • Q2. What is P2P cycle ?
  • Ans. 

    P2P cycle stands for Procure to Pay cycle, which is the process of obtaining goods or services from a supplier and paying for them.

    • P2P cycle involves requisitioning, purchasing, receiving, and paying for goods or services.

    • It starts with a purchase requisition, followed by supplier selection, purchase order creation, goods receipt, invoice verification, and payment processing.

    • Efficient P2P cycle management helps in cont...

  • Answered by AI
  • Q3. What is the process of Pcb Development
  • Ans. 

    The process of PCB development involves designing the circuit, selecting components, creating the layout, prototyping, testing, and final production.

    • Designing the circuit based on the requirements and functionality

    • Selecting components such as resistors, capacitors, and integrated circuits

    • Creating the layout using software like Altium Designer or Eagle

    • Prototyping the PCB to test its functionality and performance

    • Testing ...

  • Answered by AI
  • Q4. What is process of wire harness development
  • Ans. 

    Wire harness development involves designing, prototyping, testing, and manufacturing electrical wiring systems for various applications.

    • Designing the wire harness layout based on the electrical requirements and space constraints

    • Prototyping the wire harness to ensure proper fit and functionality

    • Testing the wire harness for electrical continuity, insulation resistance, and durability

    • Manufacturing the wire harness using a...

  • Answered by AI

Purchase Engineer Interview Questions asked at other Companies

Q1. If yes, explain what a P2P cycle?
View answer (3)

Jobs at Grey Orange

View all
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Feb 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. The interviewer asked Basic SQL and Linux OS-related questions.
Round 3 - Technical 

(2 Questions)

  • Q1. The interviewer asked questions regarding projects and experience.
  • Q2. The interviewer asked some aptitude and logical reasoning questions.
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiations.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good organization for freshers and people with no/limited experience.

Top Grey Orange Software Engineer Interview Questions and Answers

Q1. Print PermutationsGiven an input string (STR), print all possible permutations of the input string. Note: The input string may contain the same characters, so there will also be the same permutations. The order of permutations doesn’t matte... read more
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)

Software Engineer Interview Questions & Answers

user image CodingNinjas

posted on 16 Sep 2021

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Easy

The test had it's webcam on, we were not allowed to go out of the frame.

  • Q1. Nth Fibonacci Number

    Nth term of Fibonacci series F(n), where F(n) is a function, is calculated using the following formula -

        F(n) = F(n-1) + F(n-2), 
        Where, F(1) = F(2) = 1
    

    Provided N you have...

  • Ans. 

    The program calculates the Nth Fibonacci number using a recursive formula.

    • The Fibonacci series starts with 1, 1, and each subsequent number is the sum of the two preceding numbers.

    • The program uses a recursive function to calculate the Nth Fibonacci number.

    • The time complexity of the program is O(2^N), which can be optimized using memoization or dynamic programming.

  • Answered by AI
  • Q2. Longest Consecutive Sequence

    You are given an unsorted array/list 'ARR' of 'N' integers. Your task is to return the length of the longest consecutive sequence.

    The consecutive sequence i...

  • Ans. 

    The task is to find the length of the longest consecutive sequence in an unsorted array of integers.

    • Sort the array to bring consecutive numbers together

    • Iterate through the sorted array and keep track of the current consecutive sequence length

    • Update the maximum length if a longer sequence is found

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Medium

The interview was online from home.

  • Q1. Technical Questions

    Data Structures and OOPS Problems
    The interview contained mostly data structures and oops problems. I was asked to implement the node class of linked list and queue using circular array. ...

  • Ans. 

    The interview focused on data structures and object-oriented programming concepts.

    • Implementing the node class of a linked list and queue using a circular array

    • Explaining polymorphism in detail, including overriding, overloading, and runtime polymorphism

    • Providing examples to illustrate the concepts

    • Answering other questions related to data structures and OOPS

  • Answered by AI
  • Q2. Reverse the String

    You are given a string 'STR'. The string contains [a-z] [A-Z] [0-9] [special characters]. You have to find the reverse of the string.

    For example:

     If the given string is: STR...
  • Ans. 

    The task is to reverse a given string containing lowercase letters, uppercase letters, digits, and special characters.

    • Iterate through the string from the last character to the first character and append each character to a new string.

    • Alternatively, you can use built-in string reversal functions or methods available in your programming language.

    • To solve the follow-up question with O(1) space complexity, you can use a tw...

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 20 minutes
Round difficulty - Easy

This was last round. In this round interviewer ask about me and what i know about company. Also he ask about my projects as well as my future goals . 
The interviewer was very understanding and supportive.

  • Q1. Basic HR Questions

    Why do you want to join this company?

    Who is your role model?

  • Ans. 

    I want to join this company because of its strong reputation in the software engineering industry and its commitment to innovation.

    • The company has a strong reputation in the software engineering industry

    • The company is known for its commitment to innovation

    • The company offers opportunities for professional growth and development

    • The company has a positive work culture and values its employees

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in GurgaonEligibility criteriaNoGreyOrange interview preparation:Topics to prepare for the interview - Data Structures, Object-Oriented Programming, Algorithms, Dynamic programming, Graphs, Operating Systems and Database Management System,Java, MySQL, HTML, CSS, JavaScript, Nodejs, PythonTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Find a good course, and first clear all your fundamentals and implementation of every data structure. You should be thorough with their time as well as space complexities. 
Tip 2 : Upon clearing the fundamentals, select a platform where you have a large no of questions, also whose test cases are good. eg. LeetCode, InterviewBit or Codezen. Go and complete 300-400 questions.
Tip 3 : Also whenever you're not able to solve the problem, check out the editorial and then re-attempt it again. Also, check the discussion if there is some good solution to the same problem.
Tip 4 : For OOPS, DS and programming, I recommend Codezen, Leetcode, InterviewBit and GeeksforGeeks.
Tip 5 : For OS, DBMS and Computer Network, I recommend GateSmasher, Knowledge Gate and TutorialsPoint.

Application resume tips for other job seekers

Tip 1 : Resume should contain facts, numbers, and data comparison.
Tip 2 : Mention only those projects and internships in your resume that you are comfortable with, that is, you can explain to the interviewee.
Tip 3 : Technical achievements in the field you're applying to, would be good.
Tip 4 : DO NOT FAKE THINGS, the interviewer is smart enough.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Grey Orange Software Engineer Interview Questions and Answers

Q1. Print PermutationsGiven an input string (STR), print all possible permutations of the input string. Note: The input string may contain the same characters, so there will also be the same permutations. The order of permutations doesn’t matte... read more
View answer (2)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at ABES Engineering College, Ghaziabad and was interviewed before Jun 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

Just was some normal question for screening

Round 3 - Group Discussion 

GD was about Science topics or impact of science in the life

Round 4 - HR 

(2 Questions)

  • Q1. General questions about career objective, aim, after 5 years?
  • Q2. Hobbies, interest, your quality

Interview Preparation Tips

Interview preparation tips for other job seekers - Be genuine what you are

Operations Intern Interview Questions asked at other Companies

Q1. Tell me about a decision for which data and analysis weren't sufficient to provide the right course and you had to rely on your judgement and instincts
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before May 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Case Study 

What will you do to create a zero based budget plan?

Round 3 - HR 

(2 Questions)

  • Q1. Why do you want to leave an MNC to join us?
  • Q2. To get real experience and exposure

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep an open mind. Rehearse so that you have clarity in your message

Associate Director Interview Questions asked at other Companies

Q1. How will you manage the New location and ramp up the Resourcing as per business requirement
View answer (2)

Grey Orange Interview FAQs

How many rounds are there in Grey Orange interview?
Grey Orange interview process usually has 2-3 rounds. The most common rounds in the Grey Orange interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Grey Orange 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, Automation Testing, SQL, Java and Linux.
What are the top questions asked in Grey Orange interview?

Some of the top questions asked at the Grey Orange interview -

  1. What is the code to determine the minimum number of dice throws required to rea...read more
  2. What is process of wire harness developm...read more
  3. Implementation of Inorder Traversal of a Binary T...read more
How long is the Grey Orange interview process?

The duration of Grey Orange interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Grey Orange Interview Process

based on 15 interviews in last 1 year

Interview experience

3.9
  
Good
View more

People are getting interviews through

based on 26 Grey Orange interviews
Job Portal
Campus Placement
Referral
42%
19%
4%
35% candidates got the interview through other sources.
High Confidence
?
High Confidence means the data is based on a large number of responses received from the candidates.

Interview Questions from Similar Companies

Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 752 Interviews
Delhivery Interview Questions
3.9
 • 441 Interviews
Swiggy Interview Questions
3.8
 • 420 Interviews
BigBasket Interview Questions
3.9
 • 345 Interviews
Zomato Interview Questions
3.8
 • 313 Interviews
Blinkit Interview Questions
3.7
 • 169 Interviews
Ola Cabs Interview Questions
3.4
 • 141 Interviews
Snapdeal Interview Questions
3.9
 • 74 Interviews
Rivigo Interview Questions
3.9
 • 72 Interviews
View all

Grey Orange Reviews and Ratings

based on 324 reviews

3.2/5

Rating in categories

3.0

Skill development

2.9

Work-Life balance

3.5

Salary & Benefits

2.3

Job Security

3.1

Company culture

2.8

Promotions/Appraisal

2.9

Work Satisfaction

Explore 324 Reviews and Ratings
Customer Experience Manager I

Gurgaon / Gurugram

1-4 Yrs

Not Disclosed

Senior UI/UX Designer

Gurgaon / Gurugram

5-7 Yrs

Not Disclosed

Explore more jobs
Senior Engineer
70 salaries
unlock blur

₹5.7 L/yr - ₹21 L/yr

Senior Software Engineer
56 salaries
unlock blur

₹13.1 L/yr - ₹31 L/yr

Assistant Manager
53 salaries
unlock blur

₹7.5 L/yr - ₹25.9 L/yr

Senior Member of Technical Staff
46 salaries
unlock blur

₹12.6 L/yr - ₹46 L/yr

Software Engineer
44 salaries
unlock blur

₹7.4 L/yr - ₹20.5 L/yr

Explore more salaries
Compare Grey Orange with

Flipkart

4.0
Compare

Delhivery

3.9
Compare

Rivigo

3.9
Compare

Zomato

3.8
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