Upload Button Icon Add office photos

Grey Orange

Compare button icon Compare button icon Compare

Filter interviews by

Grey Orange Interview Questions, Process, and Tips for Freshers

Updated 17 Jan 2025

Top Grey Orange Interview Questions and Answers for Freshers

  • Q1. Print All Permutations of a String Given an input string STR , generate and print all possible permutations of the string. Input: str Output: All permutations of the inp ...read more
    asked in Software Engineer interview
  • Q2. Longest Consecutive Sequence Problem Statement You are provided with an unsorted array/list ARR of N integers. Your task is to determine the length of the longest consec ...read more
    asked in Software Engineer interview
  • Q3. Nth Fibonacci Number Problem Statement Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2) , with initial ...read more
    asked in Software Engineer interview
View all 8 questions

Grey Orange Interview Experiences for Freshers

Popular Designations

9 interviews found

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Questions about linux.
  • Q2. Questions about sql.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Roles and responsibilities.
  • Q2. About my project.

Application Support Engineer Interview Questions asked at other Companies

Q1. what do you know about SQL , Unix , explain in brief
View answer (2)

Interview Questions & Answers

user image Anonymous

posted on 20 Feb 2024

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

I applied via Campus Placement and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

It was Java based MCQ test and apart from that they asked 2 easy DSA Java problems. The first question was test case writing in which a web application was shown and we had to assume and create test cases based on the scenarios that can happen

Round 2 - Technical 

(1 Question)

  • Q1. 2 easy DSA questions. SQL queries and scenarios to write particular query type questions were asked. Linux commands were asked along with their uses. Lastly 1 puzzle based question was asked that 3 boxes a...
Round 3 - Technical 

(1 Question)

  • Q1. 1 linkedlist based easy DSA questions. Then the interviewer asked me predict the output and find errors type questions in Java and javascript. Then again SQL query writing happened. Then discussion on LINU...

Interview Preparation Tips

Interview preparation tips for other job seekers - See DSA which they ask is not very difficult study arrays, regex , linkedlist and strings they are enough.
For SQL prepare joins and subquery writing with lots of practise. PL-SQL can be taken lightly as I was asked none of it.
Try to understand and remember some basic Linux commands I was into development so I had idea about them but mostly students ignore it and lose the opportunity practise this.
For puzzles just Google search puzzle based questions for technical interview you will get plenty and mostly those are asked exactly just practice and if possible memorize them.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. What means inventory?
  • Ans. 

    Inventory refers to the list of goods and materials held available in stock by a business.

    • Inventory includes raw materials, work-in-progress, and finished goods.

    • It helps in tracking the availability of products for sale.

    • Inventory management involves ordering, storing, and tracking inventory levels.

    • Examples of inventory include electronics, clothing, food items, and office supplies.

  • Answered by AI
  • Q2. What is VCB safety?
  • Ans. 

    VCB safety refers to the safety measures and precautions taken when working with Vacuum Circuit Breakers to prevent accidents and ensure proper functioning.

    • VCB safety involves proper training on handling and operating vacuum circuit breakers.

    • Regular maintenance and inspection of VCBs to ensure they are in good working condition.

    • Following safety protocols and guidelines provided by manufacturers when working with VCBs.

    • U...

  • Answered by AI

Technical Supervisor Interview Questions asked at other Companies

Q1. What is DG , voltage , Ampere , Transformer , motor , HVAC
View answer (1)
Interview experience
5
Excellent
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 - Coding Test 

Data structures and algorithms. can do in c++ or many other languages.

Round 3 - One-on-one 

(2 Questions)

  • Q1. From gfg, simple array question. 3/5 difficultly.
  • Q2. Based on resume. Discussion around that.

Interview Preparation Tips

Interview preparation tips for other job seekers - Not a tough one, relatively easy. Prepare from gfg and previously asked questions.

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an array ARR of size N, your objective is to determine the sum of the largest and smallest elements within the array. Follow Up: Can you achieve the above task using the least numb... read more
View answer (5)

Grey Orange interview questions for popular designations

 Software Engineer

 (3)

 Software Developer

 (3)

 Senior Software Engineer

 (3)

 Project Manager

 (2)

 Analyst

 (1)

 Manager

 (1)

 Product Manager

 (1)

 Electrical Engineer

 (1)

I appeared for an interview in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Easy

  • Q1. 

    Rectangle Area Calculation

    Given a list of rectangles, where each rectangle is represented by an array of four integers indicating its bottom-left and top-right corners, calculate the total area covered b...

  • Ans. 

    Calculate total area covered by a list of rectangles on a plane.

    • Iterate through each rectangle and calculate its area

    • Check for overlapping areas between rectangles

    • Sum up the total area covered by all rectangles

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Oops concepts and 1 DSA problem

  • Q1. 

    Bit Set Problem Statement

    You are provided with a string, termed as DIGIT_PATTERN, which consists solely of digits. The objective is to identify the first digit that repeats in the sequence. If there's no...

  • Ans. 

    Identify the first repeating digit in a given string of digits.

    • Iterate through the string and keep track of seen digits using a set.

    • Return the first digit that repeats, or -1 if no digit repeats.

    • Time complexity: O(n), where n is the length of the input string.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Firstly Some general questions and then suddenly a cosing question with modifications

  • Q1. 

    Print All Permutations of a String

    Given an input string STR, generate and print all possible permutations of the string.

    Input:

    str

    Output:

    All permutations of the input string, each on a new line.

    ...

  • Ans. 

    Generate and print all possible permutations of a given input string.

    • Use recursion to generate all permutations by swapping characters in the string.

    • Maintain a visited array to keep track of characters already used in a particular permutation.

    • Print each permutation as it is generated.

    • Handle duplicate characters by skipping swapping if the character is already in the current position.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as Software Engineer in GurgaonEligibility criteria7.5 CgpaGreyOrange interview preparation:Topics to prepare for the interview - DSA, OOPs, OS, DBMS, projects, PuzzlesTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : You should be perfect in what you know
