Add office photos
Employer?
Claim Account for FREE

JioStar

3.7
based on 635 Reviews
Filter interviews by

30+ Sehat Healthcare Interview Questions and Answers

Updated 10 Feb 2025

Q1. 1.What is Stp ,And how it works? 2.What is Vlan and types ? 3.What is DHCP and DNS , how to work ? 4.What is OSI layer and define one to one ?

Ans.

STP is a network protocol that prevents loops in Ethernet networks. VLANs divide a network into separate broadcast domains. DHCP assigns IP addresses, DNS resolves domain names. OSI model defines networking functions in layers.

  • STP (Spanning Tree Protocol) prevents loops by blocking redundant paths in a network.

  • VLAN (Virtual Local Area Network) divides a network into separate broadcast domains to improve network performance and security.

  • DHCP (Dynamic Host Configuration Protoco...read more

View 1 answer

Q2. How would you analyse user consumption data and make predictions about future patterns

Ans.

I would analyze user consumption data by identifying trends, patterns, and correlations to make predictions about future behavior.

  • Collect and organize user consumption data from various sources

  • Use statistical analysis and data visualization techniques to identify trends and patterns

  • Apply predictive modeling and machine learning algorithms to make future predictions

  • Regularly update and refine the predictive models based on new data

  • Consider external factors that may impact user...read more

Add your answer

Q3. 1.Difference between Routing and Switching ? 2.What is OSPF and explain it ? 3.what is Bgp and explain it? 4.what is Eigrp and explain it.?

Ans.

Routing involves forwarding data packets between networks, while switching involves forwarding data packets within a network.

  • Routing is the process of determining the best path for data packets to travel from source to destination across different networks.

  • Switching is the process of forwarding data packets within a network based on MAC addresses.

  • OSPF (Open Shortest Path First) is a routing protocol used to find the best path for data packets in IP networks.

  • BGP (Border Gatewa...read more

View 1 answer

Q4. What are the duties and skills of ahouse keeping. 1.duties -emptying trash container _changing used towels and laying the bed ,reporting any technical issue and maitaince needs . Skills -hardworking, cooperativ...

read more
Ans.

Housekeeping duties include emptying trash, changing towels and bed linens, reporting maintenance needs. Skills include hard work, cooperation, and problem-solving.

  • Emptying trash containers regularly

  • Changing used towels and laying the bed

  • Reporting any technical issues and maintenance needs

  • Being hardworking and diligent in completing tasks

  • Cooperating with other staff members and guests

  • Facing challenges positively and finding solutions

Add your answer
Discover Sehat Healthcare interview dos and don'ts from real experiences

Q5. How I managed library operations in my previous organization? What were the challenges faced?

Ans.

Managed library operations by implementing new systems and procedures to improve efficiency.

  • Implemented a new library management software to streamline cataloging and circulation processes.

  • Developed and implemented policies and procedures for book acquisition, processing, and weeding.

  • Trained staff on new systems and procedures to ensure smooth transition.

  • Managed budget and allocated funds for new book purchases and library events.

  • Challenges faced included resistance to change...read more

Add your answer

Q6. What are the new features in React 18 ? Optimisation techinques in React ? Concurrency in React ?

Ans.

React 18 introduces new features like automatic batching, start transition, and streaming server renderer. It also focuses on performance optimizations and concurrent rendering.

  • New features in React 18 include automatic batching, start transition, and streaming server renderer.

  • Optimization techniques in React 18 involve concurrent rendering, improved scheduling, and reduced re-renders.

  • Concurrency in React 18 allows for rendering multiple components at the same time, improving...read more

Add your answer
Are these interview questions helpful?

Q7. What is Vlans and explain ?

Ans.

VLANs (Virtual Local Area Networks) are used to segment a single physical network into multiple virtual networks.

  • VLANs help improve network security by isolating traffic within specific groups.

  • They can also improve network performance by reducing broadcast traffic.

  • VLANs are configured at the switch level and allow devices in different VLANs to communicate as if they were on separate physical networks.

  • Each VLAN has its own broadcast domain.

  • Example: VLAN 10 for finance departme...read more

View 2 more answers

Q8. What is DHCP and DNS ?

Ans.

DHCP is a network protocol that assigns IP addresses to devices on a network, while DNS translates domain names to IP addresses.

  • DHCP stands for Dynamic Host Configuration Protocol

  • DHCP assigns IP addresses to devices on a network dynamically

  • DNS stands for Domain Name System

  • DNS translates domain names to IP addresses

  • DHCP helps in automatic IP address configuration

  • DNS helps in resolving domain names to IP addresses

View 1 answer
Share interview questions and help millions of jobseekers 🌟

Q9. Java code to fine distinct characters from string

Ans.

Use a HashSet to find distinct characters in a string.

  • Create a HashSet to store unique characters.

  • Iterate through the string and add each character to the HashSet.

  • Convert the HashSet to an array of strings to get distinct characters.

Add your answer

Q10. What is subnet mask ?

Ans.

Subnet mask is a 32-bit number used to divide an IP address into network and host portions.

  • Subnet mask determines which part of an IP address is the network portion and which part is the host portion.

  • It is represented in decimal format (e.g. 255.255.255.0) or CIDR notation (e.g. /24).

  • Common subnet masks include 255.0.0.0, 255.255.0.0, and 255.255.255.0.

View 1 answer

Q11. Why we do revaluation of assets

Ans.

Revaluation of assets is done to reflect their current market value and ensure accurate financial reporting.

  • To reflect the true value of assets on the balance sheet

  • To comply with accounting standards and regulations

  • To provide stakeholders with accurate financial information

  • To make informed decisions regarding asset management and investment

  • To prevent overvaluation or undervaluation of assets

  • Example: Revaluing real estate properties to reflect current market prices

Add your answer

Q12. What is deferred tax with example

Ans.

Deferred tax is a balance sheet item that represents the tax consequences of temporary differences between accounting income and taxable income.

  • Deferred tax is a liability or asset that arises from temporary differences between accounting income and taxable income.

  • It is recorded on the balance sheet and represents taxes that will be paid or saved in the future.

  • Example: If a company uses accelerated depreciation for tax purposes but straight-line depreciation for accounting pu...read more

Add your answer

Q13. Python code on list manipulation

Ans.

Python code on list manipulation

  • Use list comprehension for efficient manipulation

  • Utilize built-in functions like map, filter, and reduce

  • Consider using lambda functions for concise code

  • Be mindful of time complexity when working with large lists

Add your answer

Q14. Python Code on lists manipulation

Ans.

Manipulating lists in Python using various methods and functions.

  • Use list comprehension to filter, transform, or combine elements in a list.

  • Utilize built-in functions like map(), filter(), and reduce() for list manipulation.

  • Sort lists using sorted() function or sort() method.

  • Remove duplicates from a list using set() or list comprehension.

Add your answer

Q15. Define oops and the four pillars in detail

Ans.

OOPs stands for Object-Oriented Programming. The four pillars are Inheritance, Encapsulation, Abstraction, and Polymorphism.

  • Object-Oriented Programming (OOP) is a programming paradigm based on the concept of objects, which can contain data in the form of fields (attributes or properties) and code in the form of procedures (methods or functions).

  • The four pillars of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

  • Inheritance allows a class to inherit propertie...read more

Add your answer

Q16. Remove duplicate characters from a sentence

Ans.

Remove duplicate characters from a sentence

  • Create an empty array to store unique characters

  • Iterate through each character in the sentence

  • Check if the character is already in the array, if not add it

Add your answer

Q17. Automation underlying architecture

Ans.

Automation underlying architecture refers to the framework and structure of automated testing processes.

  • Automation architecture includes tools, frameworks, and technologies used for test automation.

  • Common automation architectures include keyword-driven, data-driven, and hybrid frameworks.

  • The architecture should support scalability, maintainability, and reusability of automated tests.

  • Examples of automation tools for underlying architecture include Selenium, Appium, and JUnit.

Add your answer

Q18. What is Sdlc? What is different types of testing

Ans.

SDLC stands for Software Development Life Cycle. It is a process used by software development teams to design, develop, and test high-quality software.

  • SDLC consists of several phases including planning, analysis, design, implementation, testing, and maintenance.

  • Different types of testing in SDLC include unit testing, integration testing, system testing, and acceptance testing.

  • Unit testing involves testing individual components or modules of the software.

  • Integration testing fo...read more

Add your answer

Q19. Whatvis revaluation of assets

Ans.

Revaluation of assets is the process of adjusting the value of assets on a company's balance sheet to reflect their current market value.

  • Revaluation is typically done for assets such as property, plant, and equipment.

  • The purpose is to ensure that the assets are carried at a more accurate value on the balance sheet.

  • Revaluation can result in an increase or decrease in the value of assets, which impacts the company's financial statements.

  • It is important for companies to regularl...read more

Add your answer

Q20. How many offers generated

Ans.

The number of offers generated is 25.

  • 25 offers were generated in the past month

  • The offer acceptance rate is 80%

  • 10 offers were for entry-level positions, 15 for senior positions

Add your answer

Q21. IND as leases elaborate and impact explanation

Ans.

IND AS leases require detailed explanation of impact on financial statements.

  • IND AS leases refer to the Indian Accounting Standards related to lease accounting

  • Elaborate explanation is needed to understand how leases affect financial statements

  • Impact explanation involves analyzing lease liabilities, lease assets, and lease expenses

  • Examples include recognizing lease liabilities and assets on balance sheet, and determining lease expenses in income statement

Add your answer

Q22. Ability to hire for IT Mandates

Ans.

I have extensive experience hiring for IT mandates, including technical roles and specialized skill sets.

  • Experience in sourcing and recruiting for various IT positions such as software developers, network engineers, and cybersecurity specialists

  • Knowledge of technical skills and qualifications required for IT roles

  • Ability to assess candidates' technical abilities through technical assessments and interviews

  • Experience in working with hiring managers to understand their specific...read more

Add your answer

Q23. 1. HLD and LLD of Rate Limiter

Ans.

Rate Limiter is a software component used to control the rate of traffic sent or received by a system.

  • High-Level Design (HLD) of Rate Limiter involves defining the overall architecture and components of the system.

  • Low-Level Design (LLD) of Rate Limiter focuses on the detailed design of individual components, algorithms, and data structures.

  • Example: HLD may include defining the overall flow of requests through the rate limiter, while LLD may involve designing the specific data...read more

Add your answer

Q24. What are the work environment?

Ans.

The work environment for a Video Editor and Videographer is typically fast-paced, creative, and collaborative.

  • Fast-paced environment with tight deadlines

  • Creative atmosphere with opportunities for artistic expression

  • Collaborative work with other team members such as producers, directors, and clients

  • May involve working on location or in a studio setting

  • Use of specialized equipment and software

Add your answer

Q25. Write polyfill for getElementById

Ans.

Polyfill for getElementById function in JavaScript

  • Create a function named getElementById

  • Check if the function already exists, if not, create it

  • Use document.querySelector to select the element by ID

  • Return the selected element

Add your answer

Q26. Overall understanding of media industry

Ans.

The media industry encompasses various forms of communication, entertainment, and news dissemination through platforms like television, radio, print, and digital media.

  • The media industry is constantly evolving with advancements in technology and changing consumer preferences.

  • It includes sectors such as broadcasting, publishing, advertising, public relations, and social media.

  • Key players in the media industry include companies like Disney, Netflix, CNN, and Facebook.

  • Content cr...read more

Add your answer

Q27. Write code to reverse a dtring

Ans.

Code to reverse a string in JavaScript

  • Use the split() method to convert the string into an array of characters

  • Use the reverse() method to reverse the array

  • Use the join() method to convert the reversed array back into a string

Add your answer

Q28. Tell us about the channel.

Ans.

The channel refers to the marketing platform or medium used to reach target audiences.

  • Channels can include social media, email marketing, advertising, events, and partnerships.

  • Each channel has its own unique audience and reach.

  • Effective channel selection is crucial for reaching marketing goals.

  • Analyzing channel performance helps in optimizing marketing strategies.

Add your answer

Q29. What is an fct slot

Ans.

An FCT slot is a time slot in a Fixed Cellular Terminal used for connecting a landline phone to a cellular network.

  • FCT slots are commonly used in areas with poor landline connectivity but good cellular coverage.

  • They allow users to make and receive calls on their landline phone using a cellular network.

  • FCT slots are often used in rural or remote areas where traditional landline infrastructure is limited.

  • For example, a person living in a remote village with no landline connecti...read more

Add your answer

Q30. Sap T codes for R2R process

Ans.

SAP T-codes are used in the Record to Report (R2R) process for financial accounting.

  • T-code F-02 is used for posting journal entries

  • T-code FB50 is used for posting a general ledger document

  • T-code FB03 is used for displaying a document

  • T-code F.01 is used for financial statements

  • T-code F.05 is used for foreign currency valuation

Add your answer

Q31. Merge 2 sorted Arrays

Ans.

Merging two sorted arrays into a single sorted array

  • Create a new array to store the merged result

  • Use two pointers to iterate through both arrays and compare elements

  • Add the smaller element to the new array and move the pointer for that array

Add your answer

Q32. what is star?

Add your answer

Q33. Pivot table and its functions

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Sehat Healthcare

based on 49 interviews
Interview experience
3.9
Good
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

3.4
 • 655 Interview Questions
4.2
 • 177 Interview Questions
3.8
 • 167 Interview Questions
4.2
 • 142 Interview Questions
3.9
 • 140 Interview Questions
3.8
 • 135 Interview Questions
View all
Top JioStar Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
75 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter