Upload Button Icon Add office photos
Engaged Employer

i

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

WebMD Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

WebMD Senior Medical Writer Interview Questions and Answers

Updated 23 Jan 2023

WebMD Senior Medical Writer Interview Experiences

1 interview found

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

I applied via Approached by Company 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 - HR 

(2 Questions)

  • Q1. About your background, education, expectations, and some questions to see if we fit their criteria
  • Q2. What was your previous experience? What is your educational qualification? Where do you live?
Round 3 - Assignment 

I was given a topic on septoplasty and was asked to summarise it

Round 4 - One-on-one 

(1 Question)

  • Q1. Why do you want this job? Are you ready to face challenges

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and provide a spotless assignment for you to get selected

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Mar 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Completely about asking the process how we do work, to check if we literally do it or not.
  • Q2. Explain the process. Will ask about Sections
Round 3 - Case Study 

Written exam was given. It had 2 qus papers.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have done the work for wht they are hiring, its easy thing fr u. You will get it easily.

Interview Questionnaire 

2 Questions

  • Q1. Salary discussion
  • Q2. Body system working anatomy

Interview Preparation Tips

Round: Test
Experience: Quite exciting knowledgeable
Tips: No tips
Duration: 1 hour
Total Questions: 50

Round: HR Interview
Experience: Each detailed information was very constructive
Tips: No tipd

Round: Technical Interview
Experience: I was lil confused scared but faced it and got selected
Tips: No

College Name: Mithibai College

I applied via Naukri.com and was interviewed in Sep 2018. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Asked about the technology which we mention in the resume.And in my first round interviewers asked me the questions in MVC and Sql server.
  • Q2. Life cycle of MVC, last project Architecture.Group by in SQL and entity framework

Interview Preparation Tips

General Tips: Architecture of the project. Confidence lebel and problem solving skills
Skills: Communication, Problem Solving, Analytical Skills
Duration: 1-4 weeks

I applied via Referral and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on microservices, java, spring
Round 2 - Technical 

(1 Question)

  • Q1. This was a Design round
Round 3 - Technical 

(1 Question)

  • Q1. This was a Behavioral round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your fundamentals clear about java, spring and microservices

I applied via Recruitment Consultant and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. ICD related questions
  • Q2. Guidelines 2020 updated

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong and brave about your answer
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Related to Current work and according to you Resume
Round 2 - HR 

(1 Question)

  • Q1. General discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Being honestly
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Write test case for a phone What does CQ page for defect consist of
  • Ans. 

    Test case for a phone involves checking various functionalities like calling, texting, internet browsing, camera, etc.

    • Test making a phone call

    • Test sending a text message

    • Test browsing the internet

    • Test taking a photo with the camera

    • Test playing a video

    • Test connecting to Bluetooth device

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. Xhzsnskmsmmbnnnnnn
  • Q2. D. Nennmnmmllksme

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I appeared for an interview in Jul 2022.

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 

They ask you open Hacker Earth site and choose some random programs and ask you to complete it.

Round 3 - Technical 

(6 Questions)

  • Q1. What is multi threading
  • Ans. 

    Multi threading is the ability of a program to perform multiple tasks concurrently.

    • It allows for better utilization of CPU resources

    • It can improve program performance and responsiveness

    • Examples include web servers handling multiple requests simultaneously and video games rendering graphics while processing user input

  • Answered by AI
  • Q2. What is extend keyword
  • Ans. 

    The extend keyword is used to add properties and methods to an existing object.

    • Used in JavaScript to add properties and methods to an object

    • Can be used to inherit properties and methods from a parent object

    • Syntax: Object.assign(target, ...sources)

    • Example: const obj1 = {a: 1}; const obj2 = {b: 2}; const obj3 = {...obj1, ...obj2};

  • Answered by AI
  • Q3. Explain override. Why we need virtual?
  • Ans. 

    Override is used to provide a new implementation of a method in a subclass. Virtual is needed to allow the method to be overridden.

    • Override is used to change the behavior of a method in a subclass

    • Virtual is used to allow the method to be overridden in a subclass

    • Without virtual, a subclass cannot override a method from its parent class

    • Override is used to implement polymorphism in object-oriented programming

  • Answered by AI
  • Q4. Write a program to sort the array and remove duplicates.
  • Ans. 

    Program to sort and remove duplicates from an array.

    • Use built-in sort() method to sort the array in ascending order.

    • Loop through the sorted array and remove duplicates using filter() method.

    • Return the sorted and duplicate-free array.

  • Answered by AI
  • Q5. What is Is Relationship and As Relationship in oops?
  • Ans. 

    Is Relationship and As Relationship are two types of relationships in object-oriented programming.

    • Is Relationship is a type of relationship where one class is a subset of another class.

    • As Relationship is a type of relationship where one class is a type of another class.

    • Is Relationship is denoted by a solid line with a closed arrowhead pointing towards the superclass.

    • As Relationship is denoted by a dotted line with an o...

  • Answered by AI
  • Q6. What are architectural, structural, behavioural design patterns? Why we need them?
  • Ans. 

    Architectural, structural, and behavioral design patterns are reusable solutions to common software design problems.

    • Architectural patterns define the overall structure of a software system

    • Structural patterns describe how objects and classes can be combined to form larger structures

    • Behavioral patterns focus on communication between objects and how they operate together

    • Design patterns help to improve software quality, ma...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with basic programming and algorithms.

Skills evaluated in this interview

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 - One-on-one 

(1 Question)

  • Q1. Past work experience explanation, skill set and technical requirements
Round 3 - Coding Test 

Skill test and technical knowledge evaluation

Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself, preferred work location and expected salary.

Interview Preparation Tips

Interview preparation tips for other job seekers - Maintain patience and ask them your questions . Have regular follow ups

WebMD Interview FAQs

How many rounds are there in WebMD Senior Medical Writer interview?
WebMD interview process usually has 4 rounds. The most common rounds in the WebMD interview process are Resume Shortlist, HR and Assignment.

Tell us how to improve this page.

WebMD Senior Medical Writer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Apollo Hospitals Interview Questions
4.1
 • 347 Interviews
Max Healthcare Interview Questions
4.1
 • 137 Interviews
UnitedHealth Interview Questions
4.0
 • 82 Interviews
Labcorp Interview Questions
4.1
 • 40 Interviews
View all
WebMD Senior Medical Writer Salary
based on 4 salaries
₹8 L/yr - ₹20.9 L/yr
23% more than the average Senior Medical Writer Salary in India
View more details
Software Engineer
88 salaries
unlock blur

₹5.9 L/yr - ₹19.9 L/yr

Senior Software Engineer
78 salaries
unlock blur

₹10.9 L/yr - ₹35 L/yr

Project Manager
36 salaries
unlock blur

₹10 L/yr - ₹20 L/yr

Senior QA Engineer
21 salaries
unlock blur

₹7.3 L/yr - ₹25.5 L/yr

QA Engineer
20 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Explore more salaries
Compare WebMD with

Apollo Hospitals

4.1
Compare

GeBBS Healthcare Solutions

3.7
Compare

UnitedHealth

4.0
Compare

Max Healthcare

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