Upload Button Icon Add office photos

Meditab Software

Compare button icon Compare button icon Compare

Filter interviews by

Meditab Software Senior Developer Interview Questions and Answers

Updated 2 Jul 2024

Meditab Software Senior Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What's your background
  • Q2. Tell about React
  • Ans. 

    React is a JavaScript library for building user interfaces.

    • Declarative: React makes it easy to create interactive UIs by breaking them into reusable components.

    • Virtual DOM: React uses a virtual DOM to improve performance by only updating the necessary parts of the actual DOM.

    • Component-based: React encourages the creation of reusable components that manage their own state.

    • JSX: React allows you to write HTML-like syntax

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

Calculator code of addition substraction and multiplication

Round 3 - Coding Test 

CODING TEST OF how to add 2 numbers

Round 4 - Coding Test 

Coding test of how to use loops

Round 5 - HR 

(1 Question)

  • Q1. Whats your salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - good , try hard
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
-

I applied via Company Website and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Directions: Each of the following question has a question and two statements labelled as (i) and (ii). Use the data/information given in (i) and (ii) to decide whether the data are sufficient to answer the question record your answer as

A) If you can get the answer from (1)alone but not from (2)
B) If you can get the answer from (2)alone but not from (1)
C) If can get the answer from (1)and (2)together ,although neither statement by itself suffice
D) If statement (1)alone suffices and statement (2) alone also suffice.
E) If can\'t get the answer from statements (1) and (2) together and you need more data.

Round 2 - Assignment 

Copyright protection is given for a work having originality,i.e. it should be from the author and must have minimum degree of creativity. So it is the author who is the real creator of the work thereby first owner of the copyright and Indian law recognizes author as the firstowner of the copyright .But by the term ‘ownership it means it includes not only theauthor ,but also assignee and can even a legal entity even though not defined in the !ct. InBern convention the term !uthor is not defined, instead it says that the person under whose name the work is disclosed, which implies that it is not necessary that always theauthor should be the owner. "owever Indian copyright !ct defines the tern ‘!uthor withrespect to various works, but still leaves some problems. It becomes more comple# in theconte#t of changing technologies, i.e. cinematographic works, sound recording, broadcasting etc which is a combination of different works, also when author does thework in the course of employment. $hen new technologies emerge, different mode of communication simultaneously arise and the e#ploitation of the copyright by wayof assignment %licensing will add economic benefits to the copyright owner and the provisions of assignment and licensing becomes crucial. By amendments Indian Copyright!ct has taken care of such provisions, but still leaving lacunae % the role of &udiciary becomes crucial in interpreting such provisions for effectively protecting the rights of the authors.

Round 3 - Coding Test 

What are the constraints and give example that's include all constraints? 2. Basic SQL queries were asked but I don't remember 3. Then asked questions from my college projects

Round 4 - Technical 

(2 Questions)

  • Q1. Why we use public, private and protect
  • Ans. 

    Public, private, and protected are access modifiers used in object-oriented programming to control the visibility of class members.

    • Public: allows access to the member from outside the class

    • Private: restricts access to the member only within the class

    • Protected: allows access to the member within the class and its subclasses

  • Answered by AI
  • Q2. Difference between various SQL joins?
  • Ans. 

    SQL joins are used to combine rows from two or more tables based on a related column between them.

    • INNER JOIN: Returns rows when there is at least one match in both tables.

    • LEFT JOIN: Returns all rows from the left table, and the matched rows from the right table.

    • RIGHT JOIN: Returns all rows from the right table, and the matched rows from the left table.

    • FULL JOIN: Returns rows when there is a match in one of the tables.

    • C...

  • Answered by AI

Skills evaluated in this interview

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 Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java springboot basic to intermediate question
  • Q2. Java stream questions
Round 2 - Technical 

(2 Questions)

  • Q1. Easy level DSA questions
  • Q2. Project based questions
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Online test for aptitude and technical questions which is quite easy you need above 12 marks i guess , only then you will be considered for technical interview

Round 2 - HR 

(5 Questions)

  • Q1. Introduction about yourself
  • Q2. About yardi products, and yardi company
  • Q3. Where do you live and are you able to relocate to the respective location?
  • Q4. Why don't you planning for higher education
  • Q5. Tell me about your family
Round 3 - Technical 

(14 Questions)

  • Q1. What is oops concepts?
  • Ans. 

    Object-oriented programming concepts that focus on classes, objects, inheritance, encapsulation, and polymorphism.

    • Classes: Blueprint for creating objects with attributes and methods.

    • Objects: Instances of classes that contain data and behavior.

    • Inheritance: Ability for a class to inherit attributes and methods from another class.

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

    • Polymorp...

  • Answered by AI
  • Q2. What is method overriding and overloading with code explanation? (i was prepared but they were asking me tricky questions about it which is difficult to answer)
  • Q3. Write a code to print numbers in pyramid shape all patterns
  • Ans. 

    Print numbers in pyramid shape patterns using SQL code.

    • Use a loop to iterate through rows and columns to print the numbers in pyramid shape.

    • Increment the numbers in each row to create the pyramid effect.

    • Consider the spacing and alignment to create a visually appealing pyramid pattern.

  • Answered by AI
  • Q4. Write a code to sort array without sort function
  • Ans. 

    Code to sort array without sort function

    • Iterate through the array and compare each element with the rest to find the smallest element

    • Swap the smallest element with the first element in the unsorted portion of the array

    • Repeat the process for the remaining unsorted portion of the array until fully sorted

  • Answered by AI
  • Q5. Difference between list, string array... etc?
  • Ans. 

    List is a collection of objects, string array is an array of strings, etc. Each has its own characteristics and uses.

    • List: dynamic collection of objects, can grow/shrink in size. Example: List numbers = new ArrayList<>();

    • String array: fixed-size array containing strings. Example: String[] names = new String[3];

    • Array: fixed-size collection of elements of the same type. Example: int[] scores = new int[5];

