
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
AYUSH MISHRA has Published 134 Articles

AYUSH MISHRA
5K+ Views
Sometimes while working with with dates in JavaScript, it is common to need specific dates for calculations or validations. In this problem, we are given a date in the form of year-month-date and we have to subtract one month from it. In this article, we are going to learn how ... Read More

AYUSH MISHRA
9K+ Views
Sometimes while working with dates and times, we need to manipulate or normalize them to a specific time. One such common need is to reset a date's time to the start of the day, i.e. 00:00:00 midnight. In this article, we are going to learn different approaches to set the ... Read More

AYUSH MISHRA
5K+ Views
Sometimes while working with with dates in JavaScript, it is common to need specific dates for calculations or validations. One such situation is when we are given a date and we have to determine the last day of the previous month. In this article, we are going to learn how ... Read More

AYUSH MISHRA
13K+ Views
What is Milliseconds? The Milliseconds is a smaller unit of time used for problems where precise time calculations are desired. We can easily convert seconds to milliseconds using Python. In this article, we will learn how to do so in Python. This is useful in many applications, such as video ... Read More

AYUSH MISHRA
12K+ Views
What is a Perfect Number?A perfect Number is a positive integer that is equal to the sum of its proper divisors(excluding itself). For example, 6 is a perfect number because its divisors (1, 2, and 3) sum up to 6. Proper divisors are those numbers that leave no remainder when ... Read More

AYUSH MISHRA
8K+ Views
Problem DescriptionWe are given a number as input, we have to check whether the number is a happy number or not. In this article, we are going to learn how we can check if a number is a happy number or not in C#. What is a happy number?A happy ... Read More

AYUSH MISHRA
6K+ Views
In this article, we are going to check how we can remove duplicate elements from an array in C# using different approaches. What are Duplicate Elements in an Array? The elements which exist more than once in a given array are duplicate elements. In this problem, we are given ... Read More

AYUSH MISHRA
6K+ Views
In this article, we are going to discuss how we can check if a matrix is symmetric or not using C#. What is a Symmetric Matrix? A symmetric matrix is a square matrix (matrix which has the same number of rows and columns) in which the element at position ... Read More

AYUSH MISHRA
6K+ Views
Milliseconds is a smaller unit of time used for problems where precise time calculations are desired. We can easily convert seconds to milliseconds using Python. This is useful in many applications, such as video editing, data analysis, and real-time processing. Problem Description We are given time input in seconds and ... Read More

AYUSH MISHRA
7K+ Views
In JavaScript, sometimes we need some specific key-value pairs from an object. Suppose we have a large object and only want to select some specific keys. In this article, we will learn how to filter the keys of an object using Lodash. What is Lodash? Lodash is a popular ... Read More