Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Myanatomy Integration Team. If you also belong to the team, you can get access from here

Myanatomy Integration Verified Tick

Compare button icon Compare button icon Compare
4.5

based on 80 Reviews

Filter interviews by

Myanatomy Integration Interview Questions, Process, and Tips

Updated 6 Oct 2024

Top Myanatomy Integration Interview Questions and Answers

View all 8 questions

Myanatomy Integration Interview Experiences

Popular Designations

5 interviews found

Software Developer Intern Interview Questions & Answers

user image Sriram Alavalapati

posted on 5 Jul 2023

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 Jun 2023. There were 5 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 

(3 Questions)

  • Q1. Asks about Basic Dsa Question anagram
  • Q2. Asks about Nodejs , Difference between SQL and NoSQL
  • Q3. Asks about asynchronous programming?
Round 3 - Technical 

(2 Questions)

  • Q1. Ask one Dsa Question "maximum value in a substring in a Array"
  • Q2. Asks about Databases , Discuss about project i worked on
Round 4 - One-on-one 

(4 Questions)

  • Q1. Is nodejs is single Threaded or multi threaded ?
  • Ans. 

    Node.js is single threaded, but it uses non-blocking I/O operations to handle multiple requests concurrently.

    • Node.js runs on a single thread event loop, but it uses worker threads for CPU-intensive tasks.

    • It employs asynchronous programming to handle multiple requests without blocking the main thread.

    • Node.js can handle multiple requests concurrently by delegating I/O operations to the operating system.

    • Example: Using cal...

  • Answered by AI
  • Q2. Ask Dsa Question "count the non consequitive 1 in a binary elements "
  • Q3. Difference between sql and mongoDB? Difference between mysql and nosql
  • Ans. 

    SQL is a relational database management system, while MongoDB is a NoSQL database. MySQL is a specific implementation of SQL, while NoSQL is a category of databases.

    • SQL databases are table-based, with a predefined schema, while MongoDB is document-based, using collections and documents.

    • SQL databases use structured query language for defining and manipulating data, while MongoDB uses JSON-like documents with dynamic sch...

  • Answered by AI
  • Q4. Codding assignment for form
  • Ans. 

    Create a coding assignment for a form

    • Include a variety of input fields such as text, number, dropdown, checkbox, radio buttons

    • Validate user input to ensure data integrity

    • Implement functionality to submit the form and display a success message

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Asks about Your profile , long-term goals , what would you expects in Your work-life

Interview Preparation Tips

Topics to prepare for Myanatomy Integration Software Developer Intern interview:
  • DSA
  • Codding
  • Theory Questions about tech stac
Interview preparation tips for other job seekers - Just dont concentrate on Theory Skills . sharp Your coding skills also.

Skills evaluated in this interview

Software Developer Intern Interview Questions asked at other Companies

Q1. Sum Of Max And MinYou are given an array “ARR” of size N. Your task is to find out the sum of maximum and minimum elements in the array. Follow Up: Can you do the above task in a minimum number of comparisons? Input format: The first line ... read more
View answer (8)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jan 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 - Technical 

(4 Questions)

  • Q1. Questions related to MERN Stack
  • Q2. Create form a to console.log input value
  • Ans. 

    Create a form and log input value to console

    • Create an HTML form element with input field

    • Add an event listener to the form submit event

    • Retrieve the input value using JavaScript

    • Log the input value to console

  • Answered by AI
  • Q3. Coding question Consecutive 1's not allowed in binary string
  • Ans. 

    Write a function to generate binary strings without consecutive 1's.

    • Use dynamic programming to keep track of previous two states

    • Start with base cases of 0 and 1

    • For each new bit, check if adding it would create consecutive 1's

    • If not, add it to the string and update the previous two states

    • Repeat until desired length is reached

  • Answered by AI
  • Q4. What are Schema, Indexes, Event Loop, etc.
  • Ans. 

    Schema defines the structure of a database, Indexes improve query performance, Event Loop manages asynchronous operations.

    • Schema is a blueprint of a database that defines tables, columns, relationships, etc.

    • Indexes are data structures that improve query performance by allowing faster data retrieval.

    • Event Loop is a mechanism that manages asynchronous operations in JavaScript.

    • Other important concepts for Full Stack Devel...

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. What all project you worked on
  • Q2. What is LRU cache and where to use it ?
  • Ans. 

    LRU cache is a data structure that stores recently used items and discards the least recently used item when the cache is full.

    • LRU stands for Least Recently Used

    • It is used to improve the performance of applications by reducing the number of disk reads or network calls

    • It is commonly used in web browsers, databases, and operating systems

    • It can be implemented using a hash table and a doubly linked list

    • When an item is acce...

  • Answered by AI
  • Q3. How will you schedule tasks to CPUs based on there priorities ?
  • Ans. 

    CPU scheduling is done using algorithms like FCFS, SJF, RR, etc. based on priority and burst time.

    • Priorities are assigned to tasks based on their importance and urgency

    • FCFS (First Come First Serve) algorithm schedules tasks in the order they arrive

    • SJF (Shortest Job First) algorithm schedules tasks with the shortest burst time first

    • RR (Round Robin) algorithm schedules tasks in a circular queue with a fixed time slice

    • Pri...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confidence and be well prepared in JavaScript and System Design

