Add office photos
Employer?
Claim Account for FREE

Carelon Global Solutions

3.9
based on 3.1k Reviews
Filter interviews by

10+ Majik Medical Solutions Interview Questions and Answers

Updated 19 Oct 2024
Popular Designations

Q1. If your pega certified? Who java is used in pega,define oops,what are different types of Inheritance, what are activities gives examples,some questions on ruleset

Ans.

The interviewer asked about Pega certification, Java in Pega, OOPs, Inheritance, Activities, and Ruleset.

  • Pega is a BPM tool that uses Java for coding.

  • OOPs stands for Object-Oriented Programming and is a programming paradigm.

  • There are four types of inheritance: Single, Multiple, Multilevel, and Hierarchical.

  • Activities are used in Pega to perform a specific task or set of tasks.

  • Ruleset is a collection of rules that define the behavior of an application.

Add your answer

Q2. Write a code of angstrom number?

Ans.

Angstrom number is a number whose sum of cubes of digits is equal to the number itself.

  • Take input number

  • Separate digits

  • Cube each digit

  • Sum the cubes

  • Compare with input number

Add your answer

Q3. Coding:, optimal code to print the number 1,100 a prime or not

Ans.

To print numbers 1 to 100 and check if they are prime or not.

  • Use a loop to iterate through numbers 1 to 100

  • For each number, check if it is prime or not

  • Print the number and whether it is prime or not

View 2 more answers

Q4. Explain 4 pillars of OOPs concept?

Ans.

The 4 pillars of OOPs are Abstraction, Encapsulation, Inheritance, and Polymorphism.

  • Abstraction: Hiding complex implementation details and showing only essential features.

  • Encapsulation: Binding data and functions together to protect data from outside interference.

  • Inheritance: Creating new classes from existing ones, inheriting properties and methods.

  • Polymorphism: Ability of objects to take on multiple forms, allowing flexibility and extensibility.

Add your answer
Discover Majik Medical Solutions interview dos and don'ts from real experiences

Q5. 4) Name the programming languages you know?

Ans.

I know several programming languages including Java, Python, and C++.

  • Proficient in Java and Python

  • Familiar with C++ and JavaScript

  • Experience with SQL and HTML/CSS

  • Comfortable with object-oriented programming and data structures

  • Have worked with frameworks such as Spring and Django

View 1 answer

Q6. What the things u learnt from pandemic of 2021 ? Elaborate them

Ans.

The pandemic of 2021 taught me the importance of adaptability, resilience, and remote collaboration.

  • Adaptability: Learning to quickly adjust to changing circumstances and work environments.

  • Resilience: Developing the ability to bounce back from setbacks and challenges.

  • Remote collaboration: Mastering the art of working effectively with team members from different locations.

  • Time management: Balancing work and personal life while working from home.

  • Digital skills: Improving profic...read more

Add your answer
Are these interview questions helpful?

Q7. Compare the python and java programming language based on their use cases.

Ans.

Python is versatile and easy to learn, while Java is more robust and widely used in enterprise applications.

  • Python is known for its simplicity and readability, making it a popular choice for beginners and rapid development.

  • Java is statically typed and has a strong emphasis on object-oriented programming, making it suitable for large-scale projects and enterprise applications.

  • Python is commonly used for web development, data analysis, artificial intelligence, and scientific co...read more

Add your answer

Q8. Expalin your Projects and functioning of novel features.

Ans.

I have worked on projects involving the development of novel features such as machine learning algorithms for predictive analytics.

  • Developed machine learning algorithms to predict customer churn in a telecom company.

  • Implemented natural language processing techniques for sentiment analysis in social media data.

  • Created a recommendation system based on collaborative filtering for an e-commerce platform.

Add your answer
Share interview questions and help millions of jobseekers 🌟

Q9. Explain how DL is different from ML

Ans.

DL uses neural networks with multiple layers to learn complex patterns, while ML uses algorithms to learn from data.

  • DL uses deep neural networks with multiple layers, while ML uses simpler algorithms like decision trees or SVMs.

  • DL requires large amounts of data to train effectively, while ML can work with smaller datasets.

  • DL is more computationally intensive and requires more processing power compared to ML.

  • DL is better suited for tasks like image and speech recognition, whil...read more

