Upload Button Icon Add office photos

Filter interviews by

Reltio Summer Intern Interview Questions and Answers for Freshers

Updated 27 Apr 2024

Reltio Summer Intern Interview Experiences for Freshers

1 interview found

Summer Intern Interview Questions & Answers

user image Anonymous

posted on 27 Apr 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic coding questions were asked

Round 2 - Technical 

(2 Questions)

  • Q1. Programming questions
  • Q2. Basic dp question
Round 3 - Technical 

(1 Question)

  • Q1. Programming questions and projects
Round 4 - HR 

(1 Question)

  • Q1. Behaviour questions

Interview questions from similar companies

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

Round 1 - Coding Test 

Moderate difficult with business reasoning

Round 2 - Technical 

(1 Question)

  • Q1. Prior work Ex mostly and a case study

Interview Preparation Tips

Interview preparation tips for other job seekers - Know SAS products and it's implementation use cases in detail with statistical knowledge
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Database indexing, partitioning, sharding.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
No response

I applied via Company Website and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. What did you do when you weren't provided with enough information on a project
Round 2 - Technical 

(1 Question)

  • Q1. Technical assignment in JS on array traversal
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 was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. Hr ask about basic introduction
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Describe kubernete
  • Ans. 

    Kubernetes is an open-source container orchestration platform for automating deployment, scaling, and management of containerized applications.

    • Kubernetes helps in automating the deployment, scaling, and management of containerized applications.

    • It provides features like self-healing, load balancing, and storage orchestration.

    • Kubernetes uses declarative configuration to define the desired state of the application.

    • It supp...

  • Answered by AI
  • Q2. What is hpa in kubernete
  • Ans. 

    Horizontal Pod Autoscaler (HPA) is a Kubernetes feature that automatically scales the number of pods in a deployment based on CPU or custom metrics.

    • HPA helps ensure optimal resource utilization by automatically adjusting the number of pods in a deployment based on resource usage.

    • It can be configured to scale based on CPU utilization or custom metrics like requests per second.

    • For example, if a deployment is experiencing...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do good study

Skills evaluated in this interview

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

2 questions based on DSA

Round 2 - Technical 

(1 Question)

  • Q1. What is JVM, how garbage collector works
  • Ans. 

    JVM stands for Java Virtual Machine, responsible for executing Java programs. Garbage collector is a part of JVM that manages memory by reclaiming unused objects.

    • JVM is an abstract computing machine that enables a computer to run Java programs.

    • Garbage collector in JVM automatically manages memory by deallocating objects that are no longer needed.

    • Examples of garbage collectors in JVM include Serial, Parallel, CMS, G1, a

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Company culture

Skills evaluated in this interview

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

Coding Assessment - 2 questions

Round 2 - Aptitude Test 

Test duration -90 min , topic - general reasoning

Interview Preparation Tips

Round: Test
Experience: Round 1: Online objective test.
There were questions from Operating Systems, C, Algorithms, Data Structures.

Round 2: Online and subjective (choose language C++ or JAVA). This round had 15 questions.
Data structures, C++ questions, Fibonacci optimisation, algorithms (DFS/BFS).

Round: Technical Interview
Experience: In the first round of interview they asked me questions about :1) My project (asked no. of classes and mention their responsibilities).
2) ACID properties of database and indexing in a database.

There were also questions related to OOPS concepts including polymorphism, composition, aggregation, inheritance, Abstract classes, interface; difference between usage of abstract class and interface, can abstract class be instantiated, how to access child class methods having reference of base class.
There was another question on run time and compile time binding and under which category do we classify method overloading and also questions on code for deleting the duplicate nodes in a sorted link list and printing root to leaf paths in a binary search tree.

Round: Technical Interview
Experience: This was the second round of the interview. They asked me the following questions,There is a tree (not binary) and all non-leaf nodes are RED in colour. Some leaf nodes are white in colour. If a node has all white coloured children then its colour can be changed into white. So we have to convert maximum number of nodes into white colour – write program for the same.
Code for checking whether a given binary tree balanced or not.
What are virtual functions, what is their role?
Questions related to virtual functions.

You are given the details of each transaction of each item i.e. item_name, quantity, price. So at the end of the day, you want top 50 items that have been sold. There are two cases:
In the first case you have fixed number of items.
In the second case very large number of items – so you need to decide what data structure to be used for this.

