Upload Button Icon Add office photos

Filter interviews by

ShubhAarogya Healthcare Services Interview Questions, Process, and Tips

Updated 2 Oct 2021

Top ShubhAarogya Healthcare Services Interview Questions and Answers

View all 7 questions

ShubhAarogya Healthcare Services Interview Experiences

Popular Designations

2 interviews found

I applied via Referral and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

12 Questions

  • Q1. Types of network calls available in android
  • Ans. 

    There are two types of network calls available in Android: Synchronous and Asynchronous.

    • Synchronous network calls are executed on the main thread and block the UI until the response is received.

    • Asynchronous network calls are executed on a separate thread and do not block the UI.

    • Examples of synchronous network calls include HttpUrlConnection and OkHttp.

    • Examples of asynchronous network calls include Retrofit and Volley.

  • Answered by AI
  • Q2. Get,post,put, delete, update,modify etc
  • Q3. How many types of intents?
  • Ans. 

    There are two types of intents in Android: Explicit and Implicit.

    • Explicit Intents are used to start a specific activity within the app.

    • Implicit Intents are used to request an action from another app or system component.

    • Implicit Intents can be used to open a web page, send an email, or make a phone call.

    • Intents can also carry data between activities or apps.

  • Answered by AI
  • Q4. 1)implicit 2)explicit 3) pending
  • Q5. What is the use of frame layout?
  • Ans. 

    FrameLayout is a layout manager that allows multiple child views to be stacked on top of each other.

    • FrameLayout is used to display a single view at a time.

    • It is commonly used for displaying fragments, dialogs, and popups.

    • It is also useful for creating custom views with overlapping elements.

    • The child views are positioned relative to the top-left corner of the layout.

    • The last child added to the layout is displayed on top

  • Answered by AI
  • Q6. To hold some some space in our ui
  • Q7. What services in android?
  • Ans. 

    Services in Android are background processes that can run even when the app is not in foreground.

    • Services are used for long-running operations such as playing music or downloading files.

    • They can be started and stopped using startService() and stopService() methods.

    • Services can also be bound to an activity using bindService() method.

    • Foreground services are used for tasks that require user attention such as playing music...

  • Answered by AI
  • Q8. They are running in background for a long running tasks
  • Q9. What are features available in firebase?
  • Ans. 

    Firebase offers a variety of features for mobile and web app development.

    • Realtime Database

    • Authentication

    • Cloud Firestore

    • Cloud Storage

    • Cloud Functions

    • Hosting

    • Crashlytics

    • Performance Monitoring

    • Remote Config

    • Dynamic Links

  • Answered by AI
  • Q10. Push notifications,real time database,cloud messaging,admobs, dynamic links,etc
  • Q11. What is broadcast receiver?
  • Ans. 

    Broadcast receiver is a component that receives and responds to system-wide broadcast announcements.

    • Broadcast receiver is a part of the Android system that listens to system-wide broadcast announcements.

    • It can be used to receive and respond to events such as battery low, network connectivity changes, incoming SMS, etc.

    • It can be registered either statically in the AndroidManifest.xml file or dynamically in code.

    • Once reg...

  • Answered by AI
  • Q12. What is coordinating layout?
  • Ans. 

    Coordinating layout is a type of layout in Android that allows multiple child views to be positioned relative to each other.

    • Coordinating layout is used to create complex and dynamic user interfaces.

    • It allows views to be positioned relative to each other using constraints.

    • It is more flexible than other types of layouts like LinearLayout and RelativeLayout.

    • Examples of coordinating layouts include ConstraintLayout and Coo

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and prepare well for interview

Skills evaluated in this interview

Top ShubhAarogya Healthcare Services Android Developer Interview Questions and Answers

Q1. What is the use of frame layout?
View answer (1)

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)

Interview Questionnaire 

2 Questions

  • Q1. How much experience
  • Q2. How much ctc expect

Interview Preparation Tips