Answered by AI
  • Q6. Sql join types with example
  • Ans. 

    SQL join types allow combining data from multiple tables based on a specified condition.

    • Inner Join: Returns rows that have matching values in both tables.

    • Left Join: Returns all rows from the left table and the matched rows from the right table.

    • Right Join: Returns all rows from the right table and the matched rows from the left table.

    • Full Outer Join: Returns all rows when there is a match in either left or right table.

    • S...

  • Answered by AI
  • Q7. Keys types in sql
  • Ans. 

    Key types in SQL include primary keys, foreign keys, unique keys, and composite keys.

    • Primary key: uniquely identifies each record in a table.

    • Foreign key: establishes a relationship between two tables.

    • Unique key: ensures that all values in a column are unique.

    • Composite key: combination of multiple columns to uniquely identify a record.

  • Answered by AI
  • Q8. Query to join two tables and show the information (easy one)
  • Ans. 

    Use SQL JOIN to combine two tables and display information.

    • Use the JOIN keyword to combine tables based on a related column

    • Specify the columns you want to display in the SELECT statement

    • Use ON clause to specify the column used for joining the tables

  • Answered by AI
  • Q9. Query to join two tables and show information ( which is quite difficult for me)
  • Q10. Explain me project
  • Q11. Explain me your internship (if you have done already)
  • Q12. Project related questions specially on database part
  • Q13. Oops 4 pillars - code explanation (tricky one)
  • Q14. Gave me a code and asked about class and method and alot of tricky questions
  • Interview Preparation Tips

    Topics to prepare for Yardi Systems SQL Developer interview:
    • OOPS
    • DSA
    • SQL
    • Coding
    • SQL Queries
    • Project
    • Internship
    Interview preparation tips for other job seekers - Be prepare for code in oops and dsa , queries in sql theory based questions in sql and oops, dsa, your final year project, internship etc.
    i was well prepared for everything still they didn't hire me and also said after the interview that you will get a message from HR later, but unfortunately i didn't receive any mail or call.

    Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - One-on-one 

    (2 Questions)

    • Q1. You have worked on which technology
    • Ans. 

      I have worked on technologies such as Java, Python, SQL, and JavaScript.

      • Java

      • Python

      • SQL

      • JavaScript

    • Answered by AI
    • Q2. What you had implemented
    • Ans. 

      I have implemented various web applications using technologies like HTML, CSS, JavaScript, and React.

      • Developed a responsive website for a local business using HTML, CSS, and JavaScript

      • Created a single-page application using React for a personal project

      • Integrated APIs to fetch and display data dynamically on web pages

    • Answered by AI

    Skills evaluated in this interview

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

    I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

    Round 1 - Aptitude Test 

    It was CAD Developer position so they asked about cad and some aptitude questions.

    Round 2 - Call 

    (2 Questions)

    • Q1. Asked about AutoCAD APIs.
    • Q2. About C# language.
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (3 Questions)

    • Q1. Technical test was easy
    • Q2. Encapsulation, Basic questions about c and c++ Software development process
    • Q3. Agile methodologies
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Aptitude Test 

    General Aptitude Test

    Round 2 - Technical 

    (1 Question)

    • Q1. OOPS , Database Questions
    Round 3 - Technical 

    (1 Question)

    • Q1. This round was also same as round 2
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Coding Test 

    Coding questions codility hacker ranl

    Meditab Software Interview FAQs

    How many rounds are there in Meditab Software Senior Developer interview?
    Meditab Software interview process usually has 1 rounds. The most common rounds in the Meditab Software interview process are One-on-one Round.

    Tell us how to improve this page.

    Meditab Software Senior Developer Interview Process

    based on 1 interview

    Interview experience

    5
      
    Excellent
    View more

    Interview Questions from Similar Companies

    KPIT Technologies Interview Questions
    3.4
     • 278 Interviews
    Globant Interview Questions
    3.8
     • 172 Interviews
    Chetu Interview Questions
    3.3
     • 172 Interviews
    Oracle Cerner Interview Questions
    3.7
     • 157 Interviews
    AVASOFT Interview Questions
    3.6
     • 146 Interviews
    Brane Enterprises Interview Questions
    2.0
     • 132 Interviews
    ivy Interview Questions
    3.6
     • 122 Interviews
    DE Shaw Interview Questions
    3.8
     • 120 Interviews
    ServiceNow Interview Questions
    4.1
     • 120 Interviews
    View all
    Programmer Analyst
    134 salaries
    unlock blur

    ₹3.6 L/yr - ₹9.2 L/yr

    Quality Analyst
    77 salaries
    unlock blur

    ₹3.6 L/yr - ₹8 L/yr

    Medical Billing Executive
    36 salaries
    unlock blur

    ₹2.1 L/yr - ₹4.5 L/yr

    Senior Programmer Analyst
    32 salaries
    unlock blur

    ₹6.3 L/yr - ₹15.5 L/yr

    Medical Billing Specialist
    31 salaries
    unlock blur

    ₹2.6 L/yr - ₹4.8 L/yr

    Explore more salaries
    Compare Meditab Software with

    Practo

    3.2
    Compare

    Oracle Cerner

    3.7
    Compare

    Veradigm

    4.0
    Compare

    Epic Systems Corporation (Wisconsin)

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