Upload Button Icon Add office photos

Filter interviews by

Dr Baba Sahib Ambedkar Medical College and Hospital Interview Questions, Process, and Tips for Freshers

Updated 3 Jan 2025

Top Dr Baba Sahib Ambedkar Medical College and Hospital Interview Questions and Answers for Freshers

Dr Baba Sahib Ambedkar Medical College and Hospital Interview Experiences for Freshers

Popular Designations

2 interviews found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Ultrasound difference between benign and malignant lesions ?
  • Q2. Fetal anomaly scan level 2 ,what do you evaluate ?
  • Q3. Obstetric Doppler in emergency ?

Senior Resident Radiology Interview Questions asked at other Companies

Q1. Fetal anomaly scan level 2 ,what do you evaluate ?
Add answer

I applied via Company Website and was interviewed in Mar 2020. There were 2 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What are medicine and surgical emergencies?
  • Q2. About dengue covid

Interview Preparation Tips

Interview preparation tips for other job seekers - If u have done ur internship with full heart and have practical knowledge that is must in our field then u gonna get it easily

Junior Resident Doctor Interview Questions asked at other Companies

Q1. What is the pathology related viral infection especially SARS COVID19
View answer (2)

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jul 2019. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Here they have work basically based on windows. So better to have c# and windows related stuff. Like win32, mfc, .net, c# . Here in my case I did not have experience in windows to ki made them clear about ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Two technical rounds were there and one more technical round with US panel were there. They were very cooperative.

I applied via Company Website and was interviewed in Nov 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Got offer letter directly through email based on previous performance
  • Q2. Not applicable

Interview Preparation Tips

Interview preparation tips for other job seekers - Follow the profile instruction and previous performance
Round 1 - One-on-one 

(2 Questions)

  • Q1. Question doesn't matter
  • Q2. Question doesn't really care
Round 2 - Aptitude Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - I request you all never ever try to think to be a part of lido learning.. trust me it's a fraud company. All they want is money and they don't care about their employees. They have hire and fire policy. If lido would be last option for you never though of considering that.. just wait and search for better opportunity. Just have faith on urself you will get better in ur life without lido learning.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2023. There were 3 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 

Medium level coding question

Round 3 - Technical 

(2 Questions)

  • Q1. Intreview round asked about project mentioned in CV
  • Q2. Basic of reacts, opps question,sql queries
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 Oct 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 - Assignment 

Implement login with Google SSO, show emails in a single place

Round 3 - One-on-one 

(4 Questions)

  • Q1. How to implement JWT
  • Ans. 

    JWT can be implemented by generating a token with user information and a secret key, then verifying the token using the same secret key.

    • Generate a JWT token with user information and a secret key

    • Include necessary claims like expiration time, issuer, etc.

    • Verify the JWT token using the same secret key

    • Handle token expiration and refresh if needed

  • Answered by AI
  • Q2. Please read about it on the internet, do take care of public and private key use
  • Q3. Middleware in express, how to create one?
  • Ans. 

    Middleware in Express is a function that has access to the request and response objects.

    • Create a middleware function using app.use() method in Express.

    • Middleware functions have access to the request object (req), the response object (res), and the next middleware function in the application's request-response cycle.

    • Example: app.use((req, res, next) => { console.log('This is a middleware function'); next(); });

  • Answered by AI
  • Q4. Read about it on the internet
Round 4 - One-on-one 

(6 Questions)

  • Q1. Discussed about guards in Angular
  • Q2. Read about it on the internet
  • Q3. How does lazy loading work in Angular
  • Ans. 

    Lazy loading in Angular delays loading of modules until they are needed

    • Lazy loading helps improve performance by only loading modules when they are required

    • It is achieved by using the loadChildren property in the route configuration

    • Lazy loaded modules are loaded asynchronously when the user navigates to the corresponding route

  • Answered by AI
  • Q4. Read about lazy loading in Angular
  • Q5. How to enable SSR in Angular
  • Ans. 

    Server-side rendering (SSR) in Angular can be enabled by using Angular Universal.

    • Install Angular Universal using Angular CLI

    • Create a new Angular Universal project

    • Update app.module.ts to include server-side rendering

    • Build and run the Angular Universal project

  • Answered by AI
  • Q6. Read about Angular Universal for this

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare Angular concepts, DSA and Ruby on Rails concepts for the round

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Find duplicates in an array
  • Ans. 

    Use a hash set to find duplicates in an array of strings.

    • Create a hash set to store unique elements.

    • Iterate through the array and check if the element is already in the hash set.

    • If it is, then it is a duplicate. If not, add it to the hash set.

  • Answered by AI
  • Q2. Find single duplicate element in an array where contents of the array are length of array - 1
  • Ans. 

    Find the single duplicate element in an array of strings with length n-1.

    • Iterate through the array and use a HashSet to keep track of elements seen so far.

    • If an element is already in the HashSet, that is the duplicate element.

    • Return the duplicate element once found.

  • Answered by AI
Round 2 - Assignment 

Create a student support system

Round 3 - One-on-one 

(1 Question)

  • Q1. Design an order and payments system for an EdTech company
  • Ans. 

    Design an order and payments system for an EdTech company

    • Allow users to browse and select courses

    • Implement a shopping cart for users to add courses

    • Integrate payment gateways for secure transactions

    • Provide order confirmation and receipt to users

    • Allow users to track their order status

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. About my past experiences

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice recommendation
Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Nov 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 

3 questions in 3 hr, topics were Dp, Strings, Tree

Round 3 - Aptitude Test 

1hr durations 40 questions, main topics were patterns, profit loss, work man , etc.

Round 4 - Technical 

(1 Question)

  • Q1. OOPS, JAVA, Mysql, general questsjons

Interview Preparation Tips

Topics to prepare for Internshala Software Engineer interview:
  • java
  • Android
  • DSA
  • OOPS
Interview preparation tips for other job seekers - Just prepare what you know and deep dive in it so that you can fully explain about them.

Dr Baba Sahib Ambedkar Medical College and Hospital Interview FAQs

How many rounds are there in Dr Baba Sahib Ambedkar Medical College and Hospital interview for freshers?
Dr Baba Sahib Ambedkar Medical College and Hospital interview process for freshers usually has 1 rounds. The most common rounds in the Dr Baba Sahib Ambedkar Medical College and Hospital interview process for freshers are Technical.
What are the top questions asked in Dr Baba Sahib Ambedkar Medical College and Hospital interview for freshers?

Some of the top questions asked at the Dr Baba Sahib Ambedkar Medical College and Hospital interview for freshers -

  1. What are medicine and surgical emergenci...read more
  2. Fetal anomaly scan level 2 ,what do you evaluat...read more
  3. Ultrasound difference between benign and malignant lesion...read more

Tell us how to improve this page.

Dr Baba Sahib Ambedkar Medical College and Hospital Interview Process for Freshers

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Internshala Interview Questions
3.9
 • 56 Interviews
Lido Learning Interview Questions
2.3
 • 55 Interviews
Coding Ninjas Interview Questions
3.7
 • 49 Interviews
Doubtnut Interview Questions
3.4
 • 38 Interviews
ZoomRx Interview Questions
3.0
 • 36 Interviews
View all

Dr Baba Sahib Ambedkar Medical College and Hospital Reviews and Ratings

based on 21 reviews

3.5/5

Rating in categories

3.4

Skill development

3.4

Work-life balance

3.0

Salary

3.0

Job security

3.2

Company culture

2.9

Promotions

3.3

Work satisfaction

Explore 21 Reviews and Ratings
Senior Resident Doctor
18 salaries
unlock blur

₹15 L/yr - ₹18.1 L/yr

Junior Resident Doctor
14 salaries
unlock blur

₹4.7 L/yr - ₹12.4 L/yr

Senior Resident
10 salaries
unlock blur

₹13 L/yr - ₹20 L/yr

Assistant Professor
5 salaries
unlock blur

₹12 L/yr - ₹15 L/yr

Tutor
5 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Explore more salaries
Compare Dr Baba Sahib Ambedkar Medical College and Hospital with

Quality Austria Central Asia

3.5
Compare

Intellipaat Software Solutions

3.1
Compare

Becton Dickinson

4.0
Compare

Vidal Health Insurance

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