Upload Button Icon Add office photos

Filter interviews by

Modern Hitech Products Interview Questions and Answers

Updated 29 May 2022

Modern Hitech Products Interview Experiences

1 interview found

I applied via Walk-in and was interviewed before May 2021. There were 3 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 

(1 Question)

  • Q1. Subject related Technical questions
Round 3 - HR 

(1 Question)

  • Q1. PI and salary packages discuss

Interview Preparation Tips

Interview preparation tips for other job seekers - Confidence and communication skills

Quality Engineer Interview Questions asked at other Companies

Q1. What is MSA and addition of msa version, type of msa ,what different between variable data and attibute data .why difine flase and miss rate calculate by msa .
View answer (8)

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is your weekness ?
  • Ans. Simple and straight I don't have any. If you tell him/her about your weekness it will be affected on your interview. So answer should I don't have it.
  • Answered by Nikhil Vijay Kudale
  • Q2. What is your strengths?
  • Ans. Always give positive answers Teamplayer, Quick learner
  • Answered by Nikhil Vijay Kudale

Interview Preparation Tips

Interview preparation tips for other job seekers - Always Prepare for interview with knowledge not any fake ideas. Be creative.

I applied via Company Website and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They asked to calculate time complexity of any algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice is the only silver bullet to crack any interview!
Do coding of problem on notepad. Refer DS, ALGO related problem from GeeksOfGeeks site.

And 1 more thing coding is an art and please do not mug up the code, just try to understand the tricks, logic and solution and use those tricks and solution to solve any coding problem.

Do practice, Do practice and Do practice....nothing else

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself.
  • Q2. Do you believe in Team Work or Individual work.
  • Q3. Tell me about previous experience & unforgettable movement in previous company .

Interview Preparation Tips

Interview preparation tips for other job seekers - Be positive about your previous companies experience.

I applied via Walk-in and was interviewed in Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions on derivatives, equity and stock market.

Interview Preparation Tips

Interview preparation tips for other job seekers - They look for confident, good English and basic subject knowledge candidate.

I appeared for an interview before Feb 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

It was an Aptitude test and Technical objective test of 60 minutes followed by a Coding test of 90 minutes.There was a 1 hour gap b/w the two tests.

  • Q1. 

    Count Derangements

    Determine the number of derangements possible for a set of 'N' elements. A derangement is a permutation where no element appears in its original position.

    Input:

    An integer 'T' repres...
  • Ans. 

    Count the number of derangements possible for a set of 'N' elements.

    • Derangement is a permutation where no element appears in its original position.

    • Use dynamic programming to calculate derangements efficiently.

    • Apply the formula: D(n) = (n-1) * (D(n-1) + D(n-2)), with base cases D(1) = 0 and D(2) = 1.

  • Answered by AI
  • Q2. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for better efficiency

    • Optimize by only checking up to the square root of N for divisors

  • Answered by AI
  • Q3. 

    Common Elements Problem Statement

    Identify and output the common strings present in both given arrays of lowercase alphabets for each test case.

    Input:

    The first line contains an integer 'T' representin...
  • Ans. 

    The problem requires identifying and outputting common strings present in two arrays of lowercase alphabets for each test case.

    • Iterate through the elements of the second array and check if they are present in the first array.

    • Use a hash set or map to efficiently check for common elements.

    • Return the common strings in the order they appear in the second array.

  • Answered by AI