Skills evaluated in this interview

Full Stack Developer Interview Questions asked at other Companies

Q1. Query And MatrixYou are given a binary matrix with ‘M’ rows and ‘N’ columns initially consisting of all 0s. 'Q' queries follow. The queries can be of 4 types: Query 1: 1 R index Query 2: 1 C index Query 3: 2 R index Query 4: 2 C index In ea... read more
View answer (1)

Web Developer Interview Questions & Answers

user image Ankur Gautam

posted on 24 Mar 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Some basic to medium leetcode questions

Round 2 - Technical 

(1 Question)

  • Q1. Questions on DBMS, os, opps,java

Web Developer Interview Questions asked at other Companies

Q1. Check Indices With Given DifferenceYou are given an integer array 'ARR' of size ‘N’ and two integers ‘A’ and ‘B’. You need to find if there are two distinct indices in the array, such that the absolute difference of values on those indices ... read more
View answer (4)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Oct 2023.

Round 1 - Coding Test 

It was a simple coding round with recursion question like backtracking

Round 2 - Technical 

(2 Questions)

  • Q1. Some questions were around DSA
  • Q2. Some questions were arround my personal projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't go with this comapany now

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Myanatomy Integration interview questions for popular designations

 Full Stack Developer

 (1)

 SDE (Software Development Engineer)

 (1)

 Software Developer

 (1)

 Software Developer Intern

 (1)

 Web Developer

 (1)

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

I applied via campus placement at GLA Institute of Technology and Management, Mathura and was interviewed before Jan 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Logical, Aptitude and Cognitive skills

Round 3 - Technical 

(1 Question)

  • Q1. Technical mcq questions and Frontend Technology related
Round 4 - HR 

(1 Question)

  • Q1. Resume and final questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Feel free to share anything but be honest and interview experience was smooth and great.

SDE (Software Development Engineer) Interview Questions asked at other Companies

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)

Get interview-ready with Top Myanatomy Integration Interview Questions

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - One-on-one 

(4 Questions)

  • Q1. Past experiences related questions
  • Q2. Personal questions like (marriage, engagement, family background)
  • Q3. Why you want to join?
  • Ans. 

    I am passionate about conducting research and contributing to advancements in the field.

    • Passionate about conducting research

    • Interested in contributing to advancements in the field

    • Excited about the opportunity to work as a Research Associate

  • Answered by AI
  • Q4. Are you flexible and can work apart from your routine if required?
  • Ans. 

    Yes, I am flexible and can work outside of my routine when necessary.

    • I am adaptable and can adjust my schedule to meet project deadlines.

    • I have experience working on projects with changing priorities and timelines.

    • I am willing to take on new tasks and responsibilities as needed.

    • I can work efficiently under pressure and in fast-paced environments.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Freshers should refrain from joining Antal International specially Aligarh franchise.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(3 Questions)

  • Q1. About data centre in project work
  • Q2. What is data in used electrical equipment
  • Ans. 

    Data in used electrical equipment refers to information collected from the equipment's usage and performance.

    • Data can include information on energy consumption, operating temperatures, voltage levels, and maintenance history.

    • Examples of data in used electrical equipment include power usage logs, error reports, and sensor readings.

    • Analyzing this data can help identify potential issues, optimize performance, and predict

  • Answered by AI
  • Q3. How to work mech and upm in data centre
  • Ans. 

    To work mech and upm in a data centre, ensure proper maintenance of mechanical systems and utilize Uptime Institute's Uptime Process Management (UPM) framework.

    • Regularly inspect and maintain mechanical systems such as HVAC, cooling systems, and power distribution.

    • Implement Uptime Institute's UPM framework to optimize data centre performance and reliability.

    • Monitor and analyze data centre metrics to identify areas for i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All of good

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Have you read the job description
  • Q2. What you know about Vision India Services Pvt Ltd and Why do you wish to join us
