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

Filter interviews by

Myanatomy Integration Software Developer Intern Interview Questions and Answers

Updated 8 Jul 2023

Myanatomy Integration Software Developer Intern Interview Experiences

1 interview 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

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How many numbers consulting in this year?

Interview Preparation Tips

Interview preparation tips for other job seekers - Introduction your self. project. skills
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Group Discussion 

About web development

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

I appeared for an interview before Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. What is your basic knowledge of Web Forms, ASP.NET, .NET Core, and SQL Server?
  • Ans. 

    I have a strong understanding of Web Forms, ASP.NET, .NET Core, and SQL Server.

    • Proficient in creating web forms using ASP.NET

    • Experience with .NET Core for building modern web applications

    • Skilled in working with SQL Server for database management

    • Knowledge of integrating ASP.NET with SQL Server for data-driven applications

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Fundamental knowledge of Webform, .NET, and SQL Server.
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
  • Ans. 

    Vision India Services Pvt Ltd is a leading software development company known for its innovative solutions and client satisfaction.

    • Vision India Services Pvt Ltd is known for its expertise in software development and IT services

    • The company has a strong reputation for delivering high-quality solutions to clients

    • Vision India Services Pvt Ltd values employee growth and provides opportunities for career advancement

    • I wish to...

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

(2 Questions)

  • Q1. What did you like the best in Job Description
  • Ans. 

    I enjoyed the opportunity to work on cutting-edge technologies and collaborate with a talented team.

    • Exciting projects using the latest technologies

    • Collaboration with a talented team

    • Opportunity for professional growth and learning

  • Answered by AI
  • Q2. Get me 2 best reason we should hire you
  • Ans. 

    I have a strong technical background and a proven track record of delivering high-quality software solutions.

    • Extensive experience in software development with proficiency in multiple programming languages such as Java, Python, and JavaScript

    • Strong problem-solving skills and ability to work well in a team environment, demonstrated by successful completion of complex projects on time and within budget

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read JD description properly & prepare accordingly
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. How does dependency injection work in spring boot
  • Ans. 

    Dependency injection in Spring Boot allows objects to be injected into a class, reducing tight coupling and improving flexibility.

    • In Spring Boot, dependency injection is achieved through the use of @Autowired annotation.

    • Dependencies are injected into a class by Spring framework at runtime.

    • It helps in achieving loose coupling between classes and promotes easier testing.

    • Example: @Autowired private UserService userService

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is the role of @rest controller
  • Ans. 

    The @RestController annotation in Spring Boot is used to define a RESTful web service endpoint.

    • Used to create RESTful web services in Spring Boot

    • Maps HTTP requests to handler methods

    • Returns data in JSON or XML format

    • Example: @RestController public class UserController { @GetMapping("/users") public List<User> getAllUsers() { return userService.getAllUsers(); }

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Explain the use of @Request mapping
  • Ans. 

    The @RequestMapping annotation is used in Spring MVC to map web requests to specific handler methods.

    • Used to map HTTP requests to specific controller methods

    • Can specify the HTTP method, URL path, and other parameters

    • Helps in routing requests to the appropriate controller method

    • Example: @RequestMapping(value = "/hello", method = RequestMethod.GET)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to reach your goals and achieve

I applied via Naukri.com and was interviewed in Dec 2018. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Last round with branch Head

Interview Preparation Tips

Round: Test
Experience: Apptitude Test

Round: Resume Shortlist
Experience: Telephonic interview with HR

General Tips: When I was applied for Naukri I got a call from Bangalore HR and short listed for an interview with Gurgaon branch Head
First of all given apptitude test and got clear and next round with branch head clear the interview then I called for hr said your next round again. I confused but called next day from hr told me you are selected a then I got offer letter on email and joined the organisation.
Thanks
Skills: Communication, Body Language, Problem Solving, Analytical Skills, Leadership, Presentation Skills, Time Management, Decision Making Skills
Duration: <1 week

I applied via Company Website and was interviewed before Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Basic Hr question
  • Q2. 1. Introduce your self.
  • Q3. 2.Why you want to join vision india.
  • Q4. 3. What do you know about vision india.
  • Q5. Skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic about companies and introduction and basic hr
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed before Dec 2022. There were 2 interview rounds.

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

(4 Questions)

  • Q1. Experience Previous company
  • Ans. 

    I have 2 years of experience as a Data Analyst at XYZ Company.

    • Analyzed large datasets to extract valuable insights

    • Created visualizations and reports to communicate findings

    • Collaborated with cross-functional teams to drive data-driven decision making

  • Answered by AI
  • Q2. Experience And Salary Expectation
  • Q3. Family Background
  • Q4. Staying Location
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Methodologies in Agile .
  • Ans. 

    Agile methodologies focus on iterative development, collaboration, and flexibility.

    • Agile methodologies include Scrum, Kanban, and Extreme Programming (XP).

    • Scrum involves sprints, daily stand-up meetings, and a product backlog.

    • Kanban focuses on visualizing work, limiting work in progress, and continuous delivery.

    • Extreme Programming (XP) emphasizes coding standards, pair programming, and test-driven development.

  • Answered by AI
  • Q2. How do you manage requirement changes.
  • Ans. 

    I manage requirement changes by documenting them, analyzing impact, communicating with stakeholders, and updating project plans.

    • Document all requirement changes in a centralized system

    • Analyze the impact of the changes on project scope, timeline, and budget

    • Communicate changes to stakeholders and seek their approval

    • Update project plans and documentation accordingly

    • Ensure all team members are aware of the changes and thei

  • Answered by AI

Myanatomy Integration Interview FAQs

How many rounds are there in Myanatomy Integration Software Developer Intern interview?
Myanatomy Integration interview process usually has 5 rounds. The most common rounds in the Myanatomy Integration interview process are Technical, Resume Shortlist and One-on-one Round.
What are the top questions asked in Myanatomy Integration Software Developer Intern interview?

Some of the top questions asked at the Myanatomy Integration Software Developer Intern interview -

  1. Is nodejs is single Threaded or multi threade...read more
  2. Difference between sql and mongoDB? Difference between mysql and no...read more
  3. codding assignment for f...read more

Tell us how to improve this page.

Myanatomy Integration Software Developer Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

NR Consulting Interview Questions
4.6
 • 20 Interviews
Ven Consulting Interview Questions
3.4
 • 19 Interviews
Hire Glocal Interview Questions
4.7
 • 17 Interviews
TELUS Health Interview Questions
4.0
 • 17 Interviews
Gi Group Interview Questions
3.8
 • 15 Interviews
View all
Software Developer
40 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

UI Developer
4 salaries
unlock blur

₹4 L/yr - ₹5 L/yr

Technical Intern
4 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Explore more salaries
Compare Myanatomy Integration with

Vision India Services

3.7
Compare

Creative Hands HR Consultancy

4.0
Compare

Gi Group

3.8
Compare

Ven Consulting

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