Real interview questions from Groww company. Includes theoretical concepts and coding problems.
What is the difference between null and undefined in JavaScript?
Null and undefined are both primitive values in JavaScript, but they have different meanings. Null represents the absence of a value, while undefined represents an uninitialized variable or a variable that has not been declared.
What is a closure in JavaScript?
A closure is a function that has access to its own scope and the scope of its outer functions, even when the outer functions have returned. This allows the inner function to use variables from the outer functions, even when the outer functions are no longer executing.
What is the purpose of the 'this' keyword in JavaScript?
The 'this' keyword in JavaScript refers to the current execution context of a function. It can be used to access properties and methods of an object, and to distinguish between global and local variables.
What is the difference between a for loop and a while loop in JavaScript?
A for loop is used to iterate over a block of code for a specified number of times, while a while loop is used to iterate over a block of code as long as a certain condition is true.
What is the purpose of the 'let' and 'const' keywords in JavaScript?
The 'let' and 'const' keywords in JavaScript are used to declare variables. 'Let' is used to declare a variable that can be reassigned, while 'const' is used to declare a constant that cannot be reassigned.
What is the difference between an array and an object in JavaScript?
An array in JavaScript is a collection of values of any type, while an object is a collection of key-value pairs.
What is the purpose of the 'map' method in JavaScript?
The 'map' method in JavaScript is used to create a new array with the results of applying a provided function to every element in the original array.
What is the purpose of the 'filter' method in JavaScript?
The 'filter' method in JavaScript is used to create a new array with all elements that pass the test implemented by the provided function.
What is the difference between a synchronous and asynchronous function in JavaScript?
A synchronous function in JavaScript is a function that executes immediately and returns a result, while an asynchronous function is a function that executes at a later time and returns a result through a callback or promise.
What is the purpose of the 'Promise' object in JavaScript?
The 'Promise' object in JavaScript is used to represent a value that may not be available yet, but will be resolved at some point in the future.
What is the difference between a callback and a promise in JavaScript?
A callback in JavaScript is a function that is passed as an argument to another function, while a promise is an object that represents a value that may not be available yet, but will be resolved at some point in the future.
What is the purpose of the 'async/await' syntax in JavaScript?
The 'async/await' syntax in JavaScript is used to write asynchronous code that is easier to read and maintain, by allowing developers to write asynchronous code that looks and feels like synchronous code.
What is the difference between a class and an object in JavaScript?
A class in JavaScript is a blueprint for creating objects, while an object is an instance of a class.
What is the purpose of the 'constructor' method in JavaScript?
The 'constructor' method in JavaScript is a special method that is called when an object is created from a class, and is used to initialize the object's properties.
What is the difference between inheritance and polymorphism in JavaScript?
Inheritance in JavaScript is the process of creating a new class based on an existing class, while polymorphism is the ability of an object to take on multiple forms, depending on the context in which it is used.
What is the purpose of the 'extends' keyword in JavaScript?
The 'extends' keyword in JavaScript is used to create a new class that inherits properties and methods from an existing class.
What is the difference between a static method and an instance method in JavaScript?
A static method in JavaScript is a method that belongs to a class, rather than an instance of the class, while an instance method is a method that belongs to an instance of a class.
What is the purpose of the 'static' keyword in JavaScript?
The 'static' keyword in JavaScript is used to declare a static method or property, which belongs to a class rather than an instance of the class.
What is the difference between a private and public method in JavaScript?
A private method in JavaScript is a method that can only be accessed within the class in which it is defined, while a public method is a method that can be accessed from outside the class.
What is the purpose of the 'private' keyword in JavaScript?
The 'private' keyword in JavaScript is used to declare a private method or property, which can only be accessed within the class in which it is defined.
What is the difference between a getter and a setter in JavaScript?
A getter in JavaScript is a method that returns the value of a property, while a setter is a method that sets the value of a property.
What is the purpose of the 'get' and 'set' keywords in JavaScript?
The 'get' and 'set' keywords in JavaScript are used to declare getter and setter methods, which are used to access and modify properties.
What is the difference between a proxy and a reflect in JavaScript?
A proxy in JavaScript is an object that acts as an intermediary for another object, while reflect is an object that provides methods for manipulating objects.
What is the purpose of the 'Proxy' object in JavaScript?
The 'Proxy' object in JavaScript is used to create a proxy for another object, which can be used to intercept and modify the behavior of the object.
What is the difference between a symbol and a string in JavaScript?
A symbol in JavaScript is a unique and immutable value, while a string is a sequence of characters.
What is the purpose of the 'Symbol' object in JavaScript?
The 'Symbol' object in JavaScript is used to create a new symbol, which can be used as a unique and immutable value.
Write a JavaScript function to find the maximum value in an array
function reverseString(str) {
return str.split('').reverse().join('');
}
Write a JavaScript function to check if a string is a palindrome
function isPalindrome(str) {
return str === str.split('').reverse().join('');
}
Write a JavaScript function to find the first duplicate in an array
functionfindFirstDuplicate(arr) {
let seen = newSet();
for (let i = 0; i < arr.length; i++) {
if (seen.has(arr[i])) {
return arr[i];
}
seen.add(arr[i]);
}
returnnull;
}
Write a JavaScript function to find the missing number in an array
functionfindMissingNumber(arr) {
let n = arr.length;
let sum = (n * (n + 1)) / 2;
let actualSum = arr.reduce((a, b) => a + b, 0);
return sum - actualSum;
}
Write a JavaScript function to find the maximum sum of a subarray
functionmaxSubarraySum(arr) {
let maxSum = -Infinity;
let currentSum = 0;
for (let i = 0; i < arr.length; i++) {
currentSum = Math.max(arr[i], currentSum + arr[i]);
maxSum = Math.max(maxSum, currentSum);
}
return maxSum;
}
Write a JavaScript function to find the minimum window substring
function minWindowSubstring(str, target){
let targetCount = {};
for (let char of target) {
if (!targetCount[char]) {
targetCount[char] = 0;
}
targetCount[char]++;
}
let left = 0;
let minLen = Infinity;
let minWindow = '';
let formed = 0;
let windowCounts = {};
for (let right = 0; right < str.length; right++) {
let character = str[right];
if (targetCount[character]) {
if (!windowCounts[character]) {
windowCounts[character] = 0;
}
windowCounts[character]++;
if (windowCounts[character] === targetCount[character]) {
formed++;
}
}
while (left <= right && formed === Object.keys(targetCount).length) {
let character = str[left];
if (right - left + 1 < minLen) {
minLen = right - left + 1;
minWindow = str.substring(left, right + 1);
}
if (windowCounts[character]) {
windowCounts[character]--;
if (windowCounts[character] < targetCount[character]) {
formed--;
}
}
left++;
}
}
return minWindow;
}
Write a JavaScript function to find the longest common prefix
functionlongestCommonPrefix(strs) {
if (!strs.length) {
return'';
}
let shortest = strs.reduce((a, b) => (a.length < b.length ? a : b));
for (let i = 0; i < shortest.length; i++) {
let char = shortest[i];
for (let other of strs) {
if (other[i] !== char) {
return shortest.substring(0, i);
}
}
}
return shortest;
}
Write a JavaScript function to find the first bad version
functionfirstBadVersion(n) {
let left = 1;
let right = n;
while (left < right) {
let mid = left + Math.floor((right - left) / 2);
if (isBadVersion(mid)) {
right = mid;
} else {
left = mid + 1;
}
}
return left;
}
Write a JavaScript function to find the search insert position
functionsearchInsert(nums, target) {
let left = 0;
let right = nums.length - 1;
while (left <= right) {
let mid = left + Math.floor((right - left) / 2);
if (nums[mid] === target) {
return mid;
} elseif (nums[mid] < target) {
left = mid + 1;
} else {
right = mid - 1;
}
}
return left;
}
Write a JavaScript function to find the single number
functionsingleNumber(nums) {
let result = 0;
for (let num of nums) {
result ^= num;
}
return result;
}
Write a JavaScript function to find the majority element
functionmajorityElement(nums) {
let count = 0;
let candidate;
for (let num of nums) {
if (count === 0) {
candidate = num;
}
count += num === candidate ? 1 : -1;
}
return candidate;
}
Write a JavaScript function to find the missing number in a sorted array
functionfindMissingNumber(arr) {
for (let i = 0; i < arr.length - 1; i++) {
if (arr[i + 1] - arr[i] > 1) {
return arr[i] + 1;
}
}
returnnull;
}
Write a JavaScript function to find the duplicate in an array
functionfindDuplicate(nums) {
let tortoise = nums[0];
let hare = nums[0];
do {
tortoise = nums[tortoise];
hare = nums[nums[hare]];
} while (tortoise !== hare);
tortoise = nums[0];
while (tortoise !== hare) {
tortoise = nums[tortoise];
hare = nums[hare];
}
return hare;
}
SHARE ARTICLE
Choose Interviewer type
Please review your order carefully before confirming. Once your purchase is processed, refunds will not be available.