Round 2 - Video Call 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 1 question from DSA particulary Trees and after that some questions from OOPS were asked.

  • Q1. 

    Spiral Order Traversal of a Binary Tree

    Given a binary tree with N nodes, your task is to output the Spiral Order traversal of the binary tree.

    Input:

    The input consists of a single line containing elem...
  • Ans. 

    Implement a function to return the spiral order traversal of a binary tree.

    • Traverse the binary tree level by level, alternating the direction of traversal.

    • Use a queue to keep track of nodes at each level.

    • Append nodes to the result list based on the traversal direction.

    • Handle null nodes appropriately to maintain the spiral order.

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

  • Answered by AI
  • Q2. What is the difference between an Abstract Class and an Interface in Java?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructor, fields, and methods, while interface can only have constants and abstract methods.

    • A class can extend only one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to provide a common base for subclasses, while interfaces are used to define a contr...

  • Answered by AI
  • Q3. What is the static keyword in Java?
  • Ans. 

    The static keyword in Java is used to create class-level variables and methods that can be accessed without creating an instance of the class.

    • Static variables are shared among all instances of a class.

    • Static methods can be called without creating an object of the class.

    • Static blocks are used to initialize static variables.

    • Example: public static int count = 0;

  • Answered by AI
  • Q4. What is the difference between a constructor and a method in Object-Oriented Programming?
  • Ans. 

    Constructor is a special method used to initialize objects, while a method is a regular function that performs a specific task.

    • Constructors are called automatically when an object is created, while methods need to be called explicitly.

    • Constructors have the same name as the class, while methods have unique names.

    • Constructors do not have a return type, while methods have a return type.

    • Example: Constructor - public ClassN...

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This round had 2 questions from DSA and after that some basic HR questions were asked.

  • Q1. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to find the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 1D array to store the number of ways to make change for each value from 0 to the target value.

    • Iterate through the denominations and update the array based on the current denomination.

    • The final answer will be the value at the target index of the ar

  • Answered by AI
  • Q2. 

    Palindrome String Validation

    Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols.

    Note:
    The string 'S' should be evaluated in a case...
  • Ans. 

    Check if a given string is a palindrome after removing special characters, spaces, and converting to lowercase.

    • Remove special characters and spaces from the input string

    • Convert the string to lowercase

    • Check if the modified string is a palindrome by comparing characters from start and end

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPANagarro interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Case Study 

Competitive landscape of Hemophilia A in united states

Round 2 - Group Discussion 

Case study panel discussion

Round 3 - HR 

(4 Questions)

  • Q1. Tell me about yourself.
  • Q2. What are your strengths and weaknesses?
  • Q3. What are your salary expectations?
  • Q4. Why are you looking for a change?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on the case study you provide

I applied via Campus Placement and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Quant, lr, di, basic english

Round 2 - One-on-one 

(1 Question)

  • Q1. Business round with india head of operation

Interview Preparation Tips

Topics to prepare for WNS Data Analyst interview:
  • Python
  • Advanced Excel
  • SQL
Interview preparation tips for other job seekers - Please prepare a project in detail. They ask everything related to a particular project and them go on in depth for core skills.

Associate Interview Questions & Answers

WNS user image Anonymous

posted on 24 Feb 2022

I applied via Referral and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - HR 

(6 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Tell me about yourself.
Round 2 - Aptitude Test 
Round 3 - One-on-one 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. What is your role in previous company
  • Q3. Process releted questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Maximum answer to the question

I applied via Naukri.com and was interviewed in Mar 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basically the process was very smooth and they asked questions according to ur experience and the job u did earlier.

Interview Preparation Tips

Interview preparation tips for other job seekers - All I will say that be confident and don't get nervous while speaking.

Modern Hitech Products Interview FAQs

How many rounds are there in Modern Hitech Products interview?
Modern Hitech Products interview process usually has 3 rounds. The most common rounds in the Modern Hitech Products interview process are Resume Shortlist, Technical and HR.

Tell us how to improve this page.

Interview Questions from Similar Companies

WNS Interview Questions
3.4
 • 1k Interviews
Google Interview Questions
4.4
 • 831 Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
EXL Service Interview Questions
3.7
 • 741 Interviews
iEnergizer Interview Questions
4.6
 • 622 Interviews
Publicis Sapient Interview Questions
3.5
 • 618 Interviews
GlobalLogic Interview Questions
3.7
 • 587 Interviews
View all

Modern Hitech Products Reviews and Ratings

based on 5 reviews

3.4/5

Rating in categories

2.9

Skill development

3.4

Work-life balance

3.4

Salary

2.9

Job security

2.9

Company culture

2.4

Promotions

3.4

Work satisfaction

Explore 5 Reviews and Ratings
Compare Modern Hitech Products with

iEnergizer

4.6
Compare

WNS

3.4
Compare

AU Small Finance Bank

4.2
Compare

Conneqt Business Solutions

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