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:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
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.

Top trending discussions

View All
Interview Tips & Stories
6d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Altera Digital Health?
Ask anonymously on communities.

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

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

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 6 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

There is 4 coding question all are on DSA.

Round 3 - Group Discussion 

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

Round 4 - Technical 

(1 Question)

  • Q1. He is giving one coding question. ask some language questions.
Round 5 - 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 6 - 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.

Interview Questionnaire 

1 Question

  • Q1. Core java, collection, multithreading, database
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

Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Dsa related questions ,binary tree , list

Round 2 - Technical 

(2 Questions)

  • Q1. Project work on
  • Q2. Api work on and many question on dsa
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

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

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

Round 1 - Technical 

(5 Questions)

  • Q1. Discuss the project you are most proud of
  • Q2. What are ways to speed up SQL queries? List them in increasing order of complexity?
  • Q3. Is Redis single-threaded or multi-threaded?
  • Ans. 

    Redis is single-threaded.

    • Redis is single-threaded, meaning it can only execute one command at a time.

    • This design choice allows Redis to be extremely fast and efficient for certain use cases.

    • However, it also means that Redis may not be the best choice for highly concurrent workloads.

  • Answered by AI
  • Q4. What sort of data types can be used as keys in Python?
  • Ans. 

    Data types that can be used as keys in Python include strings, integers, floats, tuples, and custom objects.

    • Strings are commonly used as keys in Python dictionaries.

    • Integers and floats can also be used as keys.

    • Tuples can be used as keys if they only contain immutable elements.

    • Custom objects can be used as keys if they are hashable.

    • Examples: {'name': 'John'}, {1: 'apple'}, {(1, 2): 'tuple'}

  • Answered by AI
  • Q5. What types of indexing exist in SQL?

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 Resume Shortlist, One-on-one Round and HR.

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Easy 100%
View more

Interview Questions from Similar Companies

Innovaccer Interview Questions
3.5
 • 86 Interviews
Cohesity Interview Questions
3.9
 • 82 Interviews
NoBrokerHOOD Interview Questions
3.1
 • 62 Interviews
Fynd Interview Questions
3.3
 • 62 Interviews
Vyapar Interview Questions
3.5
 • 60 Interviews
View all
Senior Service Delivery Manager
62 salaries
unlock blur

₹18 L/yr - ₹32 L/yr

Software Engineer
55 salaries
unlock blur

₹6.5 L/yr - ₹14 L/yr

Expert Software Engineer
54 salaries
unlock blur

₹20.1 L/yr - ₹31.9 L/yr

Senior Software Engineer
43 salaries
unlock blur

₹11.4 L/yr - ₹20 L/yr

Associate Software Engineer
40 salaries
unlock blur

₹5 L/yr - ₹8.3 L/yr

Explore more salaries
Compare Altera Digital Health with

Intellect Design Arena

3.9
Compare

Cohesity

3.9
Compare

Celebal Technologies

3.1
Compare

NoBrokerHood

3.0
Compare
write
Share an Interview