Upload Button Icon Add office photos

Filter interviews by

Rhombus Pharma Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Analyst Interview Questions & Answers

Sysmex user image Abhishek Loiwal

posted on 30 Aug 2015

Interview Questionnaire 

4 Questions

  • Q1. Why healthcare?
  • Q2. Why Sysmex?
  • Q3. Tell us something about yourself and your interests, both technical as well as non-technical
  • Q4. Do you see yourself working in Japan?
  • Ans. 

    Yes, I am open to working in Japan.

    • I am fascinated by Japanese culture and would love to experience it firsthand.

    • I have researched the job market in Japan and believe there are opportunities that align with my skills and interests.

    • I am willing to learn the language and adapt to the work culture in Japan.

    • I believe working in Japan would broaden my perspective and enhance my professional development.

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Shortlisted. CPI did not matter as much as the projects and research experience, along with previous internsips
Tips: Resume skills must match the profile of the Internship to be shortlisted. In my case, the candidate finally selected had pursued an internship in Healthcare. (Sysmex being a company in the health-care sector)

Round: HR Interview
Experience: Short 10 minute interview conducted by an Indian and a Japanese recruiter. Basic HR questions. And discussing some resume points.
Tips: Be sure to mention something about Japan, and how you could see yourself working there in future. Important for Japanese companies in general.

Round: Technical Interview
Experience: Few basic questions about the projects mentioned in the resume. Skype interview with an official from Kobe, Japan. Some HR questions again as mentioned in the HR interview section.
Tips: Explain your resume points well.

General Tips: Be cool. Know your resume well. Praise Japan and show a willingness to work there.
Skill Tips: Project in healthcare a big plus point.
Skills: Data analysis, Research experience ,
College Name: IIT Bombay
Motivation: Big name, internship profile of my choice.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is your previous work experience?
  • Q2. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - It is a great place to work, offering exciting opportunities in any department.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. What is your previous experience?
  • Q2. What are your salary expectations?

Interview Preparation Tips

Interview preparation tips for other job seekers - Positive contributions and a supportive company culture.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is your previous experience?
  • Q2. What was your previous salary?
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
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 - Case Study 

Packing, dispensing , work details, any work that done before

Round 3 - Technical 

(1 Question)

  • Q1. Describe your self , when can you join
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Detailed question on Lena six Sigma
  • Q2. What will you do if your workers doesn't follow your instructions.
  • Q3. What is your long term and short term professional plan

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Genuine, don't bit around the bush.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Jan 2023. There were 5 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 - Aptitude Test 

General question and programmatic, oopa data structure

Round 3 - Coding Test 

Any program of python or java , c

Round 4 - Technical 

(1 Question)

  • Q1. Any of technical questions
Round 5 - HR 

(1 Question)

  • Q1. Any of questions like programatic etc
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jul 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the Virtual DOM?
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM in memory, used for efficient updates in web development.

    • Virtual DOM is a concept in React where a lightweight copy of the actual DOM is kept in memory.

    • Changes are first made to the Virtual DOM, then compared with the actual DOM to minimize updates.

    • This approach improves performance by reducing the number of direct manipulations to the actual DOM.

  • Answered by AI
  • Q2. How can we optimize the code in front end ?
Round 2 - Technical 

(2 Questions)

  • Q1. Why we use use effect and how will you implement the search feature
  • Ans. 

    useEffect is used in React to perform side effects in function components. Implement search feature by using useEffect to update search results.

    • useEffect is used to perform side effects in function components, such as data fetching, subscriptions, or manually changing the DOM.

    • To implement search feature, you can use useEffect to update search results whenever the search query changes.

    • Example: useEffect(() => { // co...

  • Answered by AI
  • Q2. Usememo and use callback, useref, use statehooks
Round 3 - HR 

(1 Question)

  • Q1. Background verification and CTC expectations
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Asked mainly react concepts
  • Q2. Usestate , useref, usememo, virtual dom
  • Q3. Asked me to do the todoapp
Round 2 - Technical 

(1 Question)

  • Q1. Real time implimetation questions

Interview Preparation Tips

Topics to prepare for WellDoc Software Engineer interview:
  • React js
  • Virtual DOM
  • Optimization
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. What is pipeline
  • Ans. 

    A pipeline is a set of data processing stages where the output of one stage is the input to the next.

    • Data flows through multiple stages, each performing a specific operation.

    • Example: In a CI/CD pipeline, code is built, tested, and deployed sequentially.

    • Pipelines can be used in data processing, like ETL (Extract, Transform, Load) processes.

    • In software development, pipelines automate repetitive tasks, improving efficienc...

  • Answered by AI
  • Q2. Difference between out and ref key word
  • Ans. 

    The 'out' keyword allows a method to return multiple values, while 'ref' allows a method to modify an existing variable.

    • The 'out' keyword is used to pass arguments to a method that are intended to be assigned a value within that method.

    • Example of 'out': void GetValues(out int x, out int y) { x = 10; y = 20; } GetValues(out int a, out int b); // a = 10, b = 20

    • The 'ref' keyword is used to pass arguments by reference, all...

  • Answered by AI

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Rhombus Pharma Reviews and Ratings

based on 6 reviews

4.5/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

4.5

Salary

4.3

Job security

4.5

Company culture

4.3

Promotions

4.5

Work satisfaction

Explore 6 Reviews and Ratings
QA Executive
4 salaries
unlock blur

₹2.2 L/yr - ₹3.2 L/yr

QC Executive
4 salaries
unlock blur

₹2 L/yr - ₹2.9 L/yr

QA Officer
4 salaries
unlock blur

₹2.3 L/yr - ₹2.5 L/yr

Head Quality Assurance
3 salaries
unlock blur

₹10.4 L/yr - ₹11 L/yr

Quality Control Officer
3 salaries
unlock blur

₹1.2 L/yr - ₹1.5 L/yr

Explore more salaries
Compare Rhombus Pharma with

Kepler Healthcare

3.4
Compare

Zeiss Pharma

3.4
Compare

Aakash Health Care

3.7
Compare

Apicore Pharmaceuticals

3.6
Compare
write
Share an Interview