Filter interviews by
Arrow functions do not have their own 'this' value, which is required in constructors.
Arrow functions do not have a 'this' binding, so 'this' will refer to the parent scope.
Constructors require 'this' to refer to the newly created object.
Using arrow functions in constructors can lead to unexpected behavior and errors.
CORS stands for Cross-Origin Resource Sharing and is a security feature implemented in web browsers.
CORS allows web servers to specify which origins are allowed to access their resources.
It is used to prevent unauthorized access to resources on a different domain.
CORS is implemented using HTTP headers such as Access-Control-Allow-Origin and Access-Control-Allow-Methods.
It is important to properly configure CORS to avoi...
Lexical scoping is a way of defining variable scope based on where they are declared in the code.
Variables declared inside a function have local scope and are not accessible outside the function.
Variables declared outside a function have global scope and can be accessed from anywhere in the code.
Nested functions can access variables declared in their parent function.
Example: function outer() { let x = 10; function inne...
Arrow functions have concise syntax, implicit return, and lexical this binding.
Shorter syntax than traditional function expressions
Implicit return of a single expression
Lexical this binding, avoiding the need for .bind() or self = this
Example: const double = (num) => num * 2;
Example: const names = ['Alice', 'Bob', 'Charlie']; const nameLengths = names.map(name => name.length);
I applied via Referral and was interviewed in May 2022. There were 4 interview rounds.
posted on 27 May 2022
Walmart interview questions for designations
Top trending discussions
posted on 10 Feb 2022
I applied via Approached by Company and was interviewed in Oct 2024. There were 4 interview rounds.
2 DSA questions and some MCQ on Java and Spring
A palindromic substring is a string that reads the same forwards and backwards.
Use dynamic programming to find the longest palindromic substring.
Start by considering each character as the center of a potential palindrome.
Expand outwards from each center to check for palindromes of odd and even lengths.
Remove duplicates from a 1D array of strings in place
Iterate through the array and use a HashSet to keep track of unique elements
Replace duplicates with null or an empty string to remove them in place
Search for the minimum element in a rotated sorted array with duplicate elements.
Use binary search to find the minimum element in the rotated sorted array.
Handle the case where duplicate elements are present by adjusting the search conditions.
Consider cases where the array is not rotated or contains only one element.
A singleton class is a class that can only have one instance created throughout the application.
Declare a private static instance variable of the class
Create a private constructor to prevent external instantiation
Provide a public static method to access the instance
posted on 19 Oct 2024
Good question but very simple to answer
Find the intersection point of two linked lists.
Use two pointers to traverse the linked lists
Calculate the difference in length between the two lists
Move the pointer of the longer list ahead by the difference
Move both pointers simultaneously until they meet at the intersection point
I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.
Was easy to crack infact was simple
Involve group of 8 and related to come and pros
Software testing techniques are methods used to ensure that software applications are functioning correctly and meeting requirements.
Black box testing: Testing the functionality of a software application without knowing its internal code.
White box testing: Testing the internal code and structure of a software application.
Unit testing: Testing individual units or components of a software application.
Integration testing:...
based on 5 reviews
Rating in categories
Software Engineer III
1.8k
salaries
| ₹14 L/yr - ₹47 L/yr |
Senior Software Engineer
1.2k
salaries
| ₹22.3 L/yr - ₹70 L/yr |
Software Engineer
770
salaries
| ₹12 L/yr - ₹40 L/yr |
Software Development Engineer 3
249
salaries
| ₹15.6 L/yr - ₹46 L/yr |
Assistant Team Leader
236
salaries
| ₹1.3 L/yr - ₹5 L/yr |
Amazon
Flipkart
Microsoft Corporation