Upload Button Icon Add office photos

Filter interviews by

Altera Digital Health Software Developer Intern Interview Questions and Answers

Updated 27 Jul 2023

Altera Digital Health Software Developer Intern Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jun 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 - One-on-one 

(1 Question)

  • Q1. You are given a two arm balance scale and 8 identical spheres. One of the spheres is heavier than the rest 7 spheres which all are equal in weight. Find the heavier sphere in minimum of three times.
Round 3 - HR 

(1 Question)

  • Q1. Normal HR questions like why do you want to join the company.

Interview questions from similar companies

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

I applied via campus placement at Indian Institute of Information Technology (IIIT), Kota and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

A 90-minute coding test on HackerRank, which includes one medium, one easy, and one hard question.

Round 2 - Technical 

(2 Questions)

  • Q1. What is the index of the first occurrence where a pattern string matches with a text string?
  • Q2. Given a string, how can we find the minimum length substring whose sum is greater than or equal to a specified target?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Galgotias College of Engineering and Technology, Greater Noida and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on DSA were asked by the interviewer at first.
  • Q2. Some theoretical questions from DBMS and oops and also asked to write some SQL queries.
Round 2 - Technical 

(2 Questions)

  • Q1. This round was also similar to the first technical round at first given a DSA question.
  • Q2. After that I was asked to write some SQL queries and also questions from resume were asked.
Round 3 - One-on-one 

(2 Questions)

  • Q1. This was managerial round which was was offline in person interview. At first he asked sone basic DBMS and oops questions.
  • Q2. Then gave me a question and asked me to write a complex SQL query.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up DSA and work on SQL queries.
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 May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Some Objective questions and 1 Coding Questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Situation based questions on Coroutines
  • Q2. About Project Tech Stack Used and Questions on that

I was interviewed before Sep 2020.

Round 1 - Assignment 

Round duration - 7 days
Round difficulty - Easy

Web Development, Databases

Round 2 - Telephonic Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This was the final round and was a telephonic interview.

  • Q1. 

    Implementation of HashMap with Constant Time Operations

    Design a data structure that effectively stores a key-value mapping and performs specific operations in constant time.

    Explanation:

    Your data stru...

  • Q2. 

    Isomorphic Trees Problem Statement

    You are provided with two arbitrary binary trees. Determine if both trees are isomorphic.

    Explanation:

    Two binary trees are considered isomorphic if one tree can be tr...

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in NoidaEligibility criteriaNo criteriaInnovaccer interview preparation:Topics to prepare for the interview - Data Structures, Machine Learning, Web Development, Algorithms, CS fundamentalsTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Data Structures and Algorithms from websites like leetcode,geeksforgeeks etc. 
Tip 2 : Learn one skill — be it web development, android development, or Machine Learning, make some projects on it. Don’t try to learn everything, pick 1 thing, and master it.
Tip 3 : Study computer fundamentals — DBMS, Operating Systems, OOPs, Computer Networks before your interviews.

Application resume tips for other job seekers

Tip 1 : Keep it simple and concise.
Tip 2 : Include some personal projects

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Technology (NIT), Warangal and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Coding Test 

There were 3 questions in the online assessment.

1 - Binary Search
2 - DP
3 - Graphs

Round 2 - Technical 

(1 Question)

  • Q1. Implement a persistence stack with constant time operations
  • Ans. 

    Implement a persistence stack with constant time operations

    • Use a combination of a stack and a hashmap to achieve constant time operations for push, pop, and get operations

    • Maintain a stack to store the elements and a hashmap to store the index of each element in the stack

    • When pushing an element, add it to the stack and update its index in the hashmap

    • When popping an element, remove it from the stack and also remove its i...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Median of two sorted arrays and OOPs basics
  • Ans. 

    Finding the median of two sorted arrays and discussing OOPs basics

    • To find the median of two sorted arrays, merge the arrays and then calculate the median

    • OOPs basics include concepts like encapsulation, inheritance, polymorphism, and abstraction

    • Example: Median of [1, 3] and [2] is 2.0

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Technical round
  • Q2. Append element into Array question
Round 2 - One-on-one 

(1 Question)

  • Q1. Vector question on array
Round 3 - One-on-one 

(1 Question)

  • Q1. Vector based question less time complexity

I was interviewed in Apr 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Medium

  • Q1. 

    Inorder Traversal of Binary Tree

    You are provided with a Binary Tree composed of 'N' nodes, each holding integer values. Your task is to compute the Inorder traversal of this binary tree.

    Example:

    For t...
  • Ans. 

    The task is to find the in-order traversal of a given binary tree.

    • Implement a recursive function to perform in-order traversal of the binary tree

    • Start from the left subtree, then visit the root node, and finally visit the right subtree

    • Use an array to store the values of the nodes in the in-order traversal

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

