AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Engaged Employer

i

This company page is being actively managed by Oriserve Team. If you also belong to the team, you can get access from here

Oriserve Verified Tick

Compare button icon Compare button icon Compare
2.9

based on 27 Reviews

  • About
  • Reviews
    27
  • Salaries
    193
  • Interviews
    7
  • Jobs
    2
  • Benefits
    1
  • Photos
    -

Filter interviews by

Oriserve Interview Questions and Answers

Updated 5 Mar 2025
Popular Designations

7 Interview questions

A Backend Developer was asked 9mo ago
Q. Explain async/await in JavaScript.
Ans. 

async await in JavaScript is a way to write asynchronous code in a synchronous manner.

  • async functions return a Promise

  • await keyword is used to pause the execution of async functions until a Promise is settled

  • async/await makes asynchronous code easier to read and write compared to using callbacks or Promises

View all Backend Developer interview questions
A Backend Developer was asked 9mo ago
Q. Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least twice in the array, and it should return false if every element is disti...
Ans. 

Find and return the duplicate element in an array of strings.

  • Iterate through the array and keep track of elements seen so far using a hash set.

  • If an element is already in the hash set, return it as the duplicate element.

  • Example: ['apple', 'banana', 'apple', 'orange'] should return 'apple' as the duplicate element.

View all Backend Developer interview questions
A Frontend Developer Intern was asked 9mo ago
Q. What is React DOM?
Ans. 

React DOM is a package that provides DOM-specific methods that can be used to render React components.

  • React DOM is used to render React components in the DOM.

  • It provides methods like ReactDOM.render() to render components.

  • React DOM takes care of updating the DOM to match the React components.

View all Frontend Developer Intern interview questions
An Associate Software Engineer was asked
Q. Explain how hoisting affects the output of setTimeout when using var.
Ans. 

Understanding setTimeout and variable hoisting in JavaScript is crucial for predicting output behavior.

  • setTimeout schedules a function to run after a specified delay, but it does not block code execution.

  • Variables declared with 'var' are hoisted to the top of their scope, meaning they are accessible before their declaration.

  • Example: console.log(a); var a = 5; // Output: undefined, due to hoisting.

  • If setTimeout is ...

View all Associate Software Engineer interview questions
A Frontend Developer Intern was asked 9mo ago
Q. What is SPA and how is react SPA?
Ans. 

SPA stands for Single Page Application. React is a popular JavaScript library for building SPAs.

  • SPA is a web application that loads a single HTML page and dynamically updates the page as the user interacts with it.

  • React is a JavaScript library for building user interfaces, including SPAs.

  • React uses a virtual DOM to efficiently update the UI without reloading the entire page.

  • React Router is commonly used with React...

View all Frontend Developer Intern interview questions
An Associate Software Engineer was asked
Q. Agrregation pipeline in mongodb
Ans. 

