top of page
Search
The Tech Platform
Mar 27, 2021
10 Simple CSS Code Examples
Once you've started dabbling in HTML, you'll probably be interested in adding more power to your web pages. CSS is the best way to do...
The Tech Platform
Mar 26, 2021
Program to Find the Area of a Rectangle in PHP
Area of a rectangle is calculated by the mathematical formula, Length ∗ Breadth = Area Logic: Take two variables. Multiply both of them....
The Tech Platform
Mar 26, 2021
Program to Find the Area of Triangle in PHP
Area of a triangle is calculated by the following Mathematical formula, (base * height) / 2 = Area Program: Program to calculate area of...
The Tech Platform
Mar 25, 2021
How to find largest and smallest number from integer array
If you look at the code here, we have created a method called the largestAndSmallest(int[] numbers) to print the largest and smallest...
The Tech Platform
Mar 25, 2021
How to Implement Bubble Sort in Java
Sorting algorithms play an important role in computer science and programming, as they allow us to efficiently arrange data in a...
The Tech Platform
Mar 25, 2021
How to Find all Pairs in Array of Integers Whose sum is Equal to a Given Number
For example, if the input integer array is {2, 6, 3, 9, 11} and given sum is 9, the output should be {6,3}. The first solution which...
The Tech Platform
Mar 20, 2021
Write a program to print the below spiral pattern on the console
Algorithm: STEP 1: START STEP 2: SET i=1,j=1,k=1,l=1,direction=1 STEP 3: SET matrix[10][10] STEP 4: REPEAT STEP 5 to 9 UNTIL i is less...
The Tech Platform
Mar 19, 2021
Building Data Visualization in PowerPoint Using Python
The way organizations make decisions across various sectors has evolved with the changing role of data. The need for accuracy in...
The Tech Platform
Mar 19, 2021
Program: Find the sum of N Numbers using recursion
Enter the number of elements you want and then enter all the required elements as an input. Now we pass all the elements along with the...
The Tech Platform
Mar 18, 2021
Program: Rotate array to the right given a pivot
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace...
bottom of page