Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Greyb Software Developer Interview Questions and Answers

Updated 22 Sep 2024

Greyb Software Developer Interview Experiences

1 interview found

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

HR is in the meet with live video call with all students and then have to attempt the test

Round 2 - Group Discussion 

Asked related to current topics

Round 3 - HR 

(2 Questions)

  • Q1. What are your hobbies?
  • Ans. 

    My hobbies include coding personal projects, playing video games, and hiking in nature.

    • Coding personal projects: I enjoy working on side projects to improve my skills and explore new technologies.

    • Playing video games: I find relaxation and enjoyment in playing video games, especially ones with strategic elements.

    • Hiking in nature: I love spending time outdoors, exploring new trails and enjoying the beauty of nature.

  • Answered by AI
  • Q2. What is your experience?
  • Ans. 

    I have 5 years of experience in software development, specializing in web applications using Java and JavaScript.

    • 5 years of experience in software development

    • Specialize in web applications

    • Proficient in Java and JavaScript

  • Answered by AI

Interview questions from similar companies

Interview Preparation Tips

Round: Pre-placement offer
Experience: Each intern was assigned a individual project and mentor.
In the last week of internship there was project presentation and interview.
interview was easy .For me 50% of the questions were about project and some questions about algorithms and DBMS.
More emphasis was given to the quality of work on project.

General Tips: Working in company is complete different from working on course project. learning many new frameworks required for the project was really challenging.
Programming : Tree, Btree, Tries ..
Operating System: Memory Management
Networks: OSI model
DBMS : basics. they dint ask me any. Show case your interest in big data, servers and passion for technology
Skill Tips: Be confident, even if you don't know the exact answer don't give up tell your approaches to interviewer. some times they will also help you. Software Developer some question s you can ask are: what technologies do your company works on. how are freshers will be selected to different teams in the company.
Skills:
College Name: NIT Surathkal

Interview Questionnaire 

1 Question

  • Q1. How to invoke the xml file using LibXML?
  • Ans. 

    To invoke an XML file using LibXML, use the xmlReadFile() function.

    • Include the libxml/parser.h header file.

    • Use the xmlReadFile() function to read the XML file and create a xmlDocPtr object.

    • Use the xmlDocGetRootElement() function to get the root element of the XML document.

    • Use the xmlNodeGetContent() function to get the content of a node.

    • Use the xmlFreeDoc() function to free the memory allocated for the xmlDocPtr object...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Aptitude Test 

Qunatative, Reasoning, Blood Relation

Round 3 - Technical 

(1 Question)

  • Q1. CS fundamentals, DSA
Round 4 - HR 

(1 Question)

  • Q1. Behavioural Questions only
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 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 Resume tips
Round 2 - Aptitude Test 

Aptitude Test + Technical Questions + One Coding Question

Round 3 - Technical 

(2 Questions)

  • Q1. Detect the loop in a Singly linked list
  • Ans. 

    Detect loop in a singly linked list

    • Use two pointers, one moving one step at a time and the other moving two steps at a time

    • If there is a loop, the two pointers will eventually meet

    • If any of the pointers reach the end of the list, there is no loop

  • Answered by AI
  • Q2. 2 Sum (find a pair of numbers that sums up to a target)
  • Ans. 

    The 2 Sum problem involves finding a pair of numbers in an array that adds up to a given target.

    • Use a hash table to store the complement of each number as you iterate through the array.

    • Check if the current number's complement exists in the hash table.

    • If found, return the indices of the two numbers.

    • If no pair is found, return an empty array.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Then there was a GD
Followed by Technical Interview Round 1 and Round 2

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed before Mar 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 Resume tips
Round 2 - Coding Test 

Mid level programming and mcq questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. Architecture round and coding Peer programming C# questions React questions Recurssive programming String manipulation
  • Q2. String manuplation Array questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for the interview by various online source.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical and reasoning, Maths

Round 2 - Coding Test 

Basic coding Java & C

Round 3 - Technical 

(2 Questions)

  • Q1. Array and types
  • Q2. Inheritance & OOPS

Interview Preparation Tips

Interview preparation tips for other job seekers - For fresher, Prepare basics
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Group Discussion 

Discuss cons and pro for is education important to become successful in life?

I was interviewed in Oct 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 minutes
Round difficulty - Medium

