Upload Button Icon Add office photos

Filter interviews by

Oriserve Interview Questions, Process, and Tips

Updated 18 Dec 2024

Top Oriserve Interview Questions and Answers

View all 6 questions

Oriserve Interview Experiences

Popular Designations

6 interviews found

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

(2 Questions)

  • Q1. Cant specify as per company policy
  • 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
Round 2 - Coding Test 

.Cant specify as per company policy

Round 3 - One-on-one 

(1 Question)

  • Q1. Cant specify as per company policy

Interview Preparation Tips

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

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 (180)

Rate your
company

🤫 100% anonymous

How was your last interview experience?

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

I applied via campus placement at Jaypee Institute of Information Technology, Noida 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
  • 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

Skills evaluated in this interview

Frontend Developer Intern Interview Questions asked at other Companies

Q1. Last Stone WeightWe have a collection of 'N' stones, each stone has a positive integer weight. On each turn, we choose the two heaviest stones and smash them together. Suppose the stones have weights 'x' and 'y' with 'x' <= 'y'. The resu... read more
View answer (3)
Oriserve Interview Questions and Answers for Freshers
illustration image
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
  • 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

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
Add answer
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
  • Q2. Internship Related
Round 2 - Technical 

(1 Question)

  • Q1. Project Related
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.

Devops Engineer Interview Questions asked at other Companies

Q1. Reverse the String Problem Statement You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string. Example: Input: STR = "abcde" Output: "edcba" Input: The first line of input cont... read more
View answer (1)

Oriserve interview questions for popular designations

 Associate Software Engineer

 (1)

 Backend Developer

 (1)

 Devops Engineer

 (1)

 Frontend Developer Intern

 (1)

 Software Engineer

 (1)

 Software Engineer Trainee

 (1)

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

I was interviewed in Nov 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Asked about Javascripts output based questions and some questions of Mongo DB
  • Q2. One question related to setTimeout output based whose answer was lying in hoisting of var
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
  • 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

Interview Preparation Tips

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

Skills evaluated in this interview

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (1)
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
  • Q2. Why you want to join

Interview Preparation Tips

Interview preparation tips for other job seekers - Gdjhwwoysf

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
Add answer

Jobs at Oriserve

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Sale price on on day
  • Q2. Start working

Interview Preparation Tips

Interview preparation tips for other job seekers - Fofocus heavily on networking, tailoring your resume with relevant keywords, actively following up with potential employers, showcasing your sales skills in interviews through storytelling, and monitoring companies you're interested in to stay updated on opportunities.
Key points to remember:
Prioritize networking:
Utilize your network to connect with people in the industry, attend industry events, and leverage platforms like LinkedIn to build relationships with potential hiring managers.
Tailor your resume:
Include relevant sales keywords throughout your resume to catch the attention of recruiters and ensure your experience aligns with the job description.
Practice your sales pitch:
Prepare compelling stories from your past experiences to demonstrate your ability to close deals, overcome objections, and build rapport during interviews.
Follow up consistently:
After submitting applications, send personalized follow-up emails to maintain engagement with potential employers.
Research companies:
Actively monitor companies you're interested in by following their social media and news to stay informed about potential openings.
Highlight transferable skills:
Even if you lack direct sales experience, emphasize skills like communication, persuasion, relationship building, and problem-solving that translate well to a sales role.
Ask insightful questions:
During interviews, demonstrate your knowledge of the company and role by asking thoughtful questions that show your genuine interest.
Be enthusiastic and confident:
Convey a positive attitude and express your passion for sales to make a strong impression on potential employers.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Feb 2025.

Round 1 - Technical 

(5 Questions)

  • Q1. Can you provide information about yourself and the projects you have worked on?
  • Q2. What is the Re-Framework, and how do the Dispatcher, Performer, and DataTable transaction approaches function in UiPath?
  • Q3. What is the difference between an execute query and an execute non-query?
  • Q4. What is the difference between a switch statement and an if-else statement?
  • Q5. Datatable how to use it in Uipath, what is a connection string and how we can create that?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Aptitude Test 

The exam consists of seven sections, and the cutoff score is quite high; it is essential to complete the exam thoroughly.

Round 2 - One-on-one 

(5 Questions)

  • Q1. Can you tell me about yourself?
  • Q2. Can you provide details about your internship experience?
  • Q3. Given a puzzle to solve
  • Q4. What can you tell me about your major projects?
  • Q5. What is the latest news you have heard regarding technology?

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay composed, exhibit confidence, and ensure effective communication.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Feb 2025.

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. Expected CTC
  • Q3. Why you left your previous company (Negative answers should be avoided)
Round 2 - Technical 

(3 Questions)

  • Q1. Questions based on the concepts of payroll
  • Q2. Expected CTC
  • Q3. Discussion regards to Shift timings, Cab facility, Annual leaves, Variable bonus, Relocate bonus.
Round 3 - Behavioral 

(1 Question)

  • Q1. Regards to Payroll questions on what I did on daily basis.
Contribute & help others!
anonymous
You can choose to be anonymous

Oriserve Interview FAQs

How many rounds are there in Oriserve interview?
Oriserve interview process usually has 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, MongoDB, Project Management, Digital Marketing and AWS.
What are the top questions asked in Oriserve interview?

Some of the top questions asked at the Oriserve interview -

  1. What is SPA and how is react S...read more
  2. Agrregation pipeline in mong...read more
  3. What is react d...read more

Recently Viewed

INTERVIEWS

Boeing

85 interviews

INTERVIEWS

Apexon

135 interviews

INTERVIEWS

Xogene

8 interviews

INTERVIEWS

OpenBet

3 interviews

INTERVIEWS

ABB

233 interviews

INTERVIEWS

Worley

No Interviews

INTERVIEWS

Endava

No Interviews

Tell us how to improve this page.

Oriserve Interview Process

based on 8 interviews

Interview experience

4.6
  
Excellent
View more

Saint-Gobain

We thank our employees for rating us 4/5 on AmbitionBox

Interview Questions from Similar Companies

Flipkart Interview Questions
4.0
 • 1.4k Interviews
Paytm Interview Questions
3.3
 • 776 Interviews
Swiggy Interview Questions
3.8
 • 439 Interviews
BigBasket Interview Questions
3.9
 • 357 Interviews
Zomato Interview Questions
3.7
 • 322 Interviews
Blinkit Interview Questions
3.7
 • 183 Interviews
Ola Cabs Interview Questions
3.4
 • 143 Interviews
Urban Company Interview Questions
3.4
 • 135 Interviews
MakeMyTrip Interview Questions
3.7
 • 122 Interviews
BookMyShow Interview Questions
3.9
 • 23 Interviews
View all

Oriserve Reviews and Ratings

based on 21 reviews

3.0/5

Rating in categories

2.5

Skill development

3.1

Work-life balance

3.1

Salary

2.8

Job security

2.8

Company culture

2.7

Promotions

2.8

Work satisfaction

Explore 21 Reviews and Ratings
Software Engineer
18 salaries
unlock blur

₹5 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

Zomato

3.8
Compare

Swiggy

3.8
Compare

BigBasket

3.9
Compare

Blinkit

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent