Upload Button Icon Add office photos

Filter interviews by

Kamineni Hospitals Surveillance Officer Interview Questions and Answers

Updated 2 Nov 2023

Kamineni Hospitals Surveillance Officer Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(7 Questions)

  • Q1. What is the full form nvr
  • Ans. 

    NVR stands for Network Video Recorder.

    • NVR is a device used to record video footage from security cameras onto a hard drive or storage device.

    • It is commonly used in surveillance systems to store and manage video recordings.

    • NVRs are often connected to IP cameras and can be accessed remotely over a network.

    • They offer features like motion detection, scheduled recording, and easy search capabilities.

  • Answered by AI
  • Q2. Network video recorder
  • Q3. What is the full form dvr
  • Ans. 

    DVR stands for Digital Video Recorder.

    • DVR is a device that records video in a digital format to a disk drive, USB flash drive, SD memory card, SSD or other local or networked mass storage device.

    • It is commonly used for surveillance systems to record video footage for security purposes.

    • DVRs can be standalone units or part of a surveillance system that includes cameras and a monitoring station.

  • Answered by AI
  • Q4. Digital video recoder
  • Q5. What is the full form cctv
  • Ans. 

    Closed Circuit Television

    • CCTV stands for Closed Circuit Television

    • It is a system in which video cameras transmit signals to a specific set of monitors for surveillance purposes

    • Commonly used for security and monitoring in public areas, businesses, and homes

  • Answered by AI
  • Q6. Close circuit television
  • Q7. Have you experience certificates
  • Ans. 

    Yes, I have experience certificates in surveillance and security.

    • I have completed a surveillance training course and received a certificate.

    • I have obtained certifications in security protocols and procedures.

    • I have attended workshops and seminars related to surveillance techniques and received certificates of completion.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus in your worked

Interview questions from similar companies

I applied via Other and was interviewed before Oct 2017. There were 2 interview rounds.

Interview Preparation Tips

Round: Resume Shortlist
Experience: Internal vacancy

General Tips: It was a technical and test in writing then after shortlisting interview with HR and Department head for personal and general topics and knowledge of the company if any and to test stress level
Then Medical test
Posting in the respective plant where vacancy was there as allotted by the departmental head
Skills: Language, Communication, Presentation Skills
Duration: 1-4 weeks

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops concepts JVM questions String programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on java,selenium they look for jebhave and leanft

I applied via LinkedIn and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. HTML, CSS, JS and angular fundamentals

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on fundamentals first
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I appeared for an interview in Nov 2023.

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 

(1 Question)

  • Q1. Tell me about yourself
Round 3 - One-on-one 

(2 Questions)

  • Q1. Job briefing by reporting manager
  • Q2. What is my job role
Round 4 - One-on-one 

(2 Questions)

  • Q1. Unit Head paras
  • Q2. Job overview , catagory, marketing achivements
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 Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About payroll and compliance
  • Q2. About Manpower Planning
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Aug 2023. There were 2 interview rounds.

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 - Technical 

(6 Questions)

  • Q1. React hooks, Explain using code
  • Ans. 

    React hooks are functions that let you use state and other React features without writing a class.

    • Hooks are functions that let you use state and other React features in functional components

    • useState() is a hook that allows you to add state to functional components

    • useEffect() is a hook that allows you to perform side effects in functional components

    • useContext() is a hook that allows you to use the context API in functio

  • Answered by AI
  • Q2. Factory Patterns?
  • Q3. Liskov Substitution Principle
  • Ans. 

    Liskov Substitution Principle states that objects of a superclass should be replaceable with objects of its subclasses without affecting the program's correctness.

    • Subtypes must be substitutable for their base types.

    • Derived classes must be able to replace their base classes without affecting the program's behavior.

    • Violating this principle can lead to unexpected behavior and errors in the code.

    • Example: If a program expec...

  • Answered by AI
  • Q4. Oops Concept and give examples
  • Ans. 

    Oops concept is a programming paradigm that focuses on objects and classes.

    • Oops stands for Object-Oriented Programming

    • Key concepts include inheritance, encapsulation, polymorphism, and abstraction

    • Examples: Class Car with properties like make, model, and methods like start(), stop()

    • Example: Inheritance - Class SUV extends Car and adds property numSeats

  • Answered by AI
  • Q5. JQuery - Ajax mechanisms
  • Q6. Docker and Kubernetes - Azure concepts

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Core Java and Spring Boot Questions.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 2022. There were 5 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 - Technical 

