i
Zeplinix Technologies
Filter interviews by
I appeared for an interview in Nov 2024.
He has given a task where 4 products are listed, similar to Amazon. The task involves showing a UI with product images displayed and prices shown below each product image. There are also + and - button, which represents "Add to Cart" and "Remove from Cart".
When a user clicks the + button, the products and its price will be added to the cart. The cart will update to show the items and its price. If the user clicks the + button on another products, the price of that new product will be added to the total price in the cart, along with the new products.
This task also includes a Cart Screen, where the products added to the cart will be listed, along with the total price, which will dynamically update as items are added or removed.
Top trending discussions
Pure components, memo, useCallback, and HoC are optimization techniques in React for improving performance.
Pure components are components that only re-render when their props or state change.
memo is a higher order component that memoizes the result of a component rendering, preventing unnecessary re-renders.
useCallback is a hook that memoizes functions, preventing unnecessary re-creations on re-renders.
HoC (Higher Orde...
I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.
I appeared for an interview in Feb 2025, where I was asked the following questions.
I applied via Approached by Company and was interviewed in Apr 2022. There was 1 interview round.
I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.
Splice is used to add/remove elements from an array, while slice is used to extract a portion of an array without modifying the original array.
Splice modifies the original array, while slice does not.
Splice can add elements, remove elements, or replace elements in an array.
Slice returns a new array with the selected elements from the original array.
Example: const arr = [1, 2, 3, 4, 5]; arr.splice(2, 1); // removes elem...
To reverse a string, iterate through the characters and swap them from start to end.
Create an empty string to store the reversed result.
Iterate through the characters of the input string from end to start.
Append each character to the empty string to reverse the order.
Return the reversed string.
I applied via Naukri.com and was interviewed in Aug 2023. There were 3 interview rounds.
Asked about vanilla.js in react interview.
I applied via Recruitment Consulltant and was interviewed in Mar 2022. There was 1 interview round.
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, allowing them to be called before they are declared.
Hoisting does not apply to variables declared with let or const.
Hoisting can lead t...
Higher-order functions are functions that take one or more functions as arguments or return a function as their result.
Higher-order functions can be used to create reusable code by abstracting common patterns.
They enable functional programming paradigms like currying and composition.
Examples of higher-order functions in JavaScript include map, filter, and reduce.
var is function scoped, let and const are block scoped.
var can be redeclared and updated within its scope
let can be updated but not redeclared within its scope
const cannot be updated or redeclared once declared
let and const are not hoisted like var
const must be initialized during declaration
Hooks are a feature in React.js that allow developers to use state and other React features in functional components.
Hooks are functions that let you use React features in functional components
They allow you to use state and other React features without writing a class
Hooks provide a way to reuse stateful logic between components
Some commonly used hooks are useState, useEffect, and useContext
based on 1 interview
Interview experience
TCS
Accenture
Wipro
Cognizant