i
Netcracker Technology
Filter interviews by
I applied via LinkedIn and was interviewed in Mar 2022. There were 2 interview rounds.
Pure pipes are stateless and only depend on input values, while impure pipes can have side effects and depend on external factors.
Pure pipes are faster and more efficient than impure pipes.
Pure pipes are used for simple transformations of data, while impure pipes are used for more complex transformations.
Pure pipes can be memoized for better performance.
Impure pipes can cause performance issues if not used carefully.
Ex...
Round two was combined round of tech and coding test .Panel will tell scenario we need to code in angular ,html and css .
Top trending discussions
I was interviewed before Dec 2020.
Round duration - 360 minutes
Round difficulty - Medium
Basically TCS conduct its flagship event named as CODEVITA . And it offers Internship to prefinal (3rd )year students .
Given an array of integers arr
, where arr[i]
represents the number of pages in the i-th
book, and an integer m
representing the number of students, allocate all the books ...
Allocate books to students in a way that minimizes the maximum number of pages assigned to a student.
Iterate through possible allocations and calculate the maximum pages assigned to a student.
Find the minimum of these maximums to get the optimal allocation.
Return the minimum pages allocated in each test case, or -1 if not possible.
Tip 1 : Good understanding of Data Structure and Algorithms
Tip 2 : Be clear in your Core Subjects.
Tip 3 : Do at least 1 good Project .
Tip 4 : Be humble and speak truth .
Tip 1 : Simple and Crisp .
Tip 2 : Do host your project and mention the link in the resume .
Tip 3 : Single Page
I was interviewed in Oct 2021.
Round duration - 60 Minutes
Round difficulty - Medium
This round consisted of some standard questions related to HTML , CSS , JS and basic Frontend develeoper practices .
HTML5 is the latest version of the HTML standard with new features for web development.
Support for multimedia elements like <video> and <audio>
Canvas and SVG for graphics and animations
Improved form controls and validation
Offline storage capabilities with Local Storage and IndexedDB
Geolocation API for location-based services
The CSS Box Model is a fundamental concept in CSS that defines the layout and spacing of elements on a webpage.
The Box Model consists of content, padding, border, and margin.
Content: The actual content of the box, such as text or images.
Padding: Space between the content and the border.
Border: The border surrounding the padding and content.
Margin: Space outside the border, separating the element from other elements.
Exa...
Prototype chaining in JavaScript is the mechanism by which objects inherit properties and methods from other objects.
In JavaScript, each object has a prototype property, which points to another object. When a property or method is accessed on an object, JavaScript will look for it in the object itself first, and then in its prototype chain.
If the property or method is not found in the object, JavaScript will continue t...
Media elements in HTML are used to embed audio and video content on a webpage.
Media elements include <audio> and <video> tags in HTML.
They allow for the playback of audio and video files directly on a webpage.
Attributes like src, controls, autoplay, and loop can be used to customize the behavior of media elements.
Example: <video src='video.mp4' controls></video>
Round duration - 70 Minutes
Round difficulty - Medium
This was a preety intense round revolving mainly around the core concepts of JavaScript and React . I was confident about my skills in JavaScript and React as I already had some projects in JS and React and I also completed the Guided Path of JS and React in CodeStudio which boosted my preparation and helped me crack these Frontend Interviews.
Given two integers a
and b
, your task is to swap these numbers and output the swapped values.
The first line contains a single integer 't', representing the num...
Swap two numbers 'a' and 'b' and output the swapped values.
Create a temporary variable to store one of the numbers before swapping
Assign the value of 'a' to 'b' and the temporary variable to 'a'
Output the swapped values as 'b' followed by 'a'
Given an array consisting of 'N' positive integers where each integer is either 0, 1, or 2, your task is to sort the given array in non-decreasing order.
Each input st...
Sort an array of 0s, 1s, and 2s in non-decreasing order.
Use a counting sort algorithm to count the occurrences of 0s, 1s, and 2s in the array.
Then reconstruct the array by placing the counted elements in order.
Time complexity of the counting sort algorithm is O(N).
Promises are objects representing the eventual completion or failure of an asynchronous operation.
Promises have three states: pending, fulfilled, and rejected.
Pending: initial state, neither fulfilled nor rejected.
Fulfilled: operation completed successfully.
Rejected: operation failed.
Promises can be chained using .then() to handle success and failure.
Example: const promise = new Promise((resolve, reject) => { ... })
Callbacks in JavaScript are functions passed as arguments to other functions, to be executed later.
Callbacks are commonly used in asynchronous operations, such as event handling or AJAX requests.
They allow for more flexible and dynamic programming, by defining behavior that should happen after a certain event or task is completed.
Example: setTimeout function in JavaScript takes a callback function as an argument to be
Same-origin policy is a security measure in web browsers that restricts how a document or script loaded from one origin can interact with a resource from another origin.
It prevents a web page from making requests to a different domain than the one it was loaded from.
It helps protect user data and prevent malicious attacks like cross-site scripting (XSS).
Cross-origin resource sharing (CORS) headers can be used to relax
Components in React go through various stages like mounting, updating, and unmounting.
Components are created and inserted into the DOM during the mounting phase.
During the updating phase, components can re-render due to changes in props or state.
Components are removed from the DOM during the unmounting phase.
Lifecycle methods like componentDidMount, componentDidUpdate, and componentWillUnmount are used to perform actio
Round duration - 30 Minutes
Round difficulty - Easy
This was a typical HR round with some standard Behavioral questions like my interests, weaknesses, strengths, family background, are you willing to relocate or travel , why Amdocs, CEO of Amdocs etc.
Tip 1 : Do at-least 2 good projects and you must know every bit of them.
Tip 2 : Understand the fundamentals of JavaScript as they are asked very often.
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.
I applied via Recruitment Consulltant and was interviewed in Jan 2022. There were 5 interview rounds.
Find reverse string using array
Routing guards are used in Angular to control access to certain routes based on certain conditions.
Routing guards are used to protect routes in Angular applications.
They can be used to control access based on authentication status, user roles, etc.
There are different types of routing guards like CanActivate, CanActivateChild, CanDeactivate, CanLoad.
Example: CanActivate guard can be used to check if a user is authentica
I applied via Job Portal and was interviewed in Aug 2024. There was 1 interview round.
foreach is used to iterate over an array without returning a new array, while map creates a new array by applying a function to each element.
foreach does not return a new array, while map does
foreach does not modify the original array, while map creates a new array
foreach is used for iterating over elements, while map is used for transforming elements
Example: foreach - array.forEach(item => console.log(item)), map - ar
RxJS operators are functions that enable complex asynchronous operations and data manipulation in reactive programming.
RxJS operators are used to transform, filter, combine, and create observables.
Operators can be categorized into creation operators, transformation operators, filtering operators, combination operators, and utility operators.
Examples of operators include map, filter, mergeMap, switchMap, debounceTime, a
I applied via Company Website and was interviewed before Jan 2022. There were 3 interview rounds.
Event Loop is a mechanism in JavaScript that manages the execution of code and handles asynchronous operations.
Event Loop continuously checks the call stack and the message queue.
If the call stack is empty, it takes the first message from the queue and pushes it onto the call stack.
If the message is a callback function, it is executed and removed from the call stack.
If the message is not a callback function, it is pass...
Use CSS to make a set of 6 boxes responsive
Use percentage or viewport units for width and height
Use media queries to adjust styles for different screen sizes
Consider using flexbox or grid for layout
Avoid using fixed pixel values
Test on different devices and browsers
Use CSS frameworks like Bootstrap or Foundation for easier implementation
I applied via Naukri.com and was interviewed in Oct 2022. There were 4 interview rounds.
How revere the string without using reverse method
Split duplication from the array
based on 1 review
Rating in categories
Senior Software Engineer
1k
salaries
| ₹0 L/yr - ₹0 L/yr |
Software Engineer
785
salaries
| ₹0 L/yr - ₹0 L/yr |
Business Analyst
373
salaries
| ₹0 L/yr - ₹0 L/yr |
Technical Lead
360
salaries
| ₹0 L/yr - ₹0 L/yr |
QA Engineer
330
salaries
| ₹0 L/yr - ₹0 L/yr |
Amdocs
TCS
Tech Mahindra
Wipro