Timing: Window for 2 days
Environment: Online
Time: 50 Min. for 50 MCQ and 20 min for 2 Coding Questions

  • Q1. 

    Number Pattern Problem Statement

    Design a seating arrangement for a high-security meeting. There are 'N' rows of tables set up where the first row contains one table, the second row contains two tables, a...

  • Ans. 

    Design a seating arrangement for a high-security meeting with specific table assignments for security personnel and guests.

    • Create a loop to iterate through each row from 1 to N.

    • Assign tables on either end of each row to security personnel.

    • For rows with only one table, assign it to security personnel.

    • Display the seating arrangement with the number of people at each table.

    • Example: For 4 rows, the output pattern is 1, 11,

  • Answered by AI
  • Q2. 

    Insert Interval Problem Statement

    You are provided with a list of 'N' non-overlapping intervals, each defined by two integers, 'start' and 'end', sorted in ascending order by 'start' values. Your task is ...

  • Ans. 

    The task is to insert a given interval into a list of non-overlapping intervals while maintaining sorted order.

    • Iterate through the list of intervals to find the correct position to insert the given interval.

    • Merge any overlapping intervals with the given interval.

    • Update the list of intervals accordingly.

    • Handle edge cases such as when the given interval completely overlaps with existing intervals.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

Timing: Morning
Environment: On MS-Teams

  • Q1. 

    Quick Sort Problem Statement

    Sort the given array of integers in ascending order using the quick sort algorithm. Quick sort is a divide-and-conquer algorithm where a pivot point is chosen to partition the...

  • Ans. 

    Quick sort is a divide-and-conquer algorithm that sorts an array by choosing a pivot point and partitioning the array into two parts recursively.

    • Choose a pivot element (e.g., rightmost element) to partition the array into two subarrays.

    • Recursively apply quick sort to the subarrays until the entire array is sorted.

    • Time complexity can be optimized to NlogN in the worst case by selecting the pivot strategically.

    • Ensure the...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Bharati Vidyapeeth's College of Engineering. I applied for the job as Software Development in GurgaonEligibility criteria70 % throughout ( in Xth, XIIth, B.Tech so far), up to one pending Backlog in B.Tech, is allowed.IHS Markit interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS, Operating Systems, DBMS, Computer NetworkTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : For DS and Algo, keep practicing every day on Leetcode, HackerEarth, and make a habit of participating in contests.
Tip 2 : Projects are vital in interviews, have at least 3 projects on Resume, in the field/profile which you're applying for.
Tip 3 : Give Mock Interviews.

Application resume tips for other job seekers

Tip 1 : Resume should be short and keep it under 1 page.
Tip 2 : Include skills that you're 100% confident in.
Tip 3 : Highlight your internships and projects section appropriately

Final outcome of the interviewRejected

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about a project you have worked on
Contribute & help others!
anonymous
You can choose to be anonymous

Greyb Interview FAQs

How many rounds are there in Greyb Software Developer interview?
Greyb interview process usually has 3 rounds. The most common rounds in the Greyb interview process are Aptitude Test, Group Discussion and HR.
How to prepare for Greyb Software Developer 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 Greyb. The most common topics and skills that interviewers at Greyb expect are Global Delivery, Oracle ERP, Program Management, Quality Improvement and Sharepoint.

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

DESIGNATION

DESIGNATION

DESIGNATION

SALARIES

Cloud Analogy

INTERVIEWS

Cloud Analogy

No Interviews

INTERVIEWS

HighRadius

No Interviews

INTERVIEWS

Bechtel

40 top interview questions

SALARIES

Cloud Analogy

Tell us how to improve this page.

Greyb Software Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Greyb Software Developer Salary
based on 11 salaries
₹6 L/yr - ₹10 L/yr
8% less than the average Software Developer Salary in India
View more details

Greyb Software Developer Reviews and Ratings

based on 4 reviews

2.7/5

Rating in categories

3.0

Skill development

1.9

Work-life balance

3.3

Salary

2.7

Job security

3.3

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 4 Reviews and Ratings
Research Analyst
95 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Research Analyst
32 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Patent Analyst
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Market Analyst
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Greyb with

EXL Service

3.7
Compare

Access Healthcare

3.9
Compare

S&P Global

4.1
Compare

AGS Health

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