Interview on google meet

  • Q1. Given two tables, how would you return an inner join on a common column (key)?
  • Ans. 

    The inner join operation combines rows from two tables based on a common column (key).

    • Use the JOIN keyword in the SQL query to perform an inner join.

    • Specify the common column (key) in the ON clause of the join.

    • The result will contain only the matching rows from both tables.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

  • Q1. 

    Search in a Row-wise and Column-wise Sorted Matrix Problem Statement

    You are given an N * N matrix of integers where each row and each column is sorted in increasing order. Your task is to find the positi...

  • Ans. 

    Given a sorted matrix, find the position of a target integer in the matrix.

    • Iterate through each row and column of the matrix

    • Compare the target integer with the current element

    • If the target integer is found, return the position

    • If the target integer is not found, return {-1, -1}

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in BengaluruEligibility criteriaNo criteriaSpringworks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Dynamic Programming, RecursionTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Focus on data-structures and algorithms fundamentals
Tip 2 : Learn Javascript fundamentals for interviews
Tip 3 : Having good projects on resume is an added advantage

Application resume tips for other job seekers

Tip 1 : Do not put false projects on resume.
Tip 2 : Have good projects on your resume

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Jan 2022.

Round 1 - Coding Test 

(3 Questions)

Round duration - 3 Hours
Round difficulty - Hard