Round 2 - One-on-one 

(2 Questions)

  • Q1. What did you like the best in Job Description
  • Q2. Get me 2 best reason we should hire you

Interview Preparation Tips

Interview preparation tips for other job seekers - Read JD description properly & prepare accordingly
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Telephonic Call 

(2 Questions)

  • Q1. Tell me about yourself.
  • Q2. Brief about your last role and responsibilities.
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me what do you know about Skillventory
  • Q2. Future plans in terms of career

Interview Preparation Tips

Interview preparation tips for other job seekers - They just check your communication skills and basic knowledge about recruitment.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Related to my core Job profile and experience
  • Q2. About new change in government compliance changes,
  • Q3. How I can manage those changes

Interview Preparation Tips

Interview preparation tips for other job seekers - Apply through the company Internal reference, you will get 100% select, No question will ask now, not knowledge test at all.

Myanatomy Integration Interview FAQs

How many rounds are there in Myanatomy Integration interview?
Myanatomy Integration interview process usually has 3-4 rounds. The most common rounds in the Myanatomy Integration interview process are Technical, Resume Shortlist and HR.
How to prepare for Myanatomy Integration 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 Myanatomy Integration. The most common topics and skills that interviewers at Myanatomy Integration expect are Java, Python, C, SQL and C++.
What are the top questions asked in Myanatomy Integration interview?

Some of the top questions asked at the Myanatomy Integration interview -

  1. Is nodejs is single Threaded or multi threade...read more
  2. How will you schedule tasks to CPUs based on there prioritie...read more
  3. Difference between sql and mongoDB? Difference between mysql and no...read more

Tell us how to improve this page.

Myanatomy Integration Interview Process

based on 7 interviews

Interview experience

4.6
  
Excellent
View more

Interview Questions from Similar Companies

BYJU'S Interview Questions
3.1
 • 2.2k Interviews
upGrad Interview Questions
3.7
 • 205 Interviews
Unacademy Interview Questions
3.0
 • 203 Interviews
Simplilearn Interview Questions
3.2
 • 99 Interviews
Testbook.com Interview Questions
3.6
 • 98 Interviews
Toppr Interview Questions
3.4
 • 73 Interviews
Embibe Interview Questions
3.5
 • 60 Interviews
Adda 247 Interview Questions
3.3
 • 28 Interviews
MeritNation Interview Questions
3.6
 • 7 Interviews
View all

Myanatomy Integration Reviews and Ratings

based on 80 reviews

4.5/5

Rating in categories

4.4

Skill development

4.5

Work-life balance

4.1

Salary

4.4

Job security

4.4

Company culture

4.1

Promotions

4.5

Work satisfaction

Explore 80 Reviews and Ratings
Digital Marketing Manager

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Explore more jobs
Software Developer
34 salaries
unlock blur

₹5.5 L/yr - ₹11.2 L/yr

Full Stack Developer
6 salaries
unlock blur

₹6 L/yr - ₹7 L/yr

Recruitment Executive
5 salaries
unlock blur

₹1.8 L/yr - ₹2.4 L/yr

Software Engineer
4 salaries
unlock blur

₹4.2 L/yr - ₹7.5 L/yr

Campus Relationship Manager
4 salaries
unlock blur

₹4.2 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Myanatomy Integration with

BYJU'S

3.1
Compare

upGrad

3.7
Compare

Unacademy

3.0
Compare

Simplilearn

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