Upload Button Icon Add office photos

Filter interviews by

RateGain Software Development Engineer Interview Questions and Answers

Updated 19 Sep 2024

RateGain Software Development Engineer Interview Experiences

3 interviews found

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 Sep 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

MCQ based aptitude test - 60 mins test

Round 2 - Technical 

(1 Question)

  • Q1. Questions asked on HTML, CSS, Javascript
Round 3 - Technical 

(1 Question)

  • Q1. Questions asked on Javascript and React, one DSA question (2 sum problem)
Round 4 - One-on-one 

(1 Question)

  • Q1. Problem solving round with the associate director (No coding)
Round 5 - One-on-one 

(1 Question)

  • Q1. One-on-one with the director

Interview Preparation Tips

Topics to prepare for RateGain Software Development Engineer interview:
  • Javascript
  • React.Js
  • DSA
  • HTML
  • CSS
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Dec 2022. There were 3 interview rounds.

Round 1 - Coding Test 

It was mix of aptitude test and 2 coding questions which were of greedy algorithm and one of DP

Round 2 - Technical 

(2 Questions)

  • Q1. It was physical one on one interview where he asked me to introduce myself first. then he asked me about one of my projects.
  • Q2. Then two DSA questions were asked. One of Fibonacci by recursion and dynamic programming both. Then he asked me one question of array pair overlapping question.
Round 3 - HR 

(3 Questions)

  • Q1. Tell me about yourself. Your interest and other personal stuffs
  • Q2. He further asked me about my weakness which i told was public speaking
  • Q3. Then we discussed about their company and how they are working right now

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be calm stick to basics. Try to have mock interviews before actual interviews

Software Development Engineer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Given an acyclic graph of a city where each edge represents a roa ... read more
asked in Hike
Q2. You have application which shows list of all contacts, the Name c ... read more
asked in Amazon
Q3. Given a m * n matrix filled with '0's and 'x's at random position ... read more
asked in Samsung
Q4. puzzle-There are 1000 wine bottles. One of the bottles contains p ... read more
asked in Accenture
Q5. Have you worked on cloud technology? Architecture of cloud
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 2022. There were 8 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. Fundamentals of HTML, CSS and javascript
Round 3 - Technical 

(1 Question)

  • Q1. Questions based on Reactjs and one easy DSA question
Round 4 - One-on-one 

(1 Question)

  • Q1. Discussion with AVP of engineering on the topics of previous projects i have done so far and some questions based on situations given to me
Round 5 - One-on-one 

(1 Question)

  • Q1. Discussion with VP of Engineering mainly on to implement star rating filter for the list of items in this case example of makemytrip hotel listings were taken, and one question related to general mathemati...
Round 6 - Aptitude Test 

Its a simple aptitude test having mathematical, reasoning and english questions

Round 7 - HR 

(1 Question)

  • Q1. HR discussion based on salary negotiations and joining dates
Round 8 - Cultural Fit Round 

(1 Question)

  • Q1. Just a formal round giving exposure to their values and culture and asked you one behavioural question to check if your answer fits into their values or not.

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What are the four pillars OOPS?
  • Ans. 

    The four pillars of OOPS are Abstraction, Encapsulation, Inheritance, and Polymorphism.

    • Abstraction: Hiding implementation details and showing only necessary information.

    • Encapsulation: Binding data and functions together and restricting access to them.

    • Inheritance: Creating new classes from existing ones, inheriting properties and methods.

    • Polymorphism: Ability of objects to take on multiple forms and perform different ac

  • Answered by AI
  • Q2. Project based question.
  • Q3. Linked list, array, pointers, etc.
  • Q4. Finite Element Method

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare C++, OOPS, and knowledge of FEM will add advantage.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Solid Principle, Design Patterns,
  • Q2. React sharing data btw siblings without any state management.
  • Q3. NodeJs is single threaded then why it feels concurrent?
Round 2 - Technical 

(3 Questions)

  • Q1. Questions related micro services
  • Q2. Message queue related questions
  • Q3. NodeJs related questions: Event loop

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare NodeJs in-depth.
Mention things in your resume that you actually know and worked on. They will ask questions from your experience.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell us about your experience.
  • Q2. In english, give me a feedback you received lately.
Round 2 - Technical 

(2 Questions)

  • Q1. Brief explanation of SOLID principles
  • Q2. Ref vs out arguments
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

Nothing it went well

Round 2 - Coding Test 

Same here , asked basics of java and C#

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well and go! don't stammer
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. How pagination work in jpa
  • Ans. 

    Pagination in JPA allows for retrieving a subset of results from a query by specifying a limit and offset.

    • Use the setFirstResult() method to specify the starting index of the results to retrieve

    • Use the setMaxResults() method to specify the maximum number of results to retrieve

    • Combine setFirstResult() and setMaxResults() to implement pagination in JPA queries

  • Answered by AI
  • Q2. How to create restful api
  • Ans. 

    To create a RESTful API, define endpoints, use HTTP methods, handle requests and responses, and follow REST principles.

    • Define endpoints for different resources (e.g. /users, /products)

    • Use HTTP methods like GET, POST, PUT, DELETE for CRUD operations

    • Handle requests and responses in JSON format

    • Follow REST principles like statelessness, uniform interface, and client-server architecture

  • Answered by AI

