top of page
Search
The Tech Platform
May 20, 2022
How to Find Highest Repeating Word from a File in Java?
In this Tutorial we will Learn to find the duplicate word which has occurred a maximum number of times in a file. You can also print the...
The Tech Platform
May 6, 2022
Write a Program to print Diamond Star Pattern in Java
The diamond star pattern consists of asterisks (*) arranged in a diamond shape. The pattern has a central row with a single asterisk, and...
The Tech Platform
Apr 30, 2022
Link-time substitution (C/C++): test hardware dependent code
What is link-time substitution used for? Link-time substitution is one of three methods to create test doubles for your project. Test...
The Tech Platform
Apr 30, 2022
7 New CSS Features in 2022
With the use of CSS, we can control various styles, such as the text color, the font style, the spacing among paragraphs, column size and...
The Tech Platform
Apr 25, 2022
Calculate days between two dates in JavaScript
Sometimes we need to calculate the number of days between two dates. This can be done using the JavaScript programming language....
The Tech Platform
Apr 25, 2022
Using Stencil Components in PHP
Why integrate Stencil With PHP? Stencil is a new way to create web Components that can work practically anywhere once compiled, while php...
The Tech Platform
Apr 25, 2022
Difference Between JavaScript Promises and JavaScript Observable
What are JavaScript Promises? JavaScript Promises are used to handle asynchronous operations in JavaScript. They are easy to manage when...
The Tech Platform
Apr 23, 2022
JavaScript Naming Conventions
A naming convention is a set of rules or guidelines that people agree upon to name things. These rules can vary depending on their...
The Tech Platform
Apr 20, 2022
How to use Stream allMatch() and anyMatch() function in Java?
Stream allMatch: We often run into problems where we need to check a condition on a list of values. To give an example, let’s say there’s...
The Tech Platform
Apr 20, 2022
How to Hide or Show Elements in JavaScript?
In JavaScript, we can hide the elements using the style.display or by using the style.visibility. The visibility property in JavaScript...
bottom of page