Upload Button Icon Add office photos

Filter interviews by

Altera Digital Health Senior Associate Interview Questions and Answers

Updated 1 May 2024

Altera Digital Health Senior Associate Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Mathematically sound

Round 2 - Coding Test 

Java based and basic string manipulation coding queries

Interview questions from similar companies

I appeared for an interview in Dec 2016.

Interview Questionnaire 

7 Questions

  • Q1. Questions on linked list
  • Q2. Implement LRU
  • Ans. 

    LRU (Least Recently Used) is a caching algorithm that removes the least recently used item when the cache is full.

    • LRU uses a combination of a doubly linked list and a hash map.

    • The doubly linked list keeps track of the order of recently used items.

    • The hash map allows for efficient lookup of items in the cache.

    • When a new item is accessed, it is moved to the front of the list.

    • If the cache is full, the item at the end of t

  • Answered by AI
  • Q3. Questions on C, c++
  • Q4. Questions on DBMS
  • Q5. Questions on Operating Systems
  • Q6. Tell all things that happen inside a system when we press 'k' on the notepad.
  • Ans. 

    Pressing 'k' on Notepad triggers a series of events including key press event, character insertion, and potential text manipulation.

    • When 'k' is pressed, a key press event is triggered

    • The key press event is captured by the Notepad application

    • The character 'k' is inserted at the current cursor position

    • If any text is selected, it may be replaced by the character 'k'

    • The cursor position is updated to the next position

    • If aut

  • Answered by AI
  • Q7. Basic HR questions

Interview Preparation Tips

Round: Technical Interview
Tips: Prepare Data Structure and Algorithms well

Round: Technical Interview
Tips: Have decent knowledge of technical subjects.

Skills: Programming, Data Structures, Algorithm, Operating System Basics, Knowledge About Database Managements Systems
College Name: IIT Roorkee

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Core java, collection, multithreading, database

Interview Questionnaire 

1 Question

  • Q1. System Design and Ds and algo questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Telegram and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. What is the job culture of zopsmart
  • Ans. 

    The job culture at Zopsmart is collaborative, innovative, and fast-paced.

    • Collaborative work environment where team members support and help each other

    • Emphasis on innovation and creativity in problem-solving

    • Fast-paced atmosphere with opportunities for growth and learning

    • Open communication and feedback encouraged

    • Diverse and inclusive workplace culture

  • Answered by AI
Round 2 - Coding Test 

Medium level leetcode problem

I applied via Referral and was interviewed before Jun 2021. 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 - Technical 

(2 Questions)

  • Q1. The first round was a detailed discussion on one of my previous projects(almost 35 minutes, went to maximum possible depth) and one DSA question. Please prepare your resume projects very well.
  • Q2. The question was a stack bases leetcode medium question.
Round 3 - Technical 

(1 Question)

  • Q1. This was the final round. It again a follow up of the first one. Started with a project discussion(did not go that much of depth as first one) . Again one DSA question was there to solve(they make you writ...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Be through with your resume.
2. Practice DSA regularly.
3. Know your projects ver well.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Walk-in and was interviewed in Jul 2022. There were 5 interview rounds.

Round 1 - Coding Test 

There is 4 coding question all are on DSA.

Round 2 - Group Discussion 

They give one topic. and provide 10 to 15 minutes to think.

Round 3 - Technical 

(1 Question)

  • Q1. He is giving one coding question. ask some language questions.
Round 4 - Technical 

(2 Questions)

  • Q1. DSA question and databases question
  • Q2. SQL question, stack, queue, and LinkedList are all the things we know from the scretch
Round 5 - HR 

(1 Question)

  • Q1. They introduce the company details and normal question

Interview Preparation Tips

Interview preparation tips for other job seekers - Do more and more practice for DSA. and solve the coding questions.

I applied via LinkedIn and was interviewed in May 2022. There were 2 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 

(2 Questions)

  • Q1. What are callback functions in Javascript?
  • Ans. 

    Callback functions are functions passed as arguments to another function and executed later when the parent function is done.

    • Callback functions are used for asynchronous programming in JavaScript.

    • They are commonly used in event handling, AJAX requests, and timeouts.

    • Callback functions can be named or anonymous.

    • Example: setTimeout(function() { console.log('Hello, world!'); }, 1000);

  • Answered by AI
  • Q2. What are promises in Javascript?
  • Ans. 

    Promises are objects that represent the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript

    • They provide a way to execute code asynchronously and handle the result when it's ready

    • Promises have three states: pending, fulfilled, or rejected

    • They can be chained together using .then() and .catch() methods

    • Promises help avoid callback hell and make code

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared at both basic skills and advanced skills as well. Basics will take you to next round.

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Aug 2022. There were 4 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 

It was a good round with coding and questions related to the programming language and coding patterns.

Round 3 - One-on-one 

(3 Questions)

  • Q1. This round was a database and security round and various questions were asked related to the same!
  • Q2. Coding was Related to Merge Interval
  • Q3. Previous company projects were asked + database level approach was discussed
Round 4 - Culture-Fit 

(2 Questions)

  • Q1. General questions about previous work and understanding where you want to work!
  • Q2. What is async programming and why it is to be used?
  • Ans. 

    Async programming is a programming paradigm that allows multiple tasks to run concurrently without blocking the main thread.

    • Async programming is used to improve the performance of applications by allowing them to perform multiple tasks simultaneously.

    • It is particularly useful for I/O-bound operations, such as reading and writing to a database or network.

    • Async programming can be implemented using callbacks, promises, or...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice Coding questions.
Get the basics right. Learn about async programming too
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - Coding Test 

Basic of python, model deployment, and image processing

Altera Digital Health Interview FAQs

How many rounds are there in Altera Digital Health Senior Associate interview?
Altera Digital Health interview process usually has 2 rounds. The most common rounds in the Altera Digital Health interview process are Aptitude Test and Coding Test.

Tell us how to improve this page.

Altera Digital Health Senior Associate Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Innovaccer Interview Questions
3.4
 • 82 Interviews
Cohesity Interview Questions
3.9
 • 81 Interviews
Fynd Interview Questions
3.4
 • 59 Interviews
NoBrokerHOOD Interview Questions
3.1
 • 58 Interviews
Vyapar Interview Questions
3.5
 • 55 Interviews
Classplus Interview Questions
3.4
 • 28 Interviews
View all
Expert Software Engineer
57 salaries
unlock blur

₹15.5 L/yr - ₹36 L/yr

Software Engineer
44 salaries
unlock blur

₹5.4 L/yr - ₹14 L/yr

Associate Software Engineer
32 salaries
unlock blur

₹5 L/yr - ₹8 L/yr

Senior Software Engineer
30 salaries
unlock blur

₹10.1 L/yr - ₹20 L/yr

Senior Quality Engineer
27 salaries
unlock blur

₹10 L/yr - ₹15 L/yr

Explore more salaries
Compare Altera Digital Health with

Intellect Design Arena

3.9
Compare

Cohesity

3.9
Compare

Celebal Technologies

3.0
Compare

Innovaccer

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