Aggregation pipeline in MongoDB is a framework for data aggregation operations.

  • Pipeline stages are used to process documents in a collection.

  • Operators like $match, $group, $project are used in pipeline stages.

  • Results can be transformed, sorted, grouped, and filtered using aggregation pipeline.

  • Example: db.collection.aggregate([{$match: {field: value}}, {$group: {_id: '$field', count: {$sum: 1}}}, {$sort: {count: -1...

View all Associate Software Engineer interview questions
A Software Engineer was asked 6mo ago
Q. Cant specify
Ans. 

The question was related to designing a scalable system for handling large amounts of data.

  • Focus on distributed systems and scalability

  • Consider using technologies like Hadoop, Spark, or Kafka

  • Discuss strategies for data partitioning and replication

View all Software Engineer interview questions
Are these interview questions helpful?

Oriserve Interview Experiences

7 interviews found

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 18 Dec 2024

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

(2 Questions)

  • Q1. Cant specify as per company policy
  • Add your answer
  • Q2. Cant specify
  • Ans. 

    The question was related to designing a scalable system for handling large amounts of data.

    • Focus on distributed systems and scalability

    • Consider using technologies like Hadoop, Spark, or Kafka

    • Discuss strategies for data partitioning and replication

  • Answered by AI
    Add your answer
Round 2 - Coding Test 

.Cant specify as per company policy

Round 3 - One-on-one 

(1 Question)

  • Q1. Cant specify as per company policy
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest, innovative and curious.
Anonymous

Backend Developer Intern Interview Questions & Answers

user image Ganshyam Shukla

posted on 5 Mar 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Feb 2025.

Round 1 - Technical 

(2 Questions)

  • Q1. DSA question of DP
  • Add your answer
  • Q2. Backend and Database discussion
  • Add your answer
Anonymous

Frontend Developer Intern Interview Questions & Answers

user image Anonymous

posted on 5 Sep 2024

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is react dom?
  • Ans. 

    React DOM is a package that provides DOM-specific methods that can be used to render React components.

    • React DOM is used to render React components in the DOM.

    • It provides methods like ReactDOM.render() to render components.

    • React DOM takes care of updating the DOM to match the React components.

  • Answered by AI
    Add your answer
  • Q2. What is SPA and how is react SPA?
  • Ans. 

    SPA stands for Single Page Application. React is a popular JavaScript library for building SPAs.

    • SPA is a web application that loads a single HTML page and dynamically updates the page as the user interacts with it.

    • React is a JavaScript library for building user interfaces, including SPAs.

    • React uses a virtual DOM to efficiently update the UI without reloading the entire page.

    • React Router is commonly used with React to h...

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Backend Developer Interview Questions & Answers

user image Anonymous

posted on 16 Sep 2024

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

(2 Questions)

  • Q1. Duplicate element in array
  • Ans. 

    Find and return the duplicate element in an array of strings.

    • Iterate through the array and keep track of elements seen so far using a hash set.

    • If an element is already in the hash set, return it as the duplicate element.

    • Example: ['apple', 'banana', 'apple', 'orange'] should return 'apple' as the duplicate element.

  • Answered by AI
    Add your answer
  • Q2. Async await in js
  • Ans. 

    async await in JavaScript is a way to write asynchronous code in a synchronous manner.

    • async functions return a Promise

    • await keyword is used to pause the execution of async functions until a Promise is settled

    • async/await makes asynchronous code easier to read and write compared to using callbacks or Promises

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Devops Engineer Interview Questions & Answers

user image Anonymous

posted on 26 Jul 2024

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

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

Round 1 - HR 

(2 Questions)

  • Q1. Profile Related
  • Add your answer
  • Q2. Internship Related
  • Add your answer
Round 2 - Technical 

(1 Question)

  • Q1. Project Related
  • Add your answer
Round 3 - Case Study 

CI-CD related pipeline using Git, Jinkins.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on the basics.
Anonymous

Associate Software Engineer Interview Questions & Answers

user image Anonymous

posted on 25 May 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Nov 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Asked about Javascripts output based questions and some questions of Mongo DB
  • Add your answer
  • Q2. One question related to setTimeout output based whose answer was lying in hoisting of var
  • Ans. 

    Understanding setTimeout and variable hoisting in JavaScript is crucial for predicting output behavior.

    • setTimeout schedules a function to run after a specified delay, but it does not block code execution.

    • Variables declared with 'var' are hoisted to the top of their scope, meaning they are accessible before their declaration.

    • Example: console.log(a); var a = 5; // Output: undefined, due to hoisting.

    • If setTimeout is used ...

  • Answered by AI
    Add your answer
Round 2 - Discussion with lead 

(2 Questions)

  • Q1. I was asked show my project repos and then was asked about questions related to those code and mongo queries
  • Add your answer
  • Q2. Agrregation pipeline in mongodb
  • Ans. 

    Aggregation pipeline in MongoDB is a framework for data aggregation operations.

    • Pipeline stages are used to process documents in a collection.

    • Operators like $match, $group, $project are used in pipeline stages.

    • Results can be transformed, sorted, grouped, and filtered using aggregation pipeline.

    • Example: db.collection.aggregate([{$match: {field: value}}, {$group: {_id: '$field', count: {$sum: 1}}}, {$sort: {count: -1}}])

  • Answered by AI
    Add your answer

Interview Preparation Tips

Topics to prepare for Oriserve Associate Software Engineer interview:
  • node.js
  • Javascript
  • MongoDB

Skills evaluated in this interview

Anonymous

Software Engineer Trainee Interview Questions & Answers

user image Mazhar Alam

posted on 29 Mar 2024

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

Palindrome question asked to solved in 10 minutes

Round 2 - HR 

(2 Questions)

  • Q1. Normal hr question
  • Add your answer
  • Q2. Why you want to join
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Gdjhwwoysf
Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Oriserve?
Ask anonymously on communities.

Interview questions from similar companies

company Logo

Intern Interview Questions & Answers

Cognizant user image vagmi gupta

posted on 13 Jul 2022

I appeared for an interview before Jul 2021.

Round 1 - Technical 

(2 Questions)

  • Q1. About your project and s1kills
  • Add your answer
  • Q2. Interview went well .
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare atleast one language or technology
Anonymous
company Logo

Data Analyst Interview Questions & Answers

Amazon user image himanshu kohli

posted on 31 May 2021

I applied via Walk-in and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Introducing your self
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Anonymous
company Logo

Associate Interview Questions & Answers

Amazon user image Anonymous

posted on 23 Feb 2020

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Ans. 

    Amazon's innovation, customer focus, and diverse opportunities align with my career goals and values.

    • Customer Obsession: Amazon prioritizes customer satisfaction, evident in initiatives like Prime and personalized recommendations.

    • Innovation: The company is a leader in technology and logistics, constantly pushing boundaries with services like AWS and drone delivery.

    • Diversity of Roles: Amazon offers a wide range of caree...

  • Answered by AI
    Add your answer
  • Q2. What do you expect from Amazon?
  • Ans. 

    I expect Amazon to foster innovation, provide growth opportunities, and maintain a customer-centric culture.

    • Opportunities for professional development, such as training programs and mentorship.

    • A collaborative work environment that encourages teamwork and idea sharing.

    • Access to cutting-edge technology and resources to drive innovation.

    • A strong focus on customer satisfaction, ensuring that every decision prioritizes the ...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way
Anonymous
More about working at Oriserve
  • IT Services & Consulting
  • 51-200 Employees (India)
  • Emerging Technologies

Oriserve Interview FAQs

How many rounds are there in Oriserve interview?
Oriserve interview process usually has 1-2 rounds. The most common rounds in the Oriserve interview process are Technical, HR and Coding Test.
How to prepare for Oriserve 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 Oriserve. The most common topics and skills that interviewers at Oriserve expect are Javascript, Digital Marketing, Project Management, MongoDB and Python.
What are the top questions asked in Oriserve interview?

Some of the top questions asked at the Oriserve interview -

  1. One question related to setTimeout output based whose answer was lying in hoist...read more
  2. What is SPA and how is react S...read more
  3. Agrregation pipeline in mong...read more

Tell us how to improve this page.

Oriserve Interviews By Designations

  • Oriserve Devops Engineer Interview Questions
  • Oriserve Software Engineer Trainee Interview Questions
  • Oriserve Software Engineer Interview Questions
  • Oriserve Backend Developer Interview Questions
  • Oriserve Frontend Developer Intern Interview Questions
  • Oriserve Backend Developer Intern Interview Questions
  • Oriserve Associate Software Engineer Interview Questions

Interview Questions for Popular Designations

  • Team Lead Interview Questions
  • Software Engineer Interview Questions
  • Intern Interview Questions
  • Business Analyst Interview Questions
  • Consultant Interview Questions
  • Java Developer Interview Questions
  • Senior Software Engineer Interview Questions
  • System Engineer Interview Questions
  • Show more
  • Manager Interview Questions
  • Deputy Manager Interview Questions

Overall Interview Experience Rating

4.1/5

based on 10 interview experiences

Difficulty level

Easy 25%
Moderate 50%
Hard 25%

Duration

Less than 2 weeks 75%
2-4 weeks 25%
View more

Interview Questions from Similar Companies

TCS
TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact
Genpact Interview Questions
3.7
 • 3.4k Interviews
View all

Oriserve Reviews and Ratings

based on 27 reviews

2.9/5

Rating in categories

2.5

Skill development

3.0

Work-life balance

3.0

Salary

2.8

Job security

2.9

Company culture

2.7

Promotions

2.7

Work satisfaction

Explore 27 Reviews and Ratings
Jobs at Oriserve
Oriserve
Oriserve - Sales Head - BFSI Domain (5-10 yrs)

5-10 Yrs

Not Disclosed

Oriserve
Oriserve - Senior Business Analyst (4-7 yrs)

4-7 Yrs

Not Disclosed

Explore more jobs
Oriserve Salaries in India
Software Engineer
22 salaries
unlock blur

₹8 L/yr - ₹14 L/yr

Software Developer
10 salaries
unlock blur

₹8 L/yr - ₹12 L/yr

Business Analyst
6 salaries
unlock blur

₹7 L/yr - ₹12.2 L/yr

Associate Software Engineer
6 salaries
unlock blur

₹6.5 L/yr - ₹8.5 L/yr

Data Scientist
5 salaries
unlock blur

₹10 L/yr - ₹12.5 L/yr

Explore more salaries
Compare Oriserve with
TCS

TCS

3.6
Compare
Accenture

Accenture

3.7
Compare
Wipro

Wipro

3.7
Compare
Cognizant

Cognizant

3.7
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Oriserve Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter