Upload Button Icon Add office photos

Filter interviews by

RateGain Associate/Senior Associate -(Technical) Interview Questions and Answers

Updated 11 Oct 2020

RateGain Associate/Senior Associate -(Technical) Interview Experiences

1 interview found

Interview Questionnaire 

4 Questions

  • Q1. Space and time complexity of Sorting and Searching algos. Which algo is the best and why?
  • Ans. 

    Sorting and searching algos have different space and time complexities. The best algo depends on the use case.

    • Sorting algos: Bubble sort, Insertion sort, Selection sort, Merge sort, Quick sort

    • Searching algos: Linear search, Binary search

    • Space complexity of sorting algos varies from O(1) to O(n), while time complexity varies from O(n^2) to O(nlogn)

    • Space complexity of searching algos is O(1), while time complexity is O(l...

  • Answered by AI
  • Q2. What's the most challenging task/proj you have handled?
  • Q3. Given an array of unsorted values, write a program to replace each array index element with the next highest element.
  • Ans. 

    Program to replace each array index element with the next highest element.

    • Sort the array in descending order

    • Loop through the array and replace each element with the next highest element

    • Handle edge cases like duplicates and last element

  • Answered by AI
  • Q4. Given an array of unsorted values, search a value in the array and provide its space and time complexity? Is this the best way to search the value, why?
  • Ans. 

    Searching an unsorted array for a value and determining its space and time complexity.

    • The time complexity of linear search is O(n), where n is the size of the array.

    • Binary search has a time complexity of O(log n), but requires a sorted array.

    • Hash tables can provide constant time complexity for search, but require additional space.

    • The best search method depends on the specific use case and constraints.

    • Example: Searching

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Referral and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic question on dot net and sql server
Round 2 - Technical 

(1 Question)

  • Q1. Bit twisted and elaborative discussion on various technical spheres.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain the Procedure flow of PHP module
  • Ans. 

    The procedure flow of a PHP module involves defining functions, including them in the main script, and executing them in a specific order.

    • Define functions with specific tasks

    • Include functions in the main script using 'require' or 'include'

    • Execute functions in a specific order to achieve desired functionality

  • Answered by AI
  • Q2. What are Caching
  • Ans. 

    Caching is the process of storing data temporarily in order to reduce access time and improve performance.

    • Caching helps in reducing the load on servers by serving frequently accessed data quickly

    • Examples of caching include browser caching, CDN caching, and database caching

    • Caching can be implemented at different levels such as application level, database level, and server level

  • Answered by AI

Skills evaluated in this interview

Associate Interview Questions & Answers

KiwiTech user image Ashish Kumar singh

posted on 11 Oct 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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 

Question were not hard.

Round 3 - Technical 

(3 Questions)

  • Q1. 30 min interview, Interview based on java,
  • Q2. Oops question and related
  • Q3. Coding based on Java

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear basic of the language you prefer
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They asked basically normal questions

Round 2 - HR 

(2 Questions)

  • Q1. Salary exception
  • Q2. When you will join

I applied via Naukri.com and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Past working experience, and knowledge in the Testing field

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good and had 2 rounds.

I applied via Naukri.com and was interviewed before Nov 2019. There were 4 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. 1) imagine their is a electricity bulb, upon reaching equilibrium with surrounding, write steady dtate equation.....
  • Ans. 

    The steady state equation for an electricity bulb reaching equilibrium with its surroundings.

    • The steady state equation describes the balance between the power input and the power output of the bulb.

    • It can be represented as: Power input = Power output

    • In the case of an electricity bulb, the power input is the electrical power supplied to the bulb, and the power output is the light and heat energy emitted by the bulb.

    • The ...

  • Answered by AI
  • Q2. 2) for a spring write down energy equation
  • Ans. 

    The energy equation for a spring relates the potential energy stored in the spring to its displacement and spring constant.

    • The energy equation is given by U = 1/2 kx^2

    • U is the potential energy stored in the spring

    • k is the spring constant

    • x is the displacement of the spring from its equilibrium position

    • The equation can be used to calculate the potential energy stored in a spring at a given displacement

    • The equation can al...

  • Answered by AI
  • Q3. Couldn't answer
  • Q4. 3)Ansys commands
  • Q5. 4)shape of tetra hedral elements
  • Ans. 

    Tetrahedral elements have a pyramid-like shape with four triangular faces.

    • Tetrahedral elements are commonly used in finite element analysis.

    • They are often used to discretize 3D domains in engineering simulations.

    • The shape of tetrahedral elements allows for efficient mesh generation and analysis.

    • Examples of tetrahedral elements include the regular tetrahedron and the truncated tetrahedron.

  • Answered by AI
  • Q6. 5) NX use of layering and how ?
  • Ans. 

    NX uses layering to organize and manage different components of a design.

    • Layering in NX allows for better organization and management of design components.

    • Layers can be used to group related objects together, making it easier to select and manipulate them.

    • Each layer can have its own properties, such as color, line style, and visibility.

    • Layers can be turned on or off, allowing for better control over the display of diff...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Ansys india is best company to work. Be careful with basics and be perfect with resume... The company itself is a brand and doesn't rely on brand of colleges ( so called prestigious institute). Be confident and respect the moment of interview....

RateGain Interview FAQs

What are the top questions asked in RateGain Associate/Senior Associate -(Technical) interview?

Some of the top questions asked at the RateGain Associate/Senior Associate -(Technical) interview -

  1. Given an array of unsorted values, search a value in the array and provide its ...read more
  2. Space and time complexity of Sorting and Searching algos. Which algo is the bes...read more
  3. Given an array of unsorted values, write a program to replace each array index ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

NTT Data Interview Questions
3.9
 • 599 Interviews
Oyo Rooms Interview Questions
3.3
 • 226 Interviews
MakeMyTrip Interview Questions
3.7
 • 121 Interviews
TestingXperts Interview Questions
4.1
 • 40 Interviews
Stefanini Interview Questions
3.0
 • 34 Interviews
FabHotels Interview Questions
3.0
 • 33 Interviews
Yatra Interview Questions
3.4
 • 31 Interviews
View all
Senior Software Engineer
73 salaries
unlock blur

₹5.6 L/yr - ₹21.2 L/yr

Software Engineer
32 salaries
unlock blur

₹4.9 L/yr - ₹20 L/yr

Associate Manager
31 salaries
unlock blur

₹7.1 L/yr - ₹16.3 L/yr

Senior QA Engineer
28 salaries
unlock blur

₹4 L/yr - ₹12 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.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview