Filter interviews by
map creates a new array with the results of calling a provided function on every element, forEach executes a provided function once for each array element.
map returns a new array with the results of the provided function, forEach does not return anything
map does not modify the original array, forEach can modify the original array
Example: const numbers = [1, 2, 3]; numbers.map(num => num * 2); // returns [2, 4, 6];...
Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.
Start with two initial numbers, usually 0 and 1
Add the previous two numbers to get the next number in the sequence
Repeat this process to generate the Fibonacci series
Find missing element in array of strings
Iterate through the array and check for missing elements
Use a hash map to keep track of elements present in the array
Compare the elements in the array with a reference array to find the missing element
SQL SELECT queries retrieve data from a database, allowing for filtering, sorting, and aggregation of results.
Basic SELECT syntax: SELECT column1, column2 FROM table_name;
To select all columns: SELECT * FROM table_name;
Filtering results with WHERE: SELECT * FROM table_name WHERE condition;
Sorting results with ORDER BY: SELECT * FROM table_name ORDER BY column_name ASC|DESC;
Using aggregate functions: SELECT COUNT(*...
Swap two numbers without using a third variable in Java
Use XOR operation to swap two numbers without using a third variable
Example: int a = 5, b = 10; a = a ^ b; b = a ^ b; a = a ^ b; // Now a = 10, b = 5
Use a Set to remove duplicates from an array of strings.
Create a Set to store unique elements.
Iterate through the array and add each element to the Set.
Convert the Set back to an array to get the array without duplicates.
Program to reverse a list
Create an empty list to store the reversed elements
Iterate through the original list in reverse order
Append each element to the new list
Return the new list
Join queries in MySQL databases allow you to combine data from multiple tables based on a related column.
Use JOIN keyword to combine data from two or more tables based on a related column
Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN
Specify the columns to be retrieved using SELECT statement
OOPS stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.
OOPS is based on four main concepts: encapsulation, inheritance, polymorphism, and abstraction.
Encapsulation is the process of hiding the implementation details of an object from the outside world.
Inheritance allows a class to inherit properties and methods from another class.
Polymorphism allows objects...
I applied via Campus Placement and was interviewed before May 2022. There were 2 interview rounds.
I am a software engineering graduate with experience in programming languages like Java and Python.
Graduated with a degree in software engineering
Proficient in programming languages like Java and Python
Experience in developing web applications using frameworks like Spring and Django
OOPS stands for Object-Oriented Programming System. It is a programming paradigm based on the concept of objects.
OOPS is based on four main concepts: encapsulation, inheritance, polymorphism, and abstraction.
Encapsulation is the process of hiding the implementation details of an object from the outside world.
Inheritance allows a class to inherit properties and methods from another class.
Polymorphism allows objects of d...
Program to reverse a list
Create an empty list to store the reversed elements
Iterate through the original list in reverse order
Append each element to the new list
Return the new list
Join queries in MySQL databases allow you to combine data from multiple tables based on a related column.
Use JOIN keyword to combine data from two or more tables based on a related column
Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN
Specify the columns to be retrieved using SELECT statement
Find missing element in array of strings
Iterate through the array and check for missing elements
Use a hash map to keep track of elements present in the array
Compare the elements in the array with a reference array to find the missing element
I applied via Recruitment Consulltant and was interviewed in Sep 2023. There was 1 interview round.
Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.
Start with two initial numbers, usually 0 and 1
Add the previous two numbers to get the next number in the sequence
Repeat this process to generate the Fibonacci series
map creates a new array with the results of calling a provided function on every element, forEach executes a provided function once for each array element.
map returns a new array with the results of the provided function, forEach does not return anything
map does not modify the original array, forEach can modify the original array
Example: const numbers = [1, 2, 3]; numbers.map(num => num * 2); // returns [2, 4, 6]; numb...
I applied via Job Portal
Aptitude and c++ combine test
Swap two numbers without using a third variable in Java
Use XOR operation to swap two numbers without using a third variable
Example: int a = 5, b = 10; a = a ^ b; b = a ^ b; a = a ^ b; // Now a = 10, b = 5
Use a Set to remove duplicates from an array of strings.
Create a Set to store unique elements.
Iterate through the array and add each element to the Set.
Convert the Set back to an array to get the array without duplicates.
Top trending discussions
I applied via LinkedIn
Event bubbling is the process of propagating an event from the innermost element to its parent elements in the DOM hierarchy.
Events in JavaScript are triggered on elements and then propagate up the DOM tree.
During event bubbling, an event triggered on a child element will also trigger on its parent elements.
This allows for event delegation, where a single event handler can be used for multiple elements.
Event.stopPropag...
based on 6 interview experiences
Difficulty level
Duration
based on 15 reviews
Rating in categories
Team Member
59
salaries
| ₹12.6 L/yr - ₹18 L/yr |
Team Manager
6
salaries
| ₹16 L/yr - ₹22.5 L/yr |
Application Developer
5
salaries
| ₹5 L/yr - ₹6.6 L/yr |
Software Developer Intern
5
salaries
| ₹1.8 L/yr - ₹3 L/yr |
Senior Application Developer
5
salaries
| ₹5.2 L/yr - ₹20.8 L/yr |
TCS
Accenture
Wipro
Cognizant