top of page
Search
The Tech Platform
May 3, 2021
What are Streams in Java?
Streams are added to Java APIs to let you manipulate collections of data in a declarative way ( represent in the query instead of writing...
The Tech Platform
Apr 30, 2021
Task Execution — Java Concurrency
Ideally, tasks are independent activities, work that doesn’t depend on the state, result, or side effects of other tasks. Independency...
The Tech Platform
Apr 28, 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]
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 21, 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 17, 2021
How to Find Repeated Characters in Given String with Count in Java?
In order to solve this problem, You need to first check if a String contains any duplicate characters or not, and then if it contains any...
The Tech Platform
Apr 17, 2021
How to Find Square Root of a Number in Java?
Here we will see Java program for finding square root using the API method. package test; import java.util.Scanner; /** * * Java...
The Tech Platform
Apr 16, 2021
Java Thread Basics
Process The process is a program in execution and multiple processes communicate with each other via socket, signal handler, shared...
The Tech Platform
Apr 15, 2021
Reading and Parsing XML with SAX parser in Java
JDOM is an open source library which allow XML parsing and reading in Java program. JDOM is designed by using Java programming technique...
Sofia Sondh
Apr 15, 2021
What is the Difference between C# and Java?
This article will give you the brief difference and similarities between Java and C# programming language. Java Programming Languages...
bottom of page