top of page
Search
The Tech Platform
Mar 21, 2023
Write a program to print a hollow square star pattern with a diagonal in C++.
The program works by iterating over each row and column of the pattern and checking if the current position is on the edge of the...
The Tech Platform
Jun 27, 2022
Write a Program to convert the temperature in C++
Algorithm: Temperature Conversion This algorithm inputs a temperature in Fahrenheit and converts into centigrade. Start Input Temperature...
The Tech Platform
Jun 8, 2022
Write a program to Check if a Value exists in an Enum in TypeScript
Enums or enumerations are a new data type supported in TypeScript. Most object-oriented languages like Java and C# use enums. This is now...
The Tech Platform
May 20, 2022
How to Find Missing Number in a Sorted Array in Java?
Tips to find the missing number in a sorted array: Find the sum of n number using formula n=n*(n+1)/2 Find the sum of elements present in...
The Tech Platform
Apr 16, 2022
Program to Print Floyd's Triangle in Java
Floyd's triangle is a right-angled triangular array of natural numbers, used in computer science education. It is named after Robert...
The Tech Platform
Apr 9, 2022
Create Time Slots in PHP for Given Time
This is a user-defined PHP function that is used to split a time slot between the start and end time using time intervals. The function...
The Tech Platform
Nov 28, 2021
Write a program to print Floyd's Triangle in C++.
Floyd's Triangle Floyd's triangle is a right-angled triangular array of natural numbers. It is defined by filling the rows of the...
bottom of page