Upload Button Icon Add office photos

Filter interviews by

Altera Digital Health Intern Interview Questions and Answers

Updated 15 Mar 2024

Altera Digital Health Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 15 Mar 2024

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

I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions and answers for projects.

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 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
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java basic questions OOP and simple code
  • Q2. String manipulation and string index access
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about you self
  • Ans. 

    I am a passionate software engineer with a strong background in computer science and experience in developing innovative solutions.

    • Bachelor's degree in Computer Science from XYZ University

    • Proficient in programming languages such as Java, Python, and C++

    • Experience working on projects involving machine learning and artificial intelligence

    • Strong problem-solving skills and ability to work in a team environment

  • Answered by AI
  • Q2. How do you see yourself after 5 year in this org ?
  • Ans. 

    In 5 years, I see myself as a senior software engineer leading a team of developers, contributing to innovative projects, and continuously learning and growing in my role.

    • Leading a team of developers on challenging projects

    • Contributing to innovative software solutions

    • Continuously learning and growing in my role

    • Possibly pursuing advanced certifications or degrees to enhance my skills

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Great org to grow
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Word Search Problem Backtracking Leetcode
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Simple questions
  • Q2. Linked list hashmap
Round 3 - HR 

(1 Question)

  • Q1. Expected salary
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Find Duplicate in array of numbers
  • Ans. 

    Use a hash set to find duplicates in an array of numbers.

    • Create a hash set to store unique elements.

    • Iterate through the array and check if the element is already in the hash set.

    • If it is, then it is a duplicate.

    • Example: [1, 2, 3, 2, 4] - 2 is a duplicate.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Linked List Cycle
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself and why do you want to join

Software Engineer Interview Questions & Answers

Cohesity user image Vaishnavi Birajdar

posted on 29 Mar 2024

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Test - one coding question 1 sql query 20 mcq on cs fundamental

Round 2 - Technical 

(1 Question)

  • Q1. Questions on object oriented paradigm

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
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.

Altera Digital Health Interview FAQs

How many rounds are there in Altera Digital Health Intern interview?
Altera Digital Health interview process usually has 1 rounds. The most common rounds in the Altera Digital Health interview process are Technical.

Tell us how to improve this page.

Altera Digital Health Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Tata 1mg Interview Questions
3.6
 • 146 Interviews
Cohesity Interview Questions
3.9
 • 81 Interviews
Innovaccer Interview Questions
3.4
 • 81 Interviews
PharmEasy Interview Questions
3.7
 • 80 Interviews
Practo Interview Questions
3.1
 • 74 Interviews
Cult.fit Interview Questions
3.6
 • 67 Interviews
Fynd Interview Questions
3.5
 • 59 Interviews
NoBrokerHOOD Interview Questions
3.1
 • 57 Interviews
View all
Expert Software Engineer
50 salaries
unlock blur

₹15.5 L/yr - ₹30.9 L/yr

Software Engineer
44 salaries
unlock blur

₹5.4 L/yr - ₹14 L/yr

Senior Software Engineer
35 salaries
unlock blur

₹10.1 L/yr - ₹20.3 L/yr

Associate Software Engineer
32 salaries
unlock blur

₹5 L/yr - ₹8 L/yr

Quality Engineer
24 salaries
unlock blur

₹6 L/yr - ₹11 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