Interview preparation tips for other job seekers - About testing types of testings

Prepare well

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Jul 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

Aptitude test on CS subjects like C programming, DBMS, CN, and OS.

Round 2 - Coding Test 

There were 2 input-output based questions of easy to moderate level

Round 3 - Group Discussion 

Every candidate was given an individual topic and was asked to speak on it

Round 4 - HR 

(1 Question)

  • Q1. Some typical HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with basic CS subjects you will be able to clear all rounds with ease.

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

I applied via Referral and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic questions

I applied via Campus Placement and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude round consists Logical reasoning, General Aptitude, Grammar related questions etc. All are moderate level questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Explain OOPs w.r.t Java
  • Ans. 

    OOPs is a programming paradigm that uses objects to represent real-world entities. Java is an OOPs language.

    • OOPs stands for Object-Oriented Programming System

    • Java is a class-based OOPs language

    • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four pillars of OOPs

    • Objects have state and behavior

    • Java supports interfaces, which allow for multiple inheritance

    • Example: A car can be represented as an object wit...

  • Answered by AI
  • Q2. Explain about the projects that you have worked on
  • Q3. Explain how Java solves machine dependency of code execution
  • Ans. 

    Java solves machine dependency by using bytecode and virtual machine.

    • Java code is compiled into bytecode which is platform-independent

    • The bytecode is executed by the Java Virtual Machine (JVM) which is platform-specific

    • JVM translates bytecode into machine code for the specific platform

    • This allows Java code to run on any platform with a JVM installed

    • Example: A Java program compiled on Windows can run on Linux or Mac as

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why should we hire you?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • Java
Interview preparation tips for other job seekers - Keep it simple, Prepare basics of 1st preferred Programming Language.

Skills evaluated in this interview

I applied via Company Website and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude, reasoning, English, cloud sections

Round 2 - Coding Test 

2 questions in which , one has to complete within an 50 minutes

Round 3 - Communication assessment 

(2 Questions)

  • Q1. Tell me about t Yourself
  • Q2. What are the previous experiences

Interview Preparation Tips

Topics to prepare for Accenture Associate Software Engineer interview:
  • Java
  • SQL
  • Agile Methodology
  • SDLC
Interview preparation tips for other job seekers - Be confident
Keep it just and short
Explain more about your experiences

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Numerical ability and logical reasoning followed by some coding mcqs

Round 2 - Technical 

(1 Question)

  • Q1. Print 1 to 100 without for loop
  • Ans. 

    Printing 1 to 100 without for loop

    • Use recursion to print numbers from 1 to 99

    • Print 100 outside the recursion

    • Use a base case to stop recursion at 100

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare from interview bit and practice mcqs

I applied via Campus Placement and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple aptitude test

Round 2 - One-on-one 

(1 Question)

  • Q1. General questions as per your cv

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • Aptitude
Interview preparation tips for other job seekers - Great company for freshers.. lot to learn and experience

I applied via Company Website and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Attended the codevita competition in final year of college.

Round 2 - Technical 

(3 Questions)

  • Q1. About College Project
  • Q2. Some very basics of java
  • Q3. Experience of college project as a team

Interview Preparation Tips

Interview preparation tips for other job seekers - Codevita is a really good platform to help you join TCS as a final year graduate in college

ShubhAarogya Healthcare Services Interview FAQs

What are the top questions asked in ShubhAarogya Healthcare Services interview?

Some of the top questions asked at the ShubhAarogya Healthcare Services interview -

  1. What is the use of frame layo...read more
  2. What are features available in fireba...read more
  3. Types of network calls available in andr...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all

ShubhAarogya Healthcare Services Reviews and Ratings

based on 5 reviews

3.6/5

Rating in categories

4.1

Skill development

3.2

Work-life balance

2.8

Salary

3.3

Job security

3.5

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 5 Reviews and Ratings
Compare ShubhAarogya Healthcare Services with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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