Upload Button Icon Add office photos
Engaged Employer

i

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

MedTourEasy Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

MedTourEasy Software Developer Interview Questions, Process, and Tips

Updated 16 Sep 2021

MedTourEasy Software Developer Interview Experiences

1 interview found

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 125 minutes
Round difficulty - Easy

Platform for this round is Amcat. The First round have coding questions , we can write programs in any language . It was easy round.

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. Count Characters

    Anagrams have a unique property: the counts of each distinct character present in both strings are the same. One way to check this is: 

    1. Sort both strings, so that all the same characters come together
    2. Then loop through both strings together and check each element in both strings one by one
    3. If at any position, the characters are found to be different or if the lengths of the two strings are different, ...
  • Answered Anonymously
  • Q2. 

    Decimal to Octal Conversion Problem Statement

    Convert a given decimal number into its equivalent octal representation.

    Explanation:

    The octal number system is a base-8 system, meaning each digit ranges ...

  • Ans. Maths
    • A necessary observation for octal numbers is that every digit will lie in the range 0 - 7.
    • Create a variable sol to store the final octal representation of X and initialise sol to 0.
    • So, to convert decimal numbers to octal numbers:

                 1. Multiply previous sol value by 10, to add new remainder in the current step.

                 2. Find the r...

  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

This round was easy they basically ask about some important topics of computer science as well as related to our position for company.

  • Q1. What is the need for virtual memory?
  • Q2. 

    Delete Middle Element from Stack

    You are provided with a stack ARR of size 'N+1'. Your task is to delete the middlemost element so that the size of the resulting stack becomes 'N'.

    Recall that a stack is...

  • Ans. Recursive approach

    The idea is to use recursive calls. We first remove all items one by one, then we recur. After recursive calls, we push all items back except for the middle item.

     

    1. We have an input stack as “INPUTSTACK”, ‘N’ denotes the number of elements in the stack.
    2. We define a function "DELETEMIDDLE" that accepts, a stack of integers "STACK" and an integer “COUNT” (initially 0) as input parameters.
    3. Now we define...
  • Answered Anonymously
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

It was in the morning . Its one to one conversation. Interviewer was good enough. He ask about me and what i know about their company. What were my objectives and many more.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Development in NoidaEligibility criteriaAbove 7 CGPAMedTourEasy interview preparation:Topics to prepare for the interview - OOPS, STL, CPP, Socket Programming, Pointers,DBMS, Data Structures and Algorithms, Advanced Java, OOPS concepts, Problem Solving, Aptitude and ReasoningTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice Aptitude Questions from IndiaBix
Tip 2 : Continue practice on online coding platforms and do participate in coding challenges. 
Tip 3 : Keep revising your Computer Science fundamentals(OS, DBMS, Software Engineering principles).
Tip 4 : Also brush-up your aptitude skills.

Application resume tips for other job seekers

Tip 1 : Add only what you know properly. don't add extra stuff just to add weight to your resume.
Tip 2 : First page of the resume must in tabular form and it must give complete information about you in very simple manner.
Tip 3 : Use professional Keywords in your resume. 
Tip 4 : Highlight your Skills and Achievements. Put only those skills in which you are good like any question can be asked on any particular skill. Like how you will do this in this.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via campus placement at Birla Institute of Technology (BIT), Ranchi and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

It was a combination of mcq and coding questions
mcq: aptitude + c++ + sql question, nothing really tough
Coding question: 3 leetcode question, medium level, of stack, binary search and graph traversal

Round 2 - One-on-one 

(5 Questions)

  • Q1. Question regarding project
  • Q2. SQL basic to moderate question
  • Q3. C++ coding question on strings recursion callback in c, oops medium level question, finding error in code
  • Q4. Puzzles Q1-> cake cutting ( 3 cuts, 8 slices) Q2 ->9 bottles, 8 same weight bottles, 1 heavy, 2 tries using a balance
  • Q5. OS question difference bw multi-processing and multi-programming how would u reduce number of page faults. etc
Round 3 - One-on-one 

(3 Questions)

  • Q1. Once again project explanation
  • Q2. Basic to high level oops question:( C++) i was asked to write some class and in that these questions were asked 1: different types of access modifiers, but the question was asked indirectly. like why did...
  • Q3. HR questions, since it was a semi technical cum hr round,

Interview Preparation Tips

