Upload Button Icon Add office photos
Engaged Employer

i

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

Elsevier Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Elsevier Interview Questions and Answers for Freshers

Updated 11 Mar 2025

Elsevier Interview Experiences for Freshers

Popular Designations

3 interviews found

Interview Questions & Answers

user image Anonymous

posted on 30 Nov 2024

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Email Writing 

(2 Questions)

  • Q1. Write an email to customer promoting a new product
  • Q2. Write a farewell email to your current teammates
  • Ans. 

    Writing a farewell email to current teammates

    • Express gratitude for the time spent working together

    • Share fond memories or inside jokes

    • Offer best wishes for the future

    • Provide contact information for staying in touch

    • Express willingness to help in the future if needed

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Some questions about you and things on your resume
  • Q2. Competency based questions. They'll give you a scenario and ask you whether you have encountered that situation and how you handled it.

Interview Questions & Answers

user image Saswoti Nath

posted on 7 Jun 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. What was your job role in your previous job
  • Q2. What was the biggest mistake you made when you were in your last job
Interview experience
1
Bad
Difficulty level
-
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions of Magento and project details on previous companys
Round 2 - Technical 

(1 Question)

  • Q1. How to handle the tickets and task
  • Ans. 

    Tickets and tasks can be handled by prioritizing, assigning, tracking progress, and communicating effectively.

    • Prioritize tickets based on urgency and impact on users.

    • Assign tasks to team members based on their expertise and workload.

    • Track progress using project management tools like Jira or Trello.

    • Communicate effectively with team members and stakeholders to provide updates and gather feedback.

    • Regularly review and upda

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Asking more personal and degrade cheaply they mostly go and join another company

Senior Software Engineer L3 Interview Questions asked at other Companies

Q1. High Level Design of an app similar to Shazam
View answer (1)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Assignment 

They will give javascript coding(based on your role)question we need to solve and submit the solution

Round 2 - Technical 

(1 Question)

  • Q1. Asked basic js questions and some logical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be perfect in the basic conscepts
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jul 2023. There were 4 interview rounds.

Round 1 - Coding Test 

Dsa question about maps

Round 2 - Technical 

(2 Questions)

  • Q1. Design robotic restaurant
  • Ans. 

    Robotic restaurant design for automated food preparation and delivery

    • Implement robotic arms for cooking and food preparation

    • Utilize conveyor belts for transporting dishes to customers

    • Incorporate automated order taking and payment systems

    • Design a user-friendly interface for customers to place orders and customize meals

    • Ensure efficient cleaning and maintenance processes for the robots

  • Answered by AI
  • Q2. How to achieve fault tolerance
  • Ans. 

    Achieve fault tolerance by implementing redundancy, monitoring systems, and graceful degradation.

    • Implement redundancy by having backup systems in place to take over in case of failure

    • Monitor systems continuously to detect faults and address them proactively

    • Use graceful degradation to ensure that the system remains functional even if certain components fail

  • Answered by AI
Round 3 - Coding Test 

Design coupon system based on reqs

Round 4 - Technical 

(2 Questions)

  • Q1. Brute force algo
  • Q2. Cdn type questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. How nodejs works internally?
  • Ans. 

    Node.js is a runtime environment that executes JavaScript code outside of a web browser.

    • Node.js uses the V8 JavaScript engine from Google Chrome to execute code.

    • It is built on the event-driven, non-blocking I/O model, making it lightweight and efficient.

    • Node.js uses a single-threaded event loop to handle multiple concurrent connections.

    • It has a built-in module system that allows developers to easily add functionality t

  • Answered by AI
  • Q2. Std input output questions of js

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

DSA Hackerrank assessment

Round 2 - Technical 

(2 Questions)

  • Q1. DSA questions - Tree, Binary Search
  • Q2. 2sum various approaches
  • Ans. 

    The 2sum problem involves finding two numbers in an array that add up to a given target.

    • One approach is to use a hash table to store the complement of each number as we iterate through the array.

    • Another approach is to sort the array and use two pointers, one starting from the beginning and the other from the end, to find the pair.

    • If the array is sorted, we can also use binary search to find the complement of each numbe

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

It was a 90 minute coding test, involving 3 problems:
1-Given points on a 2d plane, you can delete one point, what is the minimum maximum distance you can have?
2-LFU Cache
3-Given an array with elements 0,1, your task is to find number of ways to divide this array into contiguous chunks so that each chunk has only one 1 in it.

Round 3 - Technical 

