Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by GreenWave Technologies India (OPN Healthcare) Team. If you also belong to the team, you can get access from here
4.6

based on 20 Reviews

Filter interviews by

GreenWave Technologies India (OPN Healthcare) Interview Questions and Answers

Updated 14 Mar 2024

GreenWave Technologies India (OPN Healthcare) Interview Experiences

1 interview found

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

I applied via Walk-in and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. General questions
  • Q2. Self introduction
  • Q3. Last company experience
Round 2 - Aptitude Test 

Maths, Reasoning and English

Round 3 - Technical 

(1 Question)

  • Q1. About the process

Assistant Team Leader Interview Questions asked at other Companies

Q1. What do you know about Prepaid, Accrual concept, Deferred revenue and expense
View answer (1)

Jobs at GreenWave Technologies India (OPN Healthcare)

View all

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude + Coding round
duration was 1 hr 30 mins
Topics were basic aptitude for interviews
Coding topics was - Stack and Greedy

Round 2 - Technical 

(3 Questions)

  • Q1. Why python and explain about list.
  • Ans. 

    Python is a popular programming language known for its simplicity and readability. Lists in Python are versatile data structures that can hold multiple items of different types.

    • Python is widely used in software development due to its ease of use and readability.

    • Lists in Python are ordered collections of items, which can be of different data types.

    • Lists can be modified, appended, sorted, and sliced in Python.

    • Example: li

  • Answered by AI
  • Q2. Print Spiral matrix (twisted leetcode question)
  • Q3. Print the summation of all the digit until the length of the digit is 1
  • Ans. 

    Sum all digits until single digit is reached

    • Iterate through each digit and add them together

    • Repeat the process until the sum is a single digit

    • Example: For input 1234, sum = 1+2+3+4 = 10, then sum = 1+0 = 1

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cyware Software Development Engineer Test interview:
  • DSA
  • Leetcode
  • Resume
Interview preparation tips for other job seekers - Be confident, speak out loud, and be interactive.

Apprentice Interview Questions & Answers

HyScaler user image Radharani Rath

posted on 25 Nov 2024

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

I applied via Referral and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

4 easy level questions will be asked basically from arrays and strings.

Round 2 - Assignment 

Assignment will be given after clearing coding round. In my case ELearning Platform project was given and 7 days time was given to complete.

Round 3 - One-on-one 

(4 Questions)

  • Q1. DBMS questions like ACID properties, database transaction. Etc
  • Q2. Project related questions
  • Q3. Basic and conceptual questions of frameworks you know
  • Q4. Basic coding questions like armstrong number, palendromic sequence, recursion

Interview Preparation Tips

Interview preparation tips for other job seekers - Give focus on conceptual and theory questions of your known framework
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Verbal communicatiom, attention to detail, email writing part

Round 2 - One-on-one 

(2 Questions)

  • Q1. General question with maths
  • Q2. Percentage related sums
Round 3 - One-on-one 

(2 Questions)

  • Q1. Interview question with maths
  • Q2. Percentage , profit related sums
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Basic aptitude assessment along with some theoretical components.

Round 2 - Technical 

(1 Question)

  • Q1. Basic questions in Java, SQL and React
Round 3 - Technical 

(2 Questions)

  • Q1. Project related questions
  • Q2. Coding question->Reverse String(World Hello), pattern, prime number
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What are the different osi layers
  • Ans. 

    The OSI (Open Systems Interconnection) model consists of 7 layers that define the functions of a network communication system.

    • Physical Layer: Deals with physical connections and transmission of raw data.

    • Data Link Layer: Manages data frames and error detection/correction.

    • Network Layer: Handles routing and logical addressing.

    • Transport Layer: Ensures end-to-end communication and data flow control.

    • Session Layer: Establishe...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Basic details about yourself
Round 3 - Technical 

