Upload Button Icon Add office photos
Engaged Employer

i

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

Cactus Communications Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Cactus Communications Medical Editor Interview Questions and Answers

Updated 4 Apr 2022

Cactus Communications Medical Editor Interview Experiences

2 interviews found

Interview Questionnaire 

1 Question

  • Q1. How will be the interview process

Medical Editor Interview Questions & Answers

user image bittersweetmatata

posted on 4 Apr 2022

I applied via Naukri.com and was interviewed before Apr 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was a language test

Round 2 - Assignment 

It was an editing test

Round 3 - HR 

(5 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. Tell me about yourself.
  • Q3. Why are you looking for a change?
  • Q4. What are your salary expectations?
  • Q5. Why should we hire you?
Round 4 - HR 

(3 Questions)

  • Q1. Regarding the timings whether I'm comfortable with the timings and deadlines.
  • Q2. I said I would be comfortable as it is full-time job that I can do from home, I was OK with the timings.
  • Q3. Salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Initially they paid well. Then suddenly they started paying very little for every assignment. Expecting more work to be done for the minimal pay.

Medical Editor Interview Questions Asked at Other Companies

Interview questions from similar companies

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

I was interviewed in Dec 2024.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. Tell about past responsibilities
  • Ans. 

    Managed a team of 10 employees, delegated tasks, and ensured project deadlines were met.

    • Managed team of 10 employees

    • Delegated tasks effectively

    • Ensured project deadlines were met

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

(1 Question)

  • Q1. Give editing test
  • Ans. 

    Editing test for Team Lead position

    • Ensure correct grammar and punctuation

    • Check for consistency in formatting and style

    • Verify accuracy of information provided

    • Make sure the content is clear and concise

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good for freshers and initials few years. Later work gets monotonous. Certain higher management is too toxic that makes long-term stay in the company impossible.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2023. 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. Casting related basic questions
  • Q2. Exhaust system related deep questions
  • Q3. GD & T basic questions
Round 3 - Technical 

(2 Questions)

  • Q1. Sheet metal /casting design considerations
  • Ans. 

    Considerations for sheet metal and casting design

    • Thickness of the material affects strength and cost

    • Design for manufacturability to minimize waste and cost

    • Consider material properties like ductility and heat resistance

    • Include features for easy assembly and maintenance

    • Account for shrinkage in casting design

  • Answered by AI
  • Q2. Practically showing the cast part and ask to decide parting line, design methodology and details.
Round 4 - Assignment 

3D modelling cad test - one part was given and I had to make parametric part in Creo.

Interview Preparation Tips

Interview preparation tips for other job seekers - 3D modelling is critical.

Skills evaluated in this interview

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

Easy and simple interview

Round 2 - HR 

(2 Questions)

  • Q1. Experience related questions
  • Q2. Why this company
  • Ans. 

    I chose this company for its innovative approach to team leadership and commitment to employee growth.

    • Strong focus on employee development and growth opportunities

    • Innovative approach to team leadership and collaboration

    • Positive company culture and values alignment

    • Impressive track record of success and growth

    • Exciting projects and opportunities for professional advancement

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Mar 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Test planning and project management questions

Interview Preparation Tips

Round: Test
Experience: Approx. 30.questions in 50 min
Tips: Try solving each que in less than a minute ,don't waste time on difficult questions, complete easier once first
Duration: 50 minutes
Total Questions: 30

College Name: Pimpri chinchwad college of engineering

Interview Questionnaire 

2 Questions

  • Q1. Salary discussion and notice period
  • Q2. Core java, collections and coding

Interview Preparation Tips

Round: Manager Round
Experience: About project and previous company experience , daily activity

Interview Questionnaire 

2 Questions

  • Q1. About what we worked in previous company project
  • Q2. General C programming questions and previous company project questions

I was interviewed before Mar 2021.

Round 1 - Face to Face 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Medium

The interviewer was really cool. He realized that I mostly work on java applications so he chose to ask me stuff related to that. He didn't want me to know the answer well but just wanted me to approach to it, maybe think more. He went through my resume back and forth and asked mostly about all my projects and their logic and how could I take them to the next level.
Tips: Be confident. Its okay not to know any answer, just try giving it a shot in the approach.

  • Q1. What is the difference between an abstract class and an interface in Java?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, member variables, and methods with implementation.

    • Interface can only have abstract methods and constants.

    • A class can implement multiple interfaces but can only extend one abstract class.

    • Example: Abstract class - Animal with abstract method 'eat', Interface - Flyable with m

  • Answered by AI
  • Q2. What is the difference between 'final', 'finally', and 'finalize' in Java?
  • Ans. 

    final is a keyword used to declare constants, finally is a block used in exception handling, and finalize is a method used for cleanup.

    • final is a keyword used to declare constants in Java, meaning the value cannot be changed once assigned. Example: final int x = 10;

    • finally is a block used in exception handling to ensure a piece of code is always executed, whether an exception is thrown or not. Example: try { // code } ...

  • Answered by AI
  • Q3. What is the difference between the private and final access modifiers in Java?
  • Ans. 

    Private restricts access to the class itself, while final prevents inheritance and method overriding.

    • Private access modifier restricts access to the class itself, while final access modifier prevents inheritance and method overriding.

    • Private members are only accessible within the same class, while final classes cannot be extended and final methods cannot be overridden.

    • Example: private int num; - num can only be accesse...

  • Answered by AI
  • Q4. What are the steps for establishing a JDBC connection?
  • Ans. 

    Establishing a JDBC connection involves loading the driver, creating a connection, creating a statement, executing queries, and handling exceptions.

    • Load the JDBC driver using Class.forName() method

    • Create a connection using DriverManager.getConnection() method

    • Create a statement using connection.createStatement() method

    • Execute queries using statement.executeQuery() method

    • Handle exceptions using try-catch blocks

  • Answered by AI
  • Q5. What is JSON?
  • Ans. 

    JSON is a lightweight data interchange format used to store and transmit data between a server and a web application.

    • JSON stands for JavaScript Object Notation.

    • It is easy for humans to read and write, and easy for machines to parse and generate.

    • JSON is language-independent and can be used with any programming language.

    • Example: {"name": "John", "age": 30}

    • Example: [{"name": "Alice", "age": 25}, {"name": "Bob", "age": 35}

  • Answered by AI
  • Q6. What do you know about garbage collection in Java?
  • Ans. 

    Garbage collection in Java is the process of automatically managing memory by deallocating objects that are no longer needed.

    • Garbage collection helps in preventing memory leaks by reclaiming memory used by objects that are no longer referenced.

    • Java uses a garbage collector to automatically manage memory, unlike languages like C++ where memory management is manual.

    • Garbage collection in Java can be triggered by calling S...

  • Answered by AI
Round 2 - HR 

Round duration - 30 minutes
Round difficulty - Easy

I wouldn't say it went great but it was fine. I did not think I would clear it as for most of the questions the interviewer seemed disappointed and wanted more out of me.

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPACerner Corporation interview preparation:Topics to prepare for the interview - Object Oriented Programming (OOP) Basics, Basics Of Machine Learning, Data Structures and Algorithms, Database Management, Java ProgrammingTime required to prepare for the interview - 5 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Cactus Communications Interview FAQs

How many rounds are there in Cactus Communications Medical Editor interview?
Cactus Communications interview process usually has 4 rounds. The most common rounds in the Cactus Communications interview process are HR, Aptitude Test and Assignment.
How to prepare for Cactus Communications Medical Editor 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 Cactus Communications. The most common topics and skills that interviewers at Cactus Communications expect are Clinical Research, Ayurveda, Cardiology, Dentistry and Editing.

Recently Viewed

INTERVIEWS

Cactus Communications

No Interviews

LIST OF COMPANIES

Cactus Communications

Locations

REVIEWS

Xtancia Technosoft

No Reviews

INTERVIEWS

Cactus Communications

No Interviews

INTERVIEWS

ScoreMe Solutions

5.6k top interview questions

REVIEWS

GE Healthcare

No Reviews

SALARIES

ScoreMe Solutions

JOBS

iSchoolConnect Technologies

No Jobs

JOBS

Stap Management Consultants

No Jobs

INTERVIEWS

Cactus Communications

No Interviews

Tell us how to improve this page.

Interview Questions from Similar Companies

KPIT Technologies Interview Questions
3.4
 • 281 Interviews
Chetu Interview Questions
3.3
 • 173 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
AVASOFT Interview Questions
3.7
 • 155 Interviews
Brane Enterprises Interview Questions
2.0
 • 134 Interviews
ivy Interview Questions
3.6
 • 122 Interviews
DE Shaw Interview Questions
3.8
 • 120 Interviews
ServiceNow Interview Questions
4.1
 • 120 Interviews
Axtria Interview Questions
3.1
 • 115 Interviews
View all

Fast track your campus placements

View all
Cactus Communications Medical Editor Salary
based on 17 salaries
₹1 L/yr - ₹9 L/yr
At par with the average Medical Editor Salary in India
View more details

Cactus Communications Medical Editor Reviews and Ratings

based on 3 reviews

3.0/5

Rating in categories

3.6

Skill development

2.6

Work-life balance

3.4

Salary

2.4

Job security

4.4

Company culture

3.0

Promotions

3.4

Work satisfaction

Explore 3 Reviews and Ratings
Editor
41 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Manager
30 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Correspondent/Assistant Editor/Associate Editor
30 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Editor
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
26 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Cactus Communications with

Enago

4.4
Compare

Crimson Interactive

2.9
Compare

Wordvice

4.0
Compare

TridIndia IT Translation Services

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