Skills evaluated in this interview

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

I applied via Job Fair and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

About front end , html, css, reasoning,

Round 2 - Technical 

(1 Question)

  • Q1. What.is let , var, const
  • Ans. 

    let, var, and const are keywords used in JavaScript to declare variables with different scopes and mutability.

    • let is used to declare variables with block scope and allows reassignment

    • var is used to declare variables with function scope and allows redeclaration

    • const is used to declare variables with block scope and does not allow reassignment, but the value can still be mutable

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is angular
  • Ans. 

    Angular is a popular open-source front-end web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem of libraries and tools.

    • Examples: AngularJS, Angular 2, A...

  • Answered by AI
  • Q2. Services in angular
  • Ans. 

    Services in Angular are singleton objects that can be used to share data and functionality across components.

    • Services are used to encapsulate reusable functionality, such as data fetching, logging, or authentication.

    • Services can be injected into components, directives, or other services using Angular's dependency injection system.

    • Services are typically defined using the @Injectable decorator.

    • Example: A DataService serv...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Communication skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good for freshers

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is sql server agent why can't we create objects of abstract class write extension method for abstract class SQL: SP vs Function, which one is faster, why? can I call SP from Function Microservice orch...
  • Ans. 

    SQL Server Agent is a job scheduling tool in SQL Server. Abstract classes cannot be instantiated. SPs are faster than functions. Microservice concepts. IEnumerable vs IQueryable.

    • SQL Server Agent is a job scheduling tool in SQL Server for automating tasks like backups, database maintenance, etc.

    • Abstract classes cannot be instantiated because they are incomplete and meant to be extended by subclasses.

    • Extension methods ca...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is record in c# write generic method to perform summation of 2 numeric type variable (int, double, float..) write test cases for Sum method which design pattern you used
  • Ans. 

    A record in C# is a data structure that stores a fixed number of fields of different data types.

    • A record in C# is similar to a struct in C++, containing fields to store data.

    • Example: 'public record Person { public string Name; public int Age; }'

    • Generic method for summation: 'public T Sum(T a, T b) where T : struct, IConvertible { return Convert.ToDouble(a) + Convert.ToDouble(b); }'

    • Test cases can include checking the su...

  • Answered by AI
  • Q2. This was the worst interview I have ever given. Interview got rescheduled 3 times. The panelist behaved so rudely, Why people wouldn't even care to show his face, it's literally very frustrating.

Skills evaluated in this interview

RateGain Interview FAQs

How many rounds are there in RateGain Software Development Engineer interview?
RateGain interview process usually has 5-6 rounds. The most common rounds in the RateGain interview process are Technical, One-on-one Round and Aptitude Test.
How to prepare for RateGain Software Development 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 RateGain. The most common topics and skills that interviewers at RateGain expect are .Net, Javascript, OOPS, .Net Core and Angular.
What are the top questions asked in RateGain Software Development Engineer interview?

Some of the top questions asked at the RateGain Software Development Engineer interview -

  1. Discussion with VP of Engineering mainly on to implement star rating filter for...read more
  2. Questions asked on Javascript and React, one DSA question (2 sum probl...read more
  3. Problem solving round with the associate director (No codi...read more

Tell us how to improve this page.

People are getting interviews through

based on 3 RateGain interviews
Job Portal
Campus Placement
67%
33%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Oyo Rooms Interview Questions
3.3
 • 224 Interviews
MakeMyTrip Interview Questions
3.7
 • 119 Interviews
TestingXperts Interview Questions
4.1
 • 38 Interviews
FabHotels Interview Questions
3.1
 • 33 Interviews
Stefanini Interview Questions
3.0
 • 33 Interviews
Yatra Interview Questions
3.4
 • 30 Interviews
NTT Data Interview Questions
4.0
 • 30 Interviews
View all
RateGain Software Development Engineer Salary
based on 15 salaries
₹8 L/yr - ₹23 L/yr
33% more than the average Software Development Engineer Salary in India
View more details

RateGain Software Development Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-Life balance

5.0

Salary & Benefits

4.0

Job Security

5.0

Company culture

5.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 1 Review and Rating
Senior Software Engineer
74 salaries
unlock blur

₹5.6 L/yr - ₹21.2 L/yr

Software Engineer
32 salaries
unlock blur

₹4.9 L/yr - ₹20 L/yr

Senior QA Engineer
30 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Associate Manager
24 salaries
unlock blur

₹7.1 L/yr - ₹16.3 L/yr

QA Engineer
21 salaries
unlock blur

₹3.2 L/yr - ₹6.5 L/yr

Explore more salaries
Compare RateGain with

Yatra

3.4
Compare

Cleartrip

3.4
Compare

MakeMyTrip

3.7
Compare

Ixigo.com

3.7
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