(1 Question)

  • Q1. What are some ways to avoid deadlock?
  • Ans. 

    Avoid deadlock by implementing proper resource allocation strategies and using techniques like timeouts and resource ordering.

    • Implement proper resource allocation strategies to prevent multiple processes from holding resources indefinitely.

    • Use timeouts to limit the amount of time a process can wait for a resource before releasing it.

    • Follow a strict resource ordering protocol to ensure processes request and release reso...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure your cs basics are clear such as netwerking, os, and tech stacks used in projects
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do agile methodologies function in B2B projects?
  • Q2. What is your experience with barcode scanners?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How to rotate a matrix?
  • Ans. 

    To rotate a matrix, transpose it and then reverse each row or column depending on the direction of rotation.

    • Transpose the matrix by swapping elements across the diagonal

    • For clockwise rotation, reverse each row of the transposed matrix

    • For anti-clockwise rotation, reverse each column of the transposed matrix

  • Answered by AI
  • Q2. How to find a particular element in a sorted array?
  • Ans. 

    Use binary search to efficiently find a particular element in a sorted array.

    • Start by comparing the target element with the middle element of the array.

    • If the target element is less than the middle element, search the left half of the array.

    • If the target element is greater than the middle element, search the right half of the array.

    • Repeat the process until the target element is found or the search space is empty.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is angular Directives
  • Ans. 

    Angular Directives are markers on a DOM element that tell AngularJS's HTML compiler to attach a specified behavior to that DOM element.

    • Directives are used to create reusable components or custom behaviors in Angular applications.

    • They can be used to manipulate the DOM, add event listeners, show/hide elements, etc.

    • Examples include ngModel, ngIf, ngFor, etc.

  • Answered by AI
  • Q2. How to communicate with components
  • Ans. 

    Methods to communicate between components in Angular include Input and Output properties, ViewChild, Services, and Event Emitters.

    • Using Input and Output properties to pass data from parent to child components and emit events from child to parent components.

    • Using ViewChild to access child components from parent components.

    • Using Services to create a shared service that can be injected into multiple components to share da...

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Senior Technical Recruitment
  • Q2. Documents Required submitted
Round 2 - One-on-one 

(3 Questions)

  • Q1. VP round selected
  • Q2. Took all rounds
  • Q3. Two to three people take interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Total time wasted please don't join this organization very bad experience 😕 Follow up is done by junior recruiter every day they will call after interview for one month the will follow-up and in the end they won't give offer horrible experience. Thank God I didn't join here Guys don't join this organization . Horrible experience

GreenWave Technologies India (OPN Healthcare) Interview FAQs

How many rounds are there in GreenWave Technologies India (OPN Healthcare) interview?
GreenWave Technologies India (OPN Healthcare) interview process usually has 3 rounds. The most common rounds in the GreenWave Technologies India (OPN Healthcare) interview process are One-on-one Round, Aptitude Test and Technical.
How to prepare for GreenWave Technologies India (OPN Healthcare) interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at GreenWave Technologies India (OPN Healthcare). The most common topics and skills that interviewers at GreenWave Technologies India (OPN Healthcare) expect are Medical Billing, Revenue Cycle Management, Payment Posting, US Healthcare and AR Calling.

Tell us how to improve this page.

People are getting interviews through

based on 1 GreenWave Technologies India (OPN Healthcare) interview
WalkIn
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Tata Power Interview Questions
3.9
 • 157 Interviews
Suzlon Group Interview Questions
4.1
 • 123 Interviews
ReNew Interview Questions
4.2
 • 81 Interviews
Waaree Energies Interview Questions
3.9
 • 55 Interviews
Greenko Group Interview Questions
3.9
 • 44 Interviews
Vikram Solar Interview Questions
4.0
 • 30 Interviews
Azure Power Interview Questions
3.9
 • 20 Interviews
View all

GreenWave Technologies India (OPN Healthcare) Reviews and Ratings

based on 20 reviews

4.6/5

Rating in categories

4.4

Skill development

4.5

Work-Life balance

4.3

Salary & Benefits

4.7

Job Security

4.4

Company culture

4.2

Promotions/Appraisal

4.6

Work Satisfaction

Explore 20 Reviews and Ratings
System Administrator
6 salaries
unlock blur

₹1.7 L/yr - ₹3 L/yr

Associate
4 salaries
unlock blur

₹0.9 L/yr - ₹2.6 L/yr

Accountant
4 salaries
unlock blur

₹1.5 L/yr - ₹2.9 L/yr

Group Coordinator
4 salaries
unlock blur

₹3.8 L/yr - ₹4.3 L/yr

Assistant Manager
3 salaries
unlock blur

₹9 L/yr - ₹12 L/yr

Explore more salaries
Compare GreenWave Technologies India (OPN Healthcare) with

Suzlon Group

4.1
Compare

Tata Power

3.9
Compare

Adani Green Energy

4.1
Compare

Azure Power

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview