Upload Button Icon Add office photos

Filter interviews by

Revivo Technologies Interview Questions, Process, and Tips

Updated 23 Dec 2024

Top Revivo Technologies Interview Questions and Answers

Revivo Technologies Interview Experiences

Popular Designations

4 interviews found

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

I applied via LinkedIn and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Interview with Founder 

(3 Questions)

  • Q1. Basic Details based on the resume. Background, skills etc.
  • Q2. Some questions about Projects and Technologies involved
  • Q3. Merge Sort Algorithm
  • Ans. 

    Merge Sort is a divide and conquer algorithm that divides the input array into two halves, sorts them recursively, and then merges them back together.

    • Divide the array into two halves

    • Recursively sort each half

    • Merge the sorted halves back together

    • Time complexity is O(n log n)

    • Example: [38, 27, 43, 3, 9, 82, 10] -> [38, 27, 43] [3, 9, 82, 10] -> [38, 27] [43] [3, 9] [82, 10] -> [27, 38] [43] [3, 9] [10, 82] ->

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Revivo Technologies Java Developer interview:
  • Java
  • DSA
  • Spring Framework
  • SQL
  • Web Technologies

Skills evaluated in this interview

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (4)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How to construct basic JPA
  • Ans. 

    Basic JPA construction involves creating entity classes, defining relationships, and configuring persistence settings.

    • Create entity classes with @Entity annotation

    • Define relationships between entities using @OneToOne, @OneToMany, @ManyToOne, @ManyToMany annotations

    • Configure persistence settings in persistence.xml file

    • Use EntityManager to interact with the database

  • Answered by AI
  • Q2. Difference between arrays and linked list
  • Ans. 

    Arrays store elements in contiguous memory locations, while linked lists store elements in nodes with pointers to the next node.

    • Arrays have constant time access to elements using index, while linked lists have linear time access.

    • Arrays have fixed size, while linked lists can dynamically grow and shrink.

    • Insertions and deletions are faster in linked lists as compared to arrays.

    • Example: Array - ['apple', 'banana', 'cherry

  • Answered by AI

Skills evaluated in this interview

Backend Developer Interview Questions asked at other Companies

Q1. Vertical Order Traversal of a Binary Tree Given a binary tree, your task is to return the vertical order traversal of its nodes' values. For each node located at a position (X, Y), its left child will be at (X-1, Y-1) and its right child wi... read more
View answer (1)
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Why are you fit for this role.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is http protocol, request param etc.?
  • Ans. 

    HTTP protocol is a set of rules for transferring data over the internet. Request parameters are data sent with an HTTP request.

    • HTTP protocol stands for Hypertext Transfer Protocol and is used for communication between web servers and clients.

    • Request parameters are key-value pairs sent in the URL or body of an HTTP request to provide additional information to the server.

    • Example: In a GET request, parameters can be inclu

  • Answered by AI
  • Q2. How do we fetch from services and repositories?
  • Ans. 

    Fetching from services and repositories involves making API calls to retrieve data.

    • Use HTTP requests to communicate with services and repositories

    • Utilize libraries like Axios or Fetch for making API calls

    • Handle responses asynchronously to retrieve data

    • Parse and process the data received from services and repositories

    • Implement error handling for failed requests

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (219)

Revivo Technologies interview questions for popular designations

 Software Engineer

 (1)

 Backend Developer

 (1)

 Java Developer

 (1)

 National Account Manager

 (1)

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself and technical knowledge.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay calm you will achieve it.

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

Interview Questionnaire 

2 Questions

  • Q1. About my previous work experience
  • Q2. About achievements

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good. I was asked everything in detail and the managers make you comfortable enough so that answer each and evry question

I applied via Naukri.com and was interviewed before Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Online technical MCQ exam you have to clear..
  • Q2. After online technical MCQ telephonic round approx 30min.

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic knowledge will be asked at technical round.
Be confident while giving answer.


Based on prior experience they will ask questions.

Interview Questionnaire 

1 Question

  • Q1. Ques related to spring, rest web services

Interview Preparation Tips

Interview preparation tips for other job seekers - Average difficulty, smooth process

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

2 coding questions and 20 mcq
 

  • Q1. 

    Rotting Oranges Problem Statement

    You are given a grid containing oranges where each cell of the grid can contain one of the three integer values:

    • 0 - representing an empty cell
    • 1 - representing a fre...
  • Ans. 

    Find the minimum time required to rot all fresh oranges in a grid.

    • Use Breadth First Search (BFS) to simulate the rotting process.

    • Track the time taken to rot all oranges and return -1 if any fresh oranges remain.

    • Handle edge cases like no fresh oranges or all oranges already rotten.

    • Consider using a queue to efficiently process adjacent oranges.

    • Ensure to update the grid with the new state of oranges after each second.

  • Answered by AI
  • Q2. 

    Calculate Sum of Proper Divisors

    Given a natural number N, return the sum of all its proper divisors.

    A proper divisor of Y is defined as a number X such that X < Y and Y % X = 0.

    Example:

    Input:
    T...
  • Ans. 

    Calculate the sum of proper divisors of a given natural number.

    • Iterate from 1 to sqrt(N) and check for divisors

    • If a divisor is found, add it to the sum and also add N/divisor if it is not the same as divisor

    • Return the sum as the result

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

Technical interview

  • Q1. 

    Rearrange Array to Form Largest Number

    Given an array ARR consisting of non-negative integers, rearrange the numbers to form the largest possible number. The digits within each number cannot be changed.

    ...

  • Ans. 

    Rearrange the array elements to form the largest possible number by concatenating them.

    • Sort the array elements in a custom comparator function to get the largest number.

    • Convert the sorted array elements to strings and concatenate them to form the final number.

    • Handle cases where the numbers have the same prefix by comparing the concatenated forms.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in DelhiEligibility criteriaCriteria not revealed to candidateAmazon interview preparation:Topics to prepare for the interview - Array, Linkedlist, Tree, Graph, Stack, OOPS, Geeksforgeeks archives, coding ninjas interview experience blogsTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Be clear about whatever you have mentioned in resume, don't mention buzz words, because interviewer can go in depth
Tip 2 : Along with DS and Algo, if you have 3-4 months experience or internship experience, then be ready to answer scenario based technical questions like scaling the application that you developed and design concepts that can be used for improving
Tip 3 : Last but most important tip is to be calm through out the whole process ,don't loose hope if any round didn't go well ,if you have explained your thought process there is still chance to procees to next round so keep preparating for next rounds.

Application resume tips for other job seekers

Tip 1 : Keep it one page resume and mention keywords which align with your technical and personal competencies.
Tip 2 : Mention 3-4 projects in the order that , project which you can explain best should be at top,then the next, and so on.

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Round 1 is quit easy , only verbal ability is little bit difficult. So anyone can easy to qualify round.

Round 2 - Technical 

(1 Question)

  • Q1. Round 2 is also easy. They will about your self, 2-3 basic technical questions and about project that you have done previously.
Round 3 - HR 

(1 Question)

  • Q1. Round 3 is basically non- eliminating round.They will ask basic questions just like your job preferance, ambitions etc.

Interview Preparation Tips

Topics to prepare for Capgemini Analyst interview:
  • Programing language
  • DBMS
  • OOPS
Interview preparation tips for other job seekers - Prepared with basic of programming questions. Have a clear understanding of your that you worked.

Revivo Technologies Interview FAQs

How many rounds are there in Revivo Technologies interview?
Revivo Technologies interview process usually has 1 rounds. The most common rounds in the Revivo Technologies interview process are Technical and One-on-one Round.
How to prepare for Revivo Technologies 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 Revivo Technologies. The most common topics and skills that interviewers at Revivo Technologies expect are Communication Skills, Convincing Power, Negotiation, Pressure Handling and Sales Ability.
What are the top questions asked in Revivo Technologies interview?

Some of the top questions asked at the Revivo Technologies interview -

  1. What is http protocol, request param et...read more
  2. How do we fetch from services and repositori...read more
  3. Difference between arrays and linked l...read more

Tell us how to improve this page.

Revivo Technologies Interview Process

based on 5 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k Interviews
Accenture Interview Questions
3.8
 • 8.3k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Amazon Interview Questions
4.0
 • 5.1k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.9k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
View all

Revivo Technologies Reviews and Ratings

based on 4 reviews

2.1/5

Rating in categories

2.4

Skill development

2.2

Work-life balance

2.3

Salary

1.8

Job security

1.8

Company culture

1.8

Promotions

2.0

Work satisfaction

Explore 4 Reviews and Ratings
Compare Revivo Technologies with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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