Add your answer

Q10. Introduction OOPS Concepts Explain college final year project

Ans.

My college final year project was a web-based application for online shopping with features like user authentication, product search, and order tracking.

  • Developed using Java for backend and HTML/CSS/JavaScript for frontend

  • Implemented OOPS concepts like inheritance, encapsulation, and polymorphism

  • Used MySQL database for storing user information and product details

  • Integrated payment gateway for secure transactions

  • Collaborated with team members to design and develop the project

Add your answer

Q11. What are the 5 pillars of oops concept

Ans.

The 5 pillars of OOPs concept are Inheritance, Encapsulation, Polymorphism, Abstraction, and Class/Object.

  • Inheritance: Allows a class to inherit properties and behavior from another class.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit.

  • Polymorphism: Ability to present the same interface for different data types.

  • Abstraction: Hiding the complex implementation details and showing only the necessary features.

  • Class/Object: Blueprint for creatin...read more

Add your answer

Q12. Encapsulation and inheritance practical examples

Ans.

Encapsulation and inheritance are key concepts in object-oriented programming.

  • Encapsulation: hiding the internal state of an object and restricting access to it. Example: using private variables and public methods in a class.

  • Inheritance: allowing a class to inherit properties and behavior from another class. Example: a 'Dog' class inheriting from an 'Animal' class.

Add your answer

Q13. Tree Data Structure and it's variations.

Ans.

Tree data structure is a hierarchical data structure with nodes connected by edges.

  • Variations include binary trees, binary search trees, AVL trees, red-black trees, etc.

  • Trees can be used to represent hierarchical relationships like file systems, organization structures, etc.

  • Traversal methods include in-order, pre-order, post-order, and level-order traversal.

Add your answer

Q14. what is java? oops conceps?

Ans.

Java is a high-level, object-oriented programming language used for developing desktop, web, and mobile applications.

  • Java is platform-independent and can run on any operating system with the help of JVM.

  • It follows the OOPS concepts like inheritance, encapsulation, polymorphism, and abstraction.

  • Java has a vast library of pre-built classes and APIs that make development faster and easier.

  • Java is used for developing various applications like Android apps, web applications, enter...read more

Add your answer

Q15. Explain concept of oops

Ans.

Object-oriented programming paradigm that focuses on objects and classes for code organization and reusability.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit (object)

  • Inheritance: Ability of a class to inherit properties and behavior from another class

  • Polymorphism: Ability to present the same interface for different data types

  • Abstraction: Hiding the complex implementation details and showing only the necessary features

Add your answer

Q16. 4 pillars of oops

Ans.

The 4 pillars of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

  • Inheritance: Allows a class to inherit properties and behavior from another class.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit.

  • Abstraction: Hiding the complex implementation details and showing only the necessary features of an object.

  • Polymorphism: Ability of an object to take on many forms.

Add your answer

Q17. Introduce urself

Ans.

I am a recent graduate with a degree in Computer Science and a passion for software development.

  • Recent graduate with a degree in Computer Science

  • Passionate about software development

  • Experience with programming languages like Java and Python

Add your answer

Q18. Write a star pattern

Ans.

Print a star pattern using loops

  • Use nested loops to print the pattern

  • Increment the number of stars in each row

  • Example: for a pattern with 5 rows -

  • *

  • **

  • ***

  • ****

  • *****

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Majik Medical Solutions

based on 36 interviews
4 Interview rounds
Resume Shortlist Round
Technical Round - 1
Technical Round - 2
Personal Interview1 Round
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Associate Software Engineer Interview Questions from Similar Companies

3.7
 • 60 Interview Questions
4.1
 • 32 Interview Questions
3.7
 • 26 Interview Questions
3.6
 • 19 Interview Questions
4.7
 • 15 Interview Questions
3.7
 • 11 Interview Questions
View all
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
70 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter