top of page
Search


What are HTML Forms?
HTML Form is a document which stores information of a user on a web server using interactive controls. An HTML form contains different...

The Tech Platform
May 4, 2021


How to Print Prime Numbers from 1 to 100 in Java?
To check whether a number is prime or not, we can write a function and then iterate through the first 100 numbers (1 to 100), printing...

The Tech Platform
Apr 28, 2021
![How to Find Greatest Common Divisor of two numbers in Java - [ Euclid's algorithm GCD Example]](https://static.wixstatic.com/media/0f65e1_74ec3b20405f4c109d85ed2cd3b75dd4~mv2.png/v1/fill/w_443,h_250,fp_0.50_0.50,lg_1,q_35,blur_30,enc_avif,quality_auto/0f65e1_74ec3b20405f4c109d85ed2cd3b75dd4~mv2.webp)
![How to Find Greatest Common Divisor of two numbers in Java - [ Euclid's algorithm GCD Example]](https://static.wixstatic.com/media/0f65e1_74ec3b20405f4c109d85ed2cd3b75dd4~mv2.png/v1/fill/w_305,h_172,fp_0.50_0.50,q_95,enc_avif,quality_auto/0f65e1_74ec3b20405f4c109d85ed2cd3b75dd4~mv2.webp)
How to Find Greatest Common Divisor of two numbers in Java - [ Euclid's algorithm GCD Example]
Simple Java program to find GCD (Greatest Common Divisor) or GCF (Greatest Common Factor) or HCF (Highest common factor). The GCD of two...

The Tech Platform
Apr 28, 2021


Second Highest Salary in MySQL and SQL Server
Write a SQL query to get the second highest salary from the Employee table. +----+--------+ | Id | Salary | +----+--------+ | 1 | 100 ...

The Tech Platform
Apr 28, 2021


How to find symbolic link or soft link in Linux - ls + find command example
There are two ways you can find a symbolic link or soft link in UNIX based operating system like Linux, Solaris, BSD, or IBM AIX. The...

The Tech Platform
Apr 27, 2021


How to send an email with body and attachment from Linux
One of the common tasks for programmers working in a Linux machine is to send emails, for example, your Java applications are running on...

The Tech Platform
Apr 27, 2021


Calculating The Difference Between Two Dates in PHP
Getting the difference between two dates in PHP isn’t as trivial as you may think. Actually, it’s much simpler when compared to other...

The Tech Platform
Apr 27, 2021


How to declare functions in Javascript?
A function is a group of reusable code which can be called anywhere in your program. This eliminates the need of writing the same code...

The Tech Platform
Apr 23, 2021


CSS Animation with SVGs
HTML <div class="arrow arrow--top"> <svg xmlns="http://www.w3.org/2000/svg" width="270.11" height="649.9" overflow="visible"> <style>...

The Tech Platform
Apr 22, 2021


Write a program to print numbers from 1 to 100?
Below is the program to print the Numbers from 1 to 100 in C++, C, Python3, C#, PHP and JavaScript. C++ // C++ program to How will you...

The Tech Platform
Apr 21, 2021
bottom of page