3 Coding questions ( 1 medium graph dfs based question , 2 hard level prefix array question ans 3 was a hard question which I don't remember)

2 Database question ( It mostly includes joining 2-3 tables and then you would be able to solve it)

  • Q1. 

    Number of Islands Problem Statement

    You are provided with a 2-dimensional matrix having N rows and M columns, containing only 1s (land) and 0s (water). Your goal is to determine the number of islands in t...

  • Ans. Flood Fill Algorithm

    We can use the flood fill algorithm to check for all connected 1s.

     

    • We create two arrays, dx, and dy, in which we store the unit vectors for all eight directions. Thus, when we are at a given cell, we can easily check for all its adjacent cells by simply looping over the two arrays, adding their values to the current position, and checking for this new position recursively.
    • We will also create a ...
  • Answered Anonymously
  • Q2. 

    Maximum Product Subarray Problem Statement

    Given an array of integers, determine the contiguous subarray that produces the maximum product of its elements.

    Explanation:

    A subarray can be derived from th...

  • Ans. Brute-force

    Steps:

    1. Create an ans variable and initialize it to INT_MIN.
    2. Run a loop i = 0 to N and do:
      • Run a loop j = i to N and do:
        • Create a variable, say currentProduct and initialize it to 1.
        • Run a loop k = i to j and do:
          • currentProduct = currentProduct * arr[k]
          • Store the maximum of ans and the currentProduct in the ans variable.
    3. Finally, return the ans variable.
    Space Complexity: O(1)Explanation:

    O(1)

     

    Constant space is u...

  • Answered Anonymously
  • Q3. You were given 3-4 models in a DBMS context. How did you join those models to obtain the desired result?
Round 2 - Video Call 

Round duration - 30 minutes
Round difficulty - Medium

These rounds depends on the type of interviewer.
My friends were asked questions from DSA but from me they asked a lot of questions on Node.JS and React.

Round 3 - Video Call 

Round duration - 30 Minutes
Round difficulty - Medium

This round depends on your interviewer.
My colleagues were asked questions from DS but my interviewer focused just on javascript.

Round 4 - Telephonic Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

It was a managerial round they will test your communication and how well do you handle situations in your life

  • Q1. What is one of the most challenging situations you have faced in your life, and how did you handle it?
  • Ans. 

    Tip 1 : just be confident and communicate with them
     

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaMinimum 6 GPASpringworks interview preparation:Topics to prepare for the interview - React, Data structures, SQl, Java, Node.JSTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : Cpanies like SpringWorks are more focused on Development so make sure you have good knowledge in Javascript
Tip 2 : Complete 100-150 questions easy/medium questions on leetcode like 3 sum or invert binary tree
Tip 3 : Have a good knowledge of any RDBMS.

Application resume tips for other job seekers

Tip 1 : Make sure your resume is not filled with lots of colors try to give it a simple look
Tip 2 : Mention only those skills in which you have minimum intermediate knowledge ex if you know docker but haven't used it nicely then just don't mention it

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Jan 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

3 DSA questions, 2 SQL questions
On the DoSelect platform, which was good

  • Q1. 

    Matrix Chain Multiplication Problem

    Given 'N' 2-dimensional matrices and an array ARR of length N + 1, where the first N integers denote the number of rows in each matrix and the last integer represents t...

  • Ans. 

    It was a straightforward application of the matrix multiplication approach of DP

  • Answered Anonymously
  • Q2. 

    Linear Probing in Hashing

    Hashing is a technique to map large non-negative integers to smaller indices using a hash function. In the context of collision resolution in hash tables, 'Linear Probing' is emp...

  • Ans. Linear Probing

    The approach is pretty simple. We just need to find the mapping index and if it is occupied, we need to search for the next available index.

     

    The algorithm for the same is as follows:

    • Create an array HASH_TABLE of size N.
    • Initialise every value of HASH_TABLE as -1.
    • Loop for each KEY:
      • Initialize HASH = KEY % N
      • If HASH_TABLE[ HASH ] is already occupied, we perform:
        • while(HASH_TABLE[ HASH ] != -1):
          • HASH = ( HAS...
  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Started off with introductions and projects related questions.
Basic javascript and CSS property-related questions.
An easy DSA question

  • Q1. 

    Pair Sum Problem Statement

    You are given an array of integers 'ARR' with a length 'N' and a specific integer 'Target'. Your objective is to determine and return all pairs of elements within the array whos...

  • Ans. Hashing Solution
    • We can store the frequency of every element in the array in a hashmap.
    • We will loop over every index i, and check the frequency of (Target - ARR[i]) is the hashmap:
      • If (Target - ARR[i]) is equal to ARR[i], we will check if frequency of ARR[i] . If it is greater than 1 then we will decrease the frequency of ARR[i] by 2 and add a pair (ARR[i] , ARR[i]) to our answer.
      • Else, if the frequency of ARR[i] and Targ...
  • Answered Anonymously
Round 3 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Easy

Introduction and two easy to medium DSA questions

  • Q1. 

    Implementing Queue with Two Stacks

    Your task is to implement a queue using two stacks. You are provided with ‘Q’ queries and need to handle them, where each query falls under one of these two operations:

    ...
  • Ans. Making the Enqueue operation costly

    In this approach, we make sure that the oldest element added to the queue stays at the top of the stack, the second oldest below it and so on. To achieve this, we will need two stacks. 

     

    First stack('STK1') is the main stack being used to store the data, while the second stack('STK2') is to assist and store data temporarily during various operations.

     

    Following steps will...

  • Answered Anonymously
  • Q2. 

    Roman Numeral to Integer Conversion

    Convert a string representing a Roman numeral into its integer equivalent and return the result.

    Explanation:

    Roman numerals are represented by seven different symbol...

  • Ans. Recursive Approach

    The key idea is to follow the rules of roman numbers which are as follows:

     

    • The roman digits I, X and C are repeated up to three times in succession to form the numbers.
    • When a digit of lower value is written to the right or after a digit of higher value, the values of all the digits are added.
    • When a digit of lower value is written to the left or before a digit of higher value, then the value of th...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Maharaja Agrasen Institute Of Technology. Eligibility criteriaNoSpringworks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, React.js, Node.js, MongoDB.Time required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Be thorough with your projects
Tip 2 : Have a good understanding of the basics of CSS, React.js, and Node.js
 

Application resume tips for other job seekers

Tip 1 : MERN Stack projects
Tip 2 : Past internships

Final outcome of the interviewSelected

Skills evaluated in this interview

Altera Digital Health Interview FAQs

How many rounds are there in Altera Digital Health Software Developer Intern interview?
Altera Digital Health interview process usually has 3 rounds. The most common rounds in the Altera Digital Health interview process are HR, Resume Shortlist and One-on-one Round.

Tell us how to improve this page.

Altera Digital Health Software Developer Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Expert Software Engineer
48 salaries
unlock blur

₹15.5 L/yr - ₹28 L/yr

Software Engineer
39 salaries
unlock blur

₹5.4 L/yr - ₹14 L/yr

Associate Software Engineer
31 salaries
unlock blur

₹4.6 L/yr - ₹8 L/yr

Senior Software Engineer
30 salaries
unlock blur

₹10.1 L/yr - ₹22.3 L/yr

Associate Quality Engineer
21 salaries
unlock blur

₹6 L/yr - ₹7.4 L/yr

Explore more salaries
Compare Altera Digital Health with

Practo

3.1
Compare

Lybrate

3.5
Compare

Portea Medical

4.3
Compare

PharmEasy

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