Tip 2 : Prepare atleast DSA standard questions very well
Tip 3 : Don't ignore OOPs, they are asked very frequently.

Application resume tips for other job seekers

Tip 1 : Add good projects
Tip 2 : Must mention all your coding profiles and github where you worked.

Final outcome of the interviewSelected

Skills evaluated in this interview

Top Grey Orange Software Engineer Interview Questions and Answers

Q1. Print All Permutations of a String Given an input string STR, generate and print all possible permutations of the string. Input: str Output: All permutations of the input string, each on a new line. Example: Input: "abc" Output: abcacbbacbc... read more
View answer (1)

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 (220)
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:
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 - 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 All Permutations of a String Given an input string STR, generate and print all possible permutations of the string. Input: str Output: All permutations of the input string, each on a new line. Example: Input: "abc" Output: abcacbbacbc... read more
View answer (1)

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 (220)

Jobs at Grey Orange

View all

I appeared for an interview 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 Problem Statement

    Calculate the Nth term in the Fibonacci sequence, where the sequence is defined as follows: F(n) = F(n-1) + F(n-2), with initial conditions F(1) = F(2) = 1.

    Input:

    ...
  • 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 Problem Statement

    You are provided with an unsorted array/list ARR of N integers. Your task is to determine the length of the longest consecutive sequence present in the array...

  • 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 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

The interview was online from home.

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • 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 

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.

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 All Permutations of a String Given an input string STR, generate and print all possible permutations of the string. Input: str Output: All permutations of the input string, each on a new line. Example: Input: "abc" Output: abcacbbacbc... read more
View answer (1)

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 (220)
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 Jun 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 - 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)

Electrical Engineer Interview Questions & Answers

user image Jitendra Srivastava

posted on 9 Jul 2017

I appeared for an interview before Jul 2016.

Interview Questionnaire 

1 Question

  • Q1. Judging skills

Interview Preparation Tips

Round: Resume Shortlist
Experience: related to your previous company & skills

Electrical Engineer Interview Questions asked at other Companies

Q1. What is the difference between Switch gear & Circuit Breakers ?
View answer (13)

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Filter in MVC
  • Ans. 

    Filter in MVC is used to retrieve a subset of data from a larger dataset based on certain criteria.

    • Filters can be applied to data in the model or in the view.

    • Filters can be used to sort, group, or limit the data returned.

    • Filters can be implemented using LINQ or other query languages.

    • Examples of filters include date range filters, category filters, and search filters.

  • Answered by AI
  • Q2. Authentication and authorisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all basics of MVC,SQL and C#

Skills evaluated in this interview

Grey Orange Interview FAQs

How many rounds are there in Grey Orange interview for freshers?
Grey Orange interview process for freshers usually has 2-3 rounds. The most common rounds in the Grey Orange interview process for freshers are Technical, HR and Resume Shortlist.
How to prepare for Grey Orange interview for freshers?
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 5s, API Testing, Accounting, Analytical Chemistry and Ash.
What are the top questions asked in Grey Orange interview for freshers?

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

  1. What means invento...read more
  2. What is VCB safe...read more
  3. 1 linkedlist based easy DSA questions. Then the interviewer asked me predict th...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 for Freshers

based on 5 interviews

Interview experience

4.8
  
Excellent
View more

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 176 Interviews
Mobileum Interview Questions
3.3
 • 37 Interviews
CodeClouds Interview Questions
4.5
 • 36 Interviews
SirionLabs Interview Questions
3.8
 • 24 Interviews
SOTI Interview Questions
3.3
 • 23 Interviews
Replicon Interview Questions
3.8
 • 21 Interviews
View all

Grey Orange Reviews and Ratings

based on 337 reviews

3.2/5

Rating in categories

3.1

Skill development

2.9

Work-life balance

3.5

Salary

2.5

Job security

3.1

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 337 Reviews and Ratings
Senior Technical Program Manager

Gurgaon / Gurugram

7-12 Yrs

Not Disclosed

Senior Member Technical Staff - IT Ops

Gurgaon / Gurugram,

Bangalore / Bengaluru

+1

6-11 Yrs

₹ 20-27 LPA

Senior Site Reliability Engineer

Gurgaon / Gurugram,

Bangalore / Bengaluru

+1

3-8 Yrs

Not Disclosed

Explore more jobs
Senior Engineer
82 salaries
unlock blur

₹5.7 L/yr - ₹19.9 L/yr

Senior Software Engineer
56 salaries
unlock blur

₹13.1 L/yr - ₹31 L/yr

Assistant Manager
55 salaries
unlock blur

₹7.5 L/yr - ₹25.8 L/yr

Software Engineer
52 salaries
unlock blur

₹5.8 L/yr - ₹23.3 L/yr

Senior Member of Technical Staff
46 salaries
unlock blur

₹12.6 L/yr - ₹45 L/yr

Explore more salaries
Compare Grey Orange with

Thomson Reuters

4.1
Compare

Duck Creek Technologies

4.4
Compare

FinThrive

3.7
Compare

CodeClouds

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