Round: Technical Interview
Experience: In the third round of the interview they asked questions like :
1) Types of tree traversals (breadth first and depth first (pre, post, in)
2) Determining width of binary tree i.e. using breadth wise traversal
3) Why files are preferred over databases?

College Name: IIT KANPUR

Interview Questionnaire 

11 Questions

  • Q1. Asked about my project? Also asked me questions about ACID properties of database and indexing in a database
  • Q2. There were also questions related to OOPS concepts including polymorphism, composition, aggregation, inheritance, Abstract classes, interface; difference between usage of abstract class and interface, can ...
  • Q3. There was another question on run time and compile time binding and under which category do we classify method overloading
  • Q4. Code for deleting the duplicate nodes in a sorted link list?
  • Ans. 

    Code to delete duplicate nodes in a sorted linked list

    • Traverse the linked list and compare adjacent nodes

    • If nodes are equal, delete one of them

    • Repeat until all duplicates are removed

  • Answered by AI
  • Q5. Printing root to leaf paths in a binary search tree
  • Ans. 

    Printing all root to leaf paths in a binary search tree

    • Traverse the tree recursively and keep track of the current path

    • When a leaf node is reached, add the current path to the list of paths

    • Print all the paths in the list

    • Use an array of strings to store the paths

  • Answered by AI
  • Q6. Given an Array of Integers, Find two elements in the array whose sum is closest to zero?
  • Ans. 

    Find two integers in an array whose sum is closest to zero.

    • Sort the array in ascending order.

    • Initialize two pointers at the beginning and end of the array.

    • Move the pointers towards each other until the sum is closest to zero.

  • Answered by AI
  • Q7. What are virtual functions, what is their role? Questions related to virtual functions?
  • Q8. You are given the details of each transaction of each item i.e. item_name, quantity, price. So at the end of the day, you want top 50 items that have been sold. There are two cases: - In the first case you...
  • Q9. How do you quickly count the number of set bits in a 32-bit integer in linear time (with respect to the number of set bits)?
  • Ans. 

    Count set bits in a 32-bit integer in linear time

    • Use bit manipulation to count set bits

    • Divide the integer into 16-bit chunks and count set bits in each chunk

    • Use lookup tables to count set bits in each 8-bit chunk

    • Use parallel processing to count set bits in multiple integers simultaneously

  • Answered by AI
  • Q10. Determining width of binary tree i.e. using breadth wise traversal
  • Ans. 

    To determine the width of a binary tree using breadth-wise traversal, we need to count the number of nodes at each level.

    • Perform a breadth-first traversal of the binary tree

    • Count the number of nodes at each level

    • Keep track of the maximum number of nodes seen at any level

    • Return the maximum number of nodes seen

  • Answered by AI
  • Q11. Why files are preferred over databases?
  • Ans. 

    Files are preferred over databases for certain types of data and applications.

    • Files are faster for small amounts of data.

    • Files are easier to manage and backup.

    • Files are more flexible for certain types of data, such as images or videos.

    • Databases are better for complex data relationships and queries.

    • Databases are more secure and scalable for large amounts of data.

    • The choice between files and databases depends on the spec

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were questions from Operating Systems, C, Algorithms, Data Structures

Round: Test
Experience: This round had 15 questions.Data structures, C++ questions, algorithms (DFS/BFS)

Skills: java, OOP, Algorithm
College Name: IIT KANPUR

Skills evaluated in this interview

Reltio Interview FAQs

How many rounds are there in Reltio Summer Intern interview for freshers?
Reltio interview process for freshers usually has 4 rounds. The most common rounds in the Reltio interview process for freshers are Technical, Coding Test and HR.
What are the top questions asked in Reltio Summer Intern interview for freshers?

Some of the top questions asked at the Reltio Summer Intern interview for freshers -

  1. Programming questions and proje...read more
  2. Programming questi...read more
  3. Basic dp quest...read more

Tell us how to improve this page.

Reltio Summer Intern Interview Process for Freshers

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TIBCO Software Interview Questions
3.6
 • 45 Interviews
Informatica Interview Questions
3.5
 • 27 Interviews
View all
Software Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Product Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Devops Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Reltio with

Talend Data Integration Services

4.0
Compare

Informatica

3.5
Compare

TIBCO Software

3.6
Compare

SAS

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