Upload Button Icon Add office photos

RealPage

Compare button icon Compare button icon Compare

Filter interviews by

RealPage Intern Interview Questions and Answers

Updated 11 Nov 2024

RealPage Intern Interview Experiences

2 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 11 Nov 2024

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

General coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Asked questions from resume profile
  • Q2. Questions mainly from the project

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident while speaking

Intern Interview Questions & Answers

user image Anonymous

posted on 15 Jul 2024

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

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

Round 1 - Coding Test 

Arrays, Strings, LinkedList, Sorting

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is the difference betweeen Hashmap and Graphs
  • Ans. 

    HashMap is a data structure that stores key-value pairs, while Graphs are a data structure that represents relationships between nodes.

    • HashMap is used for fast lookups of values based on keys.

    • Graphs are used to represent connections between nodes.

    • HashMaps have constant time complexity for lookups, while Graphs may have varying time complexity depending on the algorithm used.

    • Example: HashMap can be used to store a mappi...

  • Answered by AI
  • Q2. Write a program to get a diagonal elements of an array
  • Ans. 

    Program to retrieve diagonal elements of an array of strings

    • Iterate through the rows and columns of the array

    • Check if the row index is equal to the column index to get the diagonal elements

    • Store the diagonal elements in a separate array

  • Answered by AI

Skills evaluated in this interview

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. Case. There is a housing society “The wasteful society”, you coll ... read more
Q2. Which programming language you are comfortable with?
asked in Deloitte
Q3. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q4. Huffman Coding Challenge Given an array ARR of integers containin ... read more
asked in Accenture
Q5. A marketing strategy case. Client is a perfume seller in Jaipur. ... read more

Interview questions from similar companies

I was interviewed in Aug 2021.

Round 1 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Interview was scheduled in afternoon. It was more on OOPs and DSA.

  • Q1. 

    Check If Linked List Is Palindrome

    Given a singly linked list of integers, determine if the linked list is a palindrome.

    Explanation:

    A linked list is considered a palindrome if it reads the same forwar...

  • Ans. 

    Check if a given singly linked list of integers is a palindrome or not.

    • Traverse the linked list to find the middle element using slow and fast pointers.

    • Reverse the second half of the linked list.

    • Compare the first half with the reversed second half to determine if it's a palindrome.

  • Answered by AI
Round 2 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

She asked me more about myself and few projects in resume. It was more of formal discussion than an interview round. I was very comfortable and she aksed me about my location preference at end of. Interview.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from VIT AP CAMPUS. Eligibility criteria7CGPAThought Works interview preparation:Topics to prepare for the interview - Data Structures, OOPS, Algorithms. Database, JAVATime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : BlackRock has so many projects in Java, So I made sure I clear my basics and prepare well for each and every question about Java
Tip 2 : OOPS is something which was being asked from everyone and every seniors confirmed the same.
Tip 3 : Have good projects, preferably in development.

Application resume tips for other job seekers

Tip 1 : Have at least 2 projects.
Tip 2 : Include certifications.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Two questions were asked and answered both

Round 2 - Coding Test 

Two programs on Java was asked on loops and collections

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

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concepts and data structures
  • Q2. Dbms questions where based on normalization
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was not good, it contain mostly question of java programming.

Round 2 - Technical 

(1 Question)

  • Q1. Print factorial of n through recursion Sum of all n numbers
  • Ans. 

    Factorial of n and sum of n numbers using recursion

    • Create a recursive function to calculate factorial of n

    • Use a recursive function to calculate the sum of all n numbers

    • Handle base cases for both factorial and sum calculations

    • Example: Factorial of 5 = 5 * 4 * 3 * 2 * 1 = 120, Sum of first 5 numbers = 1 + 2 + 3 + 4 + 5 = 15

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please smile and be confident

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Php oops concepts are their primary focus

I applied via Walk-in and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic oops question, sql question
  • Q2. Basic and advance php question
  • Q3. Some logical question( puzzle)

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your basic concepts of php before attending interview

I was interviewed before Oct 2021.

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 

(2 Questions)

  • Q1. What is Nested List with example
  • Ans. 

    A nested list is a list that contains other lists as its elements.

    • Nested lists can be created using square brackets and separating the elements with commas.

    • Elements of a nested list can be accessed using indexing and slicing.

    • Example: my_list = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]

    • Accessing element 5: my_list[1][1]

  • Answered by AI
  • Q2. What is queue , explain with example
  • Ans. 

    A queue is a data structure that follows the First In First Out (FIFO) principle.

    • Elements are added to the back of the queue and removed from the front.

    • Example: A line of people waiting for a movie ticket.

    • Operations: Enqueue (add element to back), Dequeue (remove element from front), Peek (view front element)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Data Structure should be stong
Basic python
Coding skills

Skills evaluated in this interview

I applied via Referral and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Core Java questions oops concepts some sql queries
Round 2 - Technical 

(1 Question)

  • Q1. Question on Data structure list and hasmap ,java collection

Interview Preparation Tips

Topics to prepare for Bounteous x Accolite Software Engineer interview:
  • Core java,
  • Collections
Interview preparation tips for other job seekers - Prepare core java ,oops , collection coding questions to print -1 in place of duplicate elements

RealPage Interview FAQs

How many rounds are there in RealPage Intern interview?
RealPage interview process usually has 2 rounds. The most common rounds in the RealPage interview process are Coding Test, One-on-one Round and Assignment.
How to prepare for RealPage Intern 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 RealPage. The most common topics and skills that interviewers at RealPage expect are Automation, Coding, Programming, Test Cases and Manual.
What are the top questions asked in RealPage Intern interview?

Some of the top questions asked at the RealPage Intern interview -

  1. Write a program to get a diagonal elements of an ar...read more
  2. What is the difference betweeen Hashmap and Gra...read more
  3. questions mainly from the proj...read more

Tell us how to improve this page.

RealPage Intern Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more
RealPage Intern Salary
based on 4 salaries
₹3 L/yr - ₹10 L/yr
64% more than the average Intern Salary in India
View more details

RealPage Intern Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.1

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

4.5

Work satisfaction

Explore 2 Reviews and Ratings
Process Associate
436 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Process Associate
140 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Developer 2
63 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
60 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
60 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare RealPage with

Yardi Systems

3.7
Compare

MRI Software

3.7
Compare

Buildium

5.0
Compare

Entrata

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