(1 Question)

  • Q1. What is call,bind,apply
  • Ans. 

    call, bind, and apply are methods used to manipulate the value of 'this' in JavaScript functions.

    • Call invokes a function with a specified 'this' value and arguments provided individually.

    • Bind creates a new function that, when called, has its 'this' keyword set to the provided value.

    • Apply invokes a function with a specified 'this' value and arguments provided as an array.

    • All three methods are used to control the value o...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Explain about angular,nodejs,expressjs
  • Ans. 

    Angular is a front-end framework, Node.js is a back-end runtime environment, and Express.js is a web application framework for Node.js.

    • Angular is used for building dynamic single-page applications (SPAs) with HTML, CSS, and TypeScript.

    • Node.js is used for building scalable network applications and is based on the V8 JavaScript engine.

    • Express.js is a minimal and flexible Node.js web application framework that provides a ...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. About Ge healthcare ,culture,salary
Round 5 - One-on-one 

(1 Question)

  • Q1. More about ge healthcare

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on JS,nodejs architecture coding skills

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2022. 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 

Two Easy questions to be solved

Round 3 - Technical 

(3 Questions)

  • Q1. Some Technical based questions
  • Q2. It was amazing . Interviewer asked me to code for heap sort and asked me to explain.
  • Q3. Write a code for heap sort algorithm and explain it?
  • Ans. 

    Heap sort is a comparison-based sorting algorithm that uses a binary heap data structure.

    • Heap sort works by building a binary heap from the array and then repeatedly extracting the maximum element and placing it at the end of the array.

    • The heap is maintained as a complete binary tree, where each parent node is greater than or equal to its children.

    • The time complexity of heap sort is O(n log n) and it is an in-place sor...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for GE Healthcare Software Developer interview:
  • C++
  • C
  • Python
Interview preparation tips for other job seekers - Learn very well and expertise in one coding language. To be have a clear vision on theory concepts like OS, DBMS, OOPS, CN...etc.

Skills evaluated in this interview

Kamineni Hospitals Interview FAQs

How many rounds are there in Kamineni Hospitals Surveillance Officer interview?
Kamineni Hospitals interview process usually has 2 rounds. The most common rounds in the Kamineni Hospitals interview process are Resume Shortlist and Technical.
What are the top questions asked in Kamineni Hospitals Surveillance Officer interview?

Some of the top questions asked at the Kamineni Hospitals Surveillance Officer interview -

  1. What is the full form ...read more
  2. What is the full form ...read more
  3. What is the full form c...read more

Tell us how to improve this page.

Kamineni Hospitals Surveillance Officer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Paras Hospital Interview Questions
4.4
 • 82 Interviews
Pacific BPO Interview Questions
3.5
 • 79 Interviews
GE Healthcare Interview Questions
4.0
 • 72 Interviews
Advantmed Interview Questions
3.6
 • 51 Interviews
Redcliffe Labs Interview Questions
4.0
 • 48 Interviews
Nephroplus Interview Questions
3.9
 • 34 Interviews
View all
Staff Nurse
36 salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Lab Technician
14 salaries
unlock blur

₹1.1 L/yr - ₹4 L/yr

Assistant Manager
10 salaries
unlock blur

₹4.2 L/yr - ₹6 L/yr

Hospital Pharmacist
9 salaries
unlock blur

₹1.8 L/yr - ₹3.5 L/yr

Housekeeping Supervisor
8 salaries
unlock blur

₹1.5 L/yr - ₹3.5 L/yr

Explore more salaries
Compare Kamineni Hospitals with

Paras Hospital

4.4
Compare

Johnson & Johnson

4.0
Compare

Pacific BPO

3.5
Compare

Metropolis Healthcare

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