Upload Button Icon Add office photos

Filter interviews by

Ginger Webs Software Developer Interview Questions and Answers

Updated 23 Dec 2024

Ginger Webs Software Developer Interview Experiences

2 interviews found

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

I applied via campus placement at Chandigarh Engineering College, Chandigarh and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Coding questions that focus on recursion and backtracking.

Round 2 - Technical 

(1 Question)

  • Q1. What is the minimum number of moves required by a knight to return to its initial position on the chessboard?
  • Ans. 

    The minimum number of moves required by a knight to return to its initial position on the chessboard is 1.

    • A knight can return to its initial position in just 1 move by moving to any adjacent square.

    • The knight can move in an L-shape pattern, either 2 squares horizontally and 1 square vertically or 2 squares vertically and 1 square horizontally.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Required strong programming skills along with a fundamental understanding of computer science concepts.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. About php html and bootstrap

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Code Snept question with 3-4 Reasoning question. Google form

Round 2 - Assignment 

Pen paper coding round. String , Array . Linkedlist , graph, questions

Round 3 - Technical 

(3 Questions)

  • Q1. Maximum Spaning
  • Q2. Nearest Prime number
  • Ans. 

    To find the nearest prime number, iterate from the given number in both directions until a prime number is found.

    • Start iterating from the given number in both directions to find the nearest prime number.

    • Check if a number is prime by dividing it by all numbers less than its square root.

    • Keep track of the closest prime number found during the iteration.

  • Answered by AI
  • Q3. Second Maximum Number in Array
  • Ans. 

    Find the second maximum number in an array of strings.

    • Convert the array of strings to an array of integers.

    • Sort the array in descending order.

    • Return the second element in the sorted array.

  • Answered by AI
Round 4 - Technical 

(4 Questions)

  • Q1. Project Question
  • Q2. Robot question of DSA
  • Q3. Stock Buy and sell - VI . Leetcode Hard
  • Q4. Leetcode Medium

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. How make a queue using a stack
  • Ans. 

    To implement a queue using a stack, use two stacks and simulate the queue operations.

    • Use two stacks, one for enqueue operation and one for dequeue operation.

    • For enqueue operation, simply push elements onto the stack used for enqueueing.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

    • Then pop from the dequeue stack to simulate dequeue operation.

  • Answered by AI
  • Q2. Create a linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to null

    • Add nodes by updating next pointers

    • Traverse the list by following next pointers

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It is very impressive work on Josh technology assessment because we learn many new skills.

Round 2 - Technical 

(2 Questions)

  • Q1. What is api and how it is work ?
  • Ans. 

    API stands for Application Programming Interface. It is a set of rules and protocols that allows different software applications to communicate with each other.

    • APIs define the methods and data formats that applications can use to request and exchange information.

    • APIs can be used to access services provided by other software applications, such as retrieving data from a database or sending notifications.

    • Examples of APIs ...

  • Answered by AI
  • Q2. What is software development life cycle and which steps are following?
  • Ans. 

    Software development life cycle (SDLC) is a process used by software developers to design, develop, and test software.

    • 1. Planning: Define the project scope, requirements, and objectives.

    • 2. Analysis: Gather and analyze user requirements.

    • 3. Design: Create a detailed design of the software.

    • 4. Implementation: Develop the software based on the design.

    • 5. Testing: Test the software for bugs and issues.

    • 6. Deployment: Release t...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was ok. I was not able to solve all the questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Remove the last element from a linkedlist
  • Ans. 

    To remove the last element from a linked list, iterate to the second last node and update its next pointer to null.

    • Iterate through the linked list to find the second last node

    • Update the next pointer of the second last node to null

  • Answered by AI
  • Q2. Some basic questions on oops dbms and os

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

The interviewer asked about javascript basics and DSA questions and some typescript questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(5 Questions)

  • Q1. Tell me about
  • Q2. Your self they are asking
  • Q3. What is your weakness
  • Q4. Any questions ask for me
  • Q5. All the best future
Round 2 - Coding Test 

Coding for international

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Quantitative arithmetic,verbal reasoning,non-verbal reasoning,etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Simple question on maths

Round 2 - Technical 

(2 Questions)

  • Q1. Explain OOPS concept
  • Ans. 

    OOPS (Object-Oriented Programming) is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPS focuses on creating objects that interact with each other to solve complex problems

    • Key principles include encapsulation, inheritance, polymorphism, and abstraction

    • Encapsulation ensures that the internal state of an object is hidden from the outside world

    • Inheritance allows a class to inherit...

  • Answered by AI
  • Q2. Coding array questions

Ginger Webs Interview FAQs

How many rounds are there in Ginger Webs Software Developer interview?
Ginger Webs interview process usually has 1-2 rounds. The most common rounds in the Ginger Webs interview process are Technical and Coding Test.
How to prepare for Ginger Webs 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 Ginger Webs. The most common topics and skills that interviewers at Ginger Webs expect are Web Services, Angularjs, Design Patterns, Html5 and IOS.
What are the top questions asked in Ginger Webs Software Developer interview?

Some of the top questions asked at the Ginger Webs Software Developer interview -

  1. What is the minimum number of moves required by a knight to return to its initi...read more
  2. About php html and bootst...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Ginger Webs interviews
Referral
Campus Placement
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Ginger Webs Software Developer Salary
based on 120 salaries
₹1.8 L/yr - ₹9 L/yr
31% less than the average Software Developer Salary in India
View more details

Ginger Webs Software Developer Reviews and Ratings

based on 14 reviews

2.4/5

Rating in categories

3.3

Skill development

2.8

Work-Life balance

2.5

Salary & Benefits

2.8

Job Security

2.5

Company culture

2.3

Promotions/Appraisal

2.4

Work Satisfaction

Explore 14 Reviews and Ratings
Software Developer
120 salaries
unlock blur

₹1.8 L/yr - ₹9 L/yr

Senior Software Developer
41 salaries
unlock blur

₹6 L/yr - ₹12 L/yr

Software Engineer
31 salaries
unlock blur

₹2.5 L/yr - ₹8 L/yr

Operations Executive
27 salaries
unlock blur

₹2 L/yr - ₹2.9 L/yr

Software Tester
20 salaries
unlock blur

₹2.2 L/yr - ₹7 L/yr

Explore more salaries
Compare Ginger Webs with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
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