Interview preparation tips for other job seekers - stay clam and respond actively and please fill the company recruitment form properly, question was asked directly form that form. Also properly attend the pre placement talks, it would be beneficial as u can directly answer company related questions without any hesitation.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Computer Fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Flatten a binary tree
  • Ans. 

    Flatten a binary tree by converting it into a linked list in-place.

    • Use a recursive approach to flatten the binary tree.

    • Traverse the tree in a pre-order manner and keep track of the previous node.

    • Set the left child of each node to null and the right child to the next node in the linked list.

    • Example: Input: 1 -> 2 -> 5 -> 3 -> 4 -> null, Output: 1 -> null -> 2 -> null -> 3 -> null -> 4 -> null -> 5 -> null

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Impliment counter using closure in js
  • Ans. 

    Implement a counter using closure in JavaScript.

    • Create a function that returns another function which increments a counter variable.

    • The counter variable should be defined in the outer function's scope and only accessible to the inner function.

    • Each time the inner function is called, increment the counter variable and return its value.

  • Answered by AI
  • Q2. Explain promises, promise.all(), impliment binary search
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation. promise.all() is a method that takes an array of promises and returns a single promise that resolves when all of the promises have resolved.

    • Promises are used in JavaScript to handle asynchronous operations.

    • promise.all() takes an array of promises and returns a single promise that resolves when all promises in the array ha...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Questions on kafka, cache invalidation, diff b/w authentication and authorization

Interview Preparation Tips

Interview preparation tips for other job seekers - brush up basics of js and microservices

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leecode medium level question

Round 2 - Coding Test 

Leetcode Hard level Question

Round 3 - Technical 

(1 Question)

  • Q1. This is cto round asked some interview questions

I was interviewed in Apr 2022.

Round 1 - Coding Test 

Round duration - 75 minutes
Round difficulty - Medium

Test Comprises of 3 coding questions and some MCQs

Round 2 - Video Call 

Round duration - 60 minutes
Round difficulty - Medium

2 coding questions of (1 easy and 1 medium level) on hackerrank code-pair with the Interviewer

Round 3 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This Round was based on CS fundamentals and One coding question was there as a Code-pair.

  • Q1. 

    Next Greater Element Problem Statement

    Given a list of integers of size N, your task is to determine the Next Greater Element (NGE) for every element. The Next Greater Element for an element X is the firs...

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chandigarh Group of Colleges (CGC), Landran. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaClearwater Analytics interview preparation:Topics to prepare for the interview - DSA, Java, OOPS, Microservices, REST APITime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Require coding skills to pass the interview. 
Tip 2 : Brush up on Java Skills
Tip 3 : Brush up on OOPS

Application resume tips for other job seekers

Tip 1 : Keep it to one page
Tip 2 : Mention relevant skills as per the job

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Technology,(NIT), Delhi and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Kadance algorithm and find the middle of the linklist

Round 2 - Coding Test 

More on java and Python based coding questions

Round 3 - HR 

(4 Questions)

  • Q1. Behavioural questions were asked
  • Q2. What are your expectations from this job
  • Q3. What are your plans ahead
  • Q4. Where do you see yourself in 5 years ahead

Interview Preparation Tips

Interview preparation tips for other job seekers - Do good practise of DSA
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Senior taking technical round
Round 2 - Technical 

(1 Question)

  • Q1. Manger Taking technical round
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Coding Test 

1 hour duration. Sliding window problem. On hacker rank platform. Expected to write a working code and solve it optimally/scalable solution.

Round 2 - Technical 

(1 Question)

  • Q1. Again a coding test. LLD + hash map. 1 hour on hacker rank.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Techical questions and coding questions related profile.
  • Q2. Basic concepts about your programming skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice company and positive interview response and smooth interview process and recommend to join .

Tell us how to improve this page.

Data Analyst Trainee
52 salaries
unlock blur

₹1 L/yr - ₹8 L/yr

Data Analyst Intern
19 salaries
unlock blur

₹1 L/yr - ₹7 L/yr

Data Analyst
14 salaries
unlock blur

₹2 L/yr - ₹7 L/yr

Business Analyst
8 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Data Science Intern
6 salaries
unlock blur

₹1 L/yr - ₹2 L/yr

Explore more salaries
Compare MedTourEasy with

Practo

3.2
Compare

Lybrate

3.5
Compare

Portea Medical

4.3
Compare

Clove Dental

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