top of page
Search

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 16, 2022

How to use Arrays in Bash Script
Bash Array – An array is a collection of elements. Unlike in many other programming languages, in bash, an array is not a collection of...
The Tech Platform
Apr 13, 2022

How to Add JavaScript to HTML?
You can add JavaScript code in an HTML document by employing the dedicated HTML tag <script> that wraps around JavaScript code. The...
The Tech Platform
Apr 12, 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
Apr 9, 2022

How to use String.matches() with Regular Expression in Java?
The string matches method in Java can be used to test String against regular expressions in Java. The string matches() method is one of...
The Tech Platform
Apr 8, 2022

Top 7 competitive programming algorithms every coder must know
Programming is a difficult role, and once you enter it, you will face new challenges and may be required to solve problems that no one...
The Tech Platform
Feb 24, 2022

IndexOf() in JavaScript
In JavaScript, indexOf() is a string method that is used to find the location of a substring in a string. Because the indexOf() method is...
The Tech Platform
Feb 18, 2022

How to Write Clean Code?
Clean Code is easy to understand and easy to change. It is the Code that another developer can Read, Understand , and Write easily. Your...
The Tech Platform
Feb 7, 2022

How to Generate Random String in JavaScript?
Sometimes, programmers require to create a string which is generated by selecting the random characters. Random String Generator helps to...
The Tech Platform
Feb 1, 2022

Arrow Functions in JavaScript
ES6 Arrow functions provide you with an alternative way to write a shorter syntax compared to the function expression. The following are...
The Tech Platform
Jan 25, 2022
bottom of page