Filter interviews by
I applied via Company Website and was interviewed before Sep 2022. There was 1 interview round.
The Front Office Executive is responsible for ensuring that reports are prepared and ready for distribution.
Ensure all necessary information is gathered for the report
Organize the information in a clear and concise manner
Review the report for accuracy and completeness before distribution
Top trending discussions
posted on 22 May 2024
They have their own platform
Take home assignment
Questions for dbms,os
My day was productive and busy, with a lot of coding and problem-solving.
Completed a new feature for the website
Fixed a bug in the existing codebase
Attended a team meeting to discuss project updates
In 5 years, I see myself as a senior front end developer leading a team and working on cutting-edge technologies.
Leading a team of developers on various projects
Working on advanced technologies like AR/VR, AI, and machine learning
Contributing to open source projects and attending tech conferences
Continuing to learn and grow in the field of front end development
posted on 23 Aug 2024
I applied via Approached by Company and was interviewed in Feb 2024. There were 3 interview rounds.
I was asked 60 question with various snppits or problems to be solved within a time frame of 1 hour
3 dsa 2 medium 1 hard
To create a project in which i was asked to simply create a exact same page as given in design
posted on 26 May 2022
I was interviewed in May 2022.
Round duration - 60 Minutes
Round difficulty - Medium
Given a collection of stones, each having a positive integer weight, perform the following operation: On each turn, select the two heaviest stones and smash them toge...
This question is about finding the weight of the last stone after repeatedly smashing the two heaviest stones together.
Sort the array of stone weights in descending order.
Repeatedly smash the two heaviest stones until there is at most 1 stone left.
If there is 1 stone left, return its weight. Otherwise, return 0.
Round duration - 60 minutes
Round difficulty - Medium
Design a signin page using HTML and CSS only
Create a form element with input fields for username and password
Style the form using CSS to make it visually appealing
Add a submit button for users to sign in
Consider adding error messages or validation for user input
Use CSS to make the page responsive for different screen sizes
Round duration - 7 days
Round difficulty - Medium
A todo list application using localstorage.
Use HTML, CSS, and JavaScript to create the user interface.
Use the localstorage API to store and retrieve todo items.
Implement features like adding, editing, and deleting todo items.
Display the list of todo items and their status.
Allow users to mark todo items as completed or incomplete.
Round duration - 120 Minutes
Round difficulty - Easy
Round duration - 60 Minutes
Round difficulty - Easy
Questions related to react and high level javascript?
Hoisting is a JavaScript behavior where variable and function declarations are moved to the top of their containing scope.
Hoisting applies to both variable and function declarations.
Variable declarations are hoisted but not their initializations.
Function declarations are fully hoisted, including their definitions.
Hoisting can lead to unexpected behavior if not understood properly.
Memoization is a technique in JavaScript to cache the results of expensive function calls for future use.
Memoization improves performance by avoiding redundant calculations
It is commonly used in recursive functions or functions with expensive computations
The cached results are stored in a data structure like an object or a map
Memoization can be implemented manually or using libraries like Lodash or Memoizee
IIFE stands for Immediately Invoked Function Expression. It is a JavaScript function that is executed as soon as it is defined.
IIFE is a way to create a function expression and immediately invoke it.
It helps in creating a private scope for variables and functions.
It is commonly used to avoid polluting the global namespace.
IIFE can be written using different syntaxes like using parentheses, function declaration, or arro
Promises in JavaScript are objects that represent the eventual completion or failure of an asynchronous operation.
Promises are used to handle asynchronous operations such as fetching data from a server or reading a file.
They simplify the process of writing asynchronous code by providing a more structured approach.
Promises have three states: pending, fulfilled, or rejected.
They can be chained together using methods like...
Temporal Dead Zone is a behavior in JavaScript where variables are not accessible before they are declared.
Temporal Dead Zone occurs when accessing variables before they are declared
Variables in the Temporal Dead Zone cannot be accessed or assigned
The Temporal Dead Zone is a result of JavaScript's hoisting behavior
Example: accessing a variable before it is declared will throw a ReferenceError
Arrow functions are a concise way to write functions in JavaScript.
Arrow functions have a shorter syntax compared to regular functions.
They do not have their own 'this' value.
They do not have the 'arguments' object.
They cannot be used as constructors with the 'new' keyword.
They are commonly used in functional programming and with array methods like 'map' and 'filter'.
JSX is a syntax extension for JavaScript that allows you to write HTML-like code in your JavaScript files.
JSX stands for JavaScript XML
It is commonly used with React to define the structure and appearance of components
JSX elements are transpiled into regular JavaScript function calls
It allows you to write HTML-like code with JavaScript expressions embedded within curly braces
Example:
Higher order functions are functions that can take other functions as arguments or return functions as their results.
Higher order functions can be used to create more flexible and reusable code.
They enable functional programming paradigms.
Examples of higher order functions include map, filter, and reduce in JavaScript.
Virtual DOM is a lightweight copy of the actual DOM that allows efficient updates and rendering in JavaScript frameworks.
Virtual DOM is a concept used in JavaScript frameworks like React.
It is a lightweight copy of the actual DOM tree.
Changes made to the virtual DOM are compared with the actual DOM to determine the minimal updates needed.
This helps in efficient rendering and improves performance.
Virtual DOM allows deve...
Round duration - 35 Minutes
Round difficulty - Easy
Happend around 08:30 pm
Tip 1 : Internet fundamentals - HTTP, HTTPs, CDNs, DNS etc.
Tip 2 : Web Storage - localstorage and session storage. Know how the cookies work and what does HttpOnly, same-site, secure mean in the context of cookies.
Tip 3 : HTML - Get yourself familiar with semantic HTML elements, different types of attribute, HTML selectors and their precedence etc.
Tip 4 : Learn advance level Javascript.
Tip 5 : It will be better to have experience in any frontend frameworks/libraries, for example React.js.
Tip 6 : You should be able to solve easy level DSA(array and linked-list) and problem solving related questions.
Tip 1 : Have some development projects on resume.
Tip 2 : Highlight your frontend development skills in your resume.
posted on 29 May 2022
I was interviewed in May 2022.
Round duration - 90 Minutes
Round difficulty - Easy
You are given three ds coding questions which you have to solve within 90 mins.
The questions are easy to medium level for this round
Given an integer array ARR
of size N
, determine if it can be transformed into a non-decreasing array by modifying at most one element.
An array is defined as non-de...
The solution checks if an integer array can become non-decreasing by modifying at most one element.
Iterate through the array and check if there are more than one decreasing pairs of elements.
If there are more than one decreasing pairs, return false.
If there is only one decreasing pair, check if modifying one of the elements can make the array non-decreasing.
If modifying the element at index i-1 or i can make the array ...
You are given a Singly Linked List of integers that is initially sorted according to the absolute values of its elements. Your task is to sort this Linked List base...
The task is to sort a singly linked list based on actual values instead of absolute values.
Traverse the linked list and store the values in an array
Sort the array using any sorting algorithm
Create a new linked list using the sorted array
Return the new linked list
Given a binary tree, return the length of its diameter. The diameter of a binary tree is defined as the length of the longest path between any two nodes in the ...
The diameter of a binary tree is the length of the longest path between any two end nodes in the tree.
The diameter of a binary tree can be calculated by finding the maximum of the following three values: 1) the diameter of the left subtree, 2) the diameter of the right subtree, and 3) the longest path that passes through the root node.
To find the diameter of a binary tree, we can use a recursive approach. We calculate ...
Round duration - N/A
Round difficulty - Medium
Round duration - 120 Minutes
Round difficulty - Hard
This round focus on advanced Js concepts and the tech stack I used in my projects.
You have been provided an integer array/list ARR
of size N
. Here, N
is equivalent to 2M + 1
where each test case has M
numbers appearing twice and one number appearing exactly...
The task is to find the unique number in an array where all other numbers occur twice.
The array size is given by N = 2M + 1, where M is the number of elements occurring twice.
Loop through the array and use a hashmap to count the occurrences of each number.
Return the number with a count of 1, as it is the unique number.
Round duration - 60 Minutes
Round difficulty - Easy
It was a late night round as i have already had the previous 3 rounds at the same day. The HR asked about my experience regarding the previous rounds and also some situation based questions.
Tip 1 : Have your basics storing rather than focusing on react or any other similar frameworks
Tip 2 : Practice DOM manipulation using JS as in the assignment round you'll have to code an assignment with your screen shared
Tip 3 : Practice advance JS concepts like prototyping, promises, etc.
Tip 4 : Study your projects thoroughly, what tech you used where and why
Tip 5 : Don't think that if you are unable to answer some output based questions or to code some question so you will not get selected. I myself have multiple wrong answers to tricky js output based questions but then the interviewer asks you to execute the question and explain why this has happened. If you are able to explain the correct reason for the answer you are good to go.
Tip 1 : Mention your best projects along with Tech stack used so the interviewer can see what all tech stack you have worked on
Tip 2 : Do not put false things on resume, as the interviewer will definitely ask cross questions and you will get tricked.
Tip 3 : Don't worry about the resume too much, you are the main focus of the interview and not the resume.
posted on 7 Mar 2024
I applied via Campus Placement and was interviewed before Mar 2023. There were 5 interview rounds.
- They use their own platform for interviews, and assessments.
- There were html, css, js based questions in the coding round.
- Some questions were theoretical too.
- They tested nearly all major parts of js including let, const, arrays, promise, async, await, events, lexical scope, etc.
posted on 20 Oct 2021
I was interviewed in Aug 2021.
Round duration - 60 Minutes
Round difficulty - Medium
This was the DSA questions round. There were 2 questions. and both were basic questions.
Given a singly linked list of integers, determine if the linked list is a palindrome.
A linked list is considered a palindrome if it reads the same forwar...
The idea is to store the list values in a stack and then compare the values in the list with the values in the stack.
Algorithm:
In a wedding ceremony at NinjaLand, attendees are blindfolded. People from the bride’s side hold odd numbers, while people from the groom’s side hold even numbers. For...
As we have to arrange the nodes such that all the odd nodes should come before all the even nodes, we can move all the even valued nodes from their current positions to the end of the linked list.
Round duration - 90 Minutes
Round difficulty - Easy
This was a subjective round where we have to code HTML, CSS, and JS. We were not allowed to use any external editor and their editor was just plain notepad so we couldn't even see the output but still, we completed it. Everyone at my college passed this round.
Round duration - 10080 Minutes
Round difficulty - Easy
Round duration - 120 Minutes
Round difficulty - Medium
In this round, the interviewer asked me to turn on screen mirroring. And then he gave me 1 more design which I needed to create in front of him in the next 2 hours. In the previous round, the focus was on HTML and CSS but in this round, the major focus was on JS. You are allowed to use google but not copy-paste the whole code.
Round duration - 90 Minutes
Round difficulty - Hard
This was an online interview with one of their employees. My interview was taken by their front-end lead. She was very helpful during the interview. You are allowed to search for documentation.
Round duration - 90 Minutes
Round difficulty - Easy
This was also a front-end interview round. The interviewer was again very helpful and I was allowed to google.
Tip 1 : You will need to know advanced HTML and CSS which are used in real life like meta tags in HTML and media queries in CSS.
Tip 2 : You will need practical knowledge of js functions like map, filter, reduce apart from basic that we can use map in react to render lists.
Tip 3 : Learning some advanced concepts like debouncing, throttling, call, bind, etc will be helpful.
Tip 1 : Prepare for every word that you wrote in your resume,
Tip 2 : HR will ask about your projects and you should always have a good story for each project like why you create this project. This will really score some points in the interview.
posted on 19 May 2022
I was interviewed in Jul 2021.
Round duration - 180 Minutes
Round difficulty - Medium
General Questions Like - Introduction & How all the round have gone so far
Round duration - 90 Minutes
Round difficulty - Medium
One-to-One Interview based on DSA and Front-End Technologies including HTML, CSS & JS.
You are given an array of integers. The task is to remove all duplicate elements and return the array while maintaining the order in which the elements were provided.
We will traverse the whole array and check if that element previously occurred or not.
The steps are as follows:
Round duration - 90 Minutes
Round difficulty - Hard
One-to-One Interview based on Front-End Technologies including HTML, CSS & JS.
In the last 10-20 minutes, some behavioral questions were asked:
1 How would you grade yourself in the interview so far?
2. You are present in a team and you have to convince your team members & client that your approach is better than the other team members.
3. You are the team leader & you have to point out & convey the negative points of a member of your team without getting him/her hurt.
- At last, they asked me if I have questions for them( I asked 2 questions ) & then the interview ended.
Given 'K' different arrays that are individually sorted in ascending order, merge all these arrays into a single array that is also sorted in ascending order.
O(N * K), Where ‘K’ is the number of arrays and ‘N’ is the average number of elements in every array.
We are using an array/list of size O(N * K) to store all the elements of the ‘K’ arrays/lists. T...
Tip 1 : Make at least 1 full-stack project from scratch.
Tip 2 : Understand each & every concept & topic in depth.
Tip 1 : Make it authentic.
Tip 2 : Sync your resume with company JD.
based on 3 interviews
Interview experience
based on 2 reviews
Rating in categories
Lab Technician
10
salaries
| ₹1.8 L/yr - ₹2.9 L/yr |
Junior Scientist
7
salaries
| ₹2 L/yr - ₹4.5 L/yr |
Medical Laboratory Technician
7
salaries
| ₹1.5 L/yr - ₹2.2 L/yr |
Phlebotomist
5
salaries
| ₹2.8 L/yr - ₹3 L/yr |
Radiographer
5
salaries
| ₹2.4 L/yr - ₹3.1 L/yr |
Metropolis Healthcare
Thyrocare Technologies
DRJ & CO
Suburban Diagnostics