MindTickle
10+ Navitas Life Sciences Interview Questions and Answers
You are given an N * N matrix of integers where each row and each column is sorted in increasing order. You are given a target integer 'X'. Find the position of...read more
This question asks to find the position of a target integer in a row-wise and column-wise sorted matrix.
Iterate through each row and column of the matrix
Compare the target integer with the current element
If the target integer is found, return the position as {i, j}
If the target integer is not found, return {-1, -1}
You have been given a long type array/list 'ARR' of size 'N'. It represents an elevation map wherein 'ARR[i]' denotes the elevation of the 'ith' bar. Print the total amount of rainwater that ...read more
The question asks to find the total amount of rainwater that can be trapped in the given elevation map.
Iterate through the array and find the maximum height on the left and right of each bar.
Calculate the amount of water that can be trapped at each bar by taking the minimum of the maximum heights on the left and right.
Sum up the trapped water for all bars and return the total amount.
Ninja has recently started a startup. In his startup, there is only one conference room for a meeting. Ninja receives an array/list ‘MEETINGS’ of back-to-back appointment requests and is d...read more
You are given an undirected graph consisting of ‘N’ nodes from 0 to ‘N’ - 1. You are given a list ‘EDGES’ of size ‘M’, consisting of all the edges of this undirected graph. Determine whether the giv...read more
Given an array 'A' consisting of 'N' integers, find the smallest subarray of 'A' containing exactly 'K' distinct integers.
Note :
If more than one such contiguous subar...read more
Given an M * N matrix, where the value at any cell denotes the height of that cell in a 2-D elevation map. You need to find the volume of water that can be trapped within it.
For a matrix ...read more
You are given a directed acyclic graph. Your task is to find any topological sorting of the graph.
A directed acyclic graph is a directed graph with no directed cycles.
Topological sorting for D...read more
Q8. polyfill of promise.all and debounce. use debounce in example
Implement polyfill of promise.all and debounce function with example
Create a polyfill for Promise.all by using Promise constructor and Promise.resolve
Implement debounce function by using setTimeout and clearTimeout
Example: const debouncedFunction = debounce(() => { console.log('debounced function called') }, 300)
Q9. Machine coding to build a basic data grid component
Implement a basic data grid component using machine coding
Start by defining the structure of the data grid component
Implement functions for adding, updating, and deleting data in the grid
Include features like sorting, filtering, and pagination
Consider performance optimizations for handling large datasets
Test the data grid component with sample data to ensure functionality
Q10. Find the repeating characters from a string in a single loop
To find repeating characters from a string in a single loop.
Create an empty array to store repeating characters
Loop through each character of the string
If the character is already in the array, add it to the array
Return the array of repeating characters
Q11. 1. Give an example of when you iterated on your product.
Iterated on a product to improve user experience
Identified pain points through user feedback
Conducted user research to understand user needs
Implemented changes based on feedback and research
Tested new features with a subset of users
Analyzed data and user feedback to further refine the product
Design an online Chess Board Game.
Q13. Alien Dictionary Problem
The Alien Dictionary Problem is a question that involves sorting words based on a given alien language's alphabetical order.
The problem can be solved using topological sorting.
Create a graph where each character is a node and each word is an edge.
Perform a topological sort on the graph to get the correct order of characters.
If there is a cycle in the graph, it means the alien language is invalid.
Design an online Transport Renter service.
Q15. tell something that is not in the resume
Q16. frontend code quality
Frontend code quality is crucial for performance, maintainability, and scalability of web applications.
Consistent coding style and conventions improve readability and maintainability.
Modular and reusable code components enhance scalability and reduce duplication.
Regular code reviews and testing ensure high quality and bug-free code.
Optimizing performance by minimizing file sizes, reducing HTTP requests, and using efficient algorithms.
Implementing accessibility features to ens...read more
Q17. Design a Card Game BlackJack
Design a card game BlackJack
Create a deck of 52 cards
Assign values to cards (number cards are worth their face value, face cards are worth 10, Ace can be 1 or 11)
Deal 2 cards to each player and dealer, one of the dealer's cards is hidden
Players can choose to 'hit' (draw another card) or 'stand' (keep current hand)
Dealer must hit until their hand value is 17 or higher
Player wins if their hand value is closer to 21 than the dealer's without exceeding 21
Q18. Design Mindtickle - B2b SAAS Platform.
Mindtickle is a B2B SAAS platform designed to help companies train and develop their sales teams through interactive learning modules.
Focus on creating engaging and interactive training modules for sales teams
Include features for tracking progress and performance analytics
Integrate with CRM systems for seamless data flow
Offer customization options for different industries and sales processes
Q19. Design LLD for Parking Lot
Design LLD for Parking Lot
Create classes for ParkingLot, ParkingSpot, Vehicle, etc.
Implement methods for parking, unparking, checking availability, etc.
Consider different types of vehicles and parking spots (e.g. regular, handicapped, electric)
Include features like ticketing system, payment processing, and security measures
More about working at MindTickle
Top HR Questions asked in Navitas Life Sciences
Interview Process at Navitas Life Sciences
Top Interview Questions from Similar Companies
Reviews
Interviews
Salaries
Users/Month