
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Nikitasha Shrivastava has Published 194 Articles

Nikitasha Shrivastava
200 Views
In the given problem statement we are asked to find out maximum decreasing adjacent elements with the help of javascript functionalities. This problem can be solved with the help of a simple algorithm in javascript. Understanding the Logic Explaining the logic of the problem statement in more detail. The problem ... Read More

Nikitasha Shrivastava
903 Views
In the given problem statement we are required to map an array to a new array with default values with the help of javascript functionalities. In Javascript we have some built−in function to map an array to a new array as per the condition and requirement. What is an array ... Read More

Nikitasha Shrivastava
4K+ Views
In the given problem statement we are asked to manipulate objects in an array of objects with the help of javascript functionalities. In Javascript we have some built−in functions called map(), reduce(), forEach() and filter() to manipulate the objects in an array. We can solve this problem with the help ... Read More

Nikitasha Shrivastava
281 Views
The Given problem is stating to manipulate objects to group based on the output array object list with the help of javascript. Understanding the problem Before starting to write algorithms and programmes for the given problem first we will understand the logic behind the problem. Consider a set of objects ... Read More

Nikitasha Shrivastava
1K+ Views
In the given problem statement we are asked to make an array of another array’s duplicate values with the help of javascript functionalities. As we talk about duplicate values in an array means we have to find the exact elements present in the first array. What is an array in ... Read More

Nikitasha Shrivastava
775 Views
In the given problem statement we are asked to group the JSON object with the help of javascript functionalities. This problem can be solved with the help of a simple algorithm in javascript. What is JSON ? JSON (Javascript Object Notation) is lightweight data which can be transferred between two ... Read More

Nikitasha Shrivastava
486 Views
In the given problem statement we are asked to find the best way to search for an element in a sorted list with the help of javascript functionalities. As we talk about sorting any list or array the binary search algorithm is the best way in data structures. What is ... Read More

Nikitasha Shrivastava
601 Views
This problem says to merge the subarrays with the help of javascript concepts. We will use email data in this issue. Additionally, we will combine emails from people with the same name. Understanding the problem For solving any given statement we need to first understand the problem in depth. ... Read More

Nikitasha Shrivastava
1K+ Views
In the given problem statement we are asked to find out long factorials of a Bigint value with the help of javascript functionalities. BigInt is a data type in javascript, which is used to calculate the factorial of a large number. What is the BigInt data type in JavaScript ? ... Read More

Nikitasha Shrivastava
4K+ Views
In the given problem statement we are asked to truncate a string with the help of javascript functionalities. We can solve this problem with the help of Javascript’s built−in functions slice() and substr(). What do you mean by truncating a string ? Let's understand the meaning of truncating a ... Read More