
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
6 Views
HTML stands for Hyper Text Markup language that is used to create the structure or layout of any webpage. CSS stands for cascading style sheets that are used to format and add styles to web pages. In this article, we are going to discuss how we can create a Facebook login page ... Read More

AYUSH MISHRA
0 Views
Problem DescriptionA geometric progression is a sequence of numbers where each term is obtained by multiplying the previous term by a fixed number. This fixed number is known as the common ratio and it should be a non-zero. In this article, we are going to learn how we can find ... Read More

AYUSH MISHRA
7K+ Views
What is Geometric Progression? A geometric progression is a sequence of numbers where each term is obtained by multiplying the previous term by a fixed number. This fixed number is known as the common ratio and it should be a non-zero. In this article, we are going to learn how ... Read More

AYUSH MISHRA
7K+ Views
Problem Description Given the length and breadth of a rectangle, we need to implement a PHP program to find the perimeter. A rectangle is a closed two-dimensional figure having 4 sides. The opposite sides are equal and parallel. The angle made by the adjacent side is equal to 90 degrees. ... Read More

AYUSH MISHRA
32K+ Views
Pythagorean Triples Pythagorean triples are a set of three distinct numbers a, b, and c which satisfy the condition: a2 + b2 = c2 These numbers a, b, and c are known as Pythagorean triples. We can say that these three numbers represent the sides of a right-angled triangle. These ... Read More

AYUSH MISHRA
9K+ Views
Package Managers is a tool used to install and update software easily in Windows. There are different tools that we need to use daily while working as software engineers. A package manager is used to install, update, manage, and uninstall software and applications. It simplifies the process, saves time, and ... Read More

AYUSH MISHRA
13K+ Views
Prime numbers are natural numbers greater than 1 with only two factors: 1 and themselves. Examples include 2, 3, 5, 7, etc. The smallest prime number is 2. Problem Description We are given an array and need to find the number of prime numbers in the array using C#. ... Read More

AYUSH MISHRA
8K+ Views
Simple Interest is the interest calculated only on the initial principal amount taken. This is not like compound interest where interest is compounded, i.e., previous interest is included in the current time period. This interest is simple and grows linearly over time. In this article, we will discuss how to ... Read More

AYUSH MISHRA
4K+ Views
What is a Circle? A circle is a round two-dimensional shape in which all the points on the surface of the circle are equal from a point known as the center. The distance between the center and any point on the boundary of a circle is known as the radius. ... Read More

AYUSH MISHRA
5K+ Views
Problem Description We are given an array, we have to check whether the array is sorted or not. The array can be sorted in both ascending or descending order. In this article, we are going to discuss different approaches to check if an array is ... Read More