(2 Questions)

  • Q1. How do you avoid method overriding?
  • Ans. 

    To avoid method overriding, make the method final or private.

    • Declare the method as final to prevent it from being overridden in subclasses.

    • Declare the method as private to hide it from subclasses.

    • Use the @Override annotation to ensure that a method is actually overriding a superclass method.

  • Answered by AI
  • Q2. What is the 'finalize' keyword for?
  • Ans. 

    The 'finalize' keyword is used in Java to perform cleanup operations before an object is garbage collected.

    • The 'finalize' method is called by the garbage collector before reclaiming an object's memory.

    • It can be used to release resources like closing files or sockets.

    • It is not recommended to rely on 'finalize' for resource cleanup as it is not guaranteed to be called.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for your DSA problems.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Nov 2021. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the use of namespace in Php?
  • Ans. 

    Namespace in PHP is used to avoid naming conflicts between classes, functions, and variables.

    • Namespace allows grouping of related classes, functions, and variables under a common name.

    • It helps in organizing code and makes it easier to maintain.

    • Namespace can be declared using the 'namespace' keyword followed by the namespace name.

    • Example: namespace MyNamespace;

    • To use a class or function from a namespace, we need to spec...

  • Answered by AI
  • Q2. Difference between interface and abstract class
  • Ans. 

    Interface defines only method signatures while abstract class can have both method signatures and implementations.

    • An interface can be implemented by multiple classes while an abstract class can only be extended by one class.

    • An abstract class can have constructors while an interface cannot.

    • An abstract class can have non-abstract methods while an interface can only have abstract methods.

    • An abstract class can have instanc...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong oops skills expected
For Php, get knowledge about latest concepts

Skills evaluated in this interview

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

I applied via Indeed and was interviewed before Jan 2022. There were 4 interview rounds.

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 - Coding Test 

Practical module need to solve and execute the progream

Round 3 - Technical 

(3 Questions)

  • Q1. Need the linux server commands and OOP concept, CSS, etc
  • Q2. All relavent of the oops, css, aws, mysql related questions. Eg: Primary key vs Unique. Write the joins query for left and inner join. Cat command for linux server. hide vs invisible. block ns display Abs...
  • Q3. Write a program for login page with using session Database design for one example given by interviewer Palindrome program
  • Ans. 

    Program for login page with session and palindrome program

    • Create a login page with HTML and CSS

    • Use PHP to handle form submission and validate user credentials

    • Create a session for the logged-in user

    • Design a database to store user information

    • Write a program to check if a given string is a palindrome

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. For our last company of the project details and module discussion. And Technology tech interview

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. You must say your answer with confident
2. Basic technic questions and answer needs to know for your field
3. You should develop your's developing skills with relatime exmples. Like Duplicate removing, reverse the input, Loop and Loop with index concept, OOPs concepts (optional if this has yours field)
4. If you had work with database means, better you know the design of the db and connecion through the program.
5. API intergrations and UI design (optional If you had work in that otherwise needs to know the basic things)
6. Domain knowledge is most important. Example what kind of projects done by your office. If you are fresher means, better you have to search, which company you are going to interview, know those companies project, technics, and tools.

Skills evaluated in this interview

Elsevier Interview FAQs

How many rounds are there in Elsevier interview for freshers?
Elsevier interview process for freshers usually has 2 rounds. The most common rounds in the Elsevier interview process for freshers are Technical, One-on-one Round and HR.
How to prepare for Elsevier interview for freshers?
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 Elsevier. The most common topics and skills that interviewers at Elsevier expect are CI CD Pipeline, AWS, Active Directory, Ansible and Azure DevOps.
What are the top questions asked in Elsevier interview for freshers?

Some of the top questions asked at the Elsevier interview for freshers -

  1. How to handle the tickets and t...read more
  2. Write an email to customer promoting a new prod...read more
  3. Case study - Gave real time company problem and asked how to approach and prior...read more
How long is the Elsevier interview process?

The duration of Elsevier interview process can vary, but typically it takes about 2-4 weeks to complete.

Tell us how to improve this page.

Elsevier Interview Process for Freshers

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Cimpress Interview Questions
4.0
 • 62 Interviews
Times Group Interview Questions
3.8
 • 27 Interviews
SiliconIndia Interview Questions
2.7
 • 25 Interviews
Group Bayport Interview Questions
4.1
 • 22 Interviews
Xerox Interview Questions
3.8
 • 21 Interviews
View all

Fast track your campus placements

View all

Elsevier Reviews and Ratings

based on 143 reviews

4.4/5

Rating in categories

4.0

Skill development

4.4

Work-life balance

4.0

Salary

4.0

Job security

4.2

Company culture

3.5

Promotions

4.1

Work satisfaction

Explore 143 Reviews and Ratings
Journal Manager
55 salaries
unlock blur

₹4.3 L/yr - ₹12 L/yr

Data Analyst
47 salaries
unlock blur

₹3.2 L/yr - ₹12.9 L/yr

Senior Software Engineer
40 salaries
unlock blur

₹11 L/yr - ₹31 L/yr

Senior Quality Engineer
32 salaries
unlock blur

₹17 L/yr - ₹21 L/yr

Software Engineer III
32 salaries
unlock blur

₹7.2 L/yr - ₹22 L/yr

Explore more salaries
Compare Elsevier with

Dainik Bhaskar Group

4.3
Compare

TNQ Tech Private Limited

3.6
Compare

Times Group

3.8
Compare

OMICS International

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