top of page
Search
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
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 19, 2022
Top 20 JDBC Questions and Answers
Java Database Connectivity (JDBC) is an application programming interface (API) for the programming language Java, which defines how a...
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 16, 2022
Extracting Database Metadata via JDBC Driver
JDBC (Java Database Connectivity) is a Java API that enables Java applications to interact with databases. One of the useful features of...
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 16, 2022
Introduction to JDBC (Java Database Connectivity) Driver
A JDBC driver uses the JDBCâ„¢ (Java Database Connectivity) API developed by Sun Microsystems, now part of Oracle, that provides a standard...
The Tech Platform
Apr 8, 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 7, 2022
What is Java Programming Language?
Java is a widely recognized and versatile programming language that has gained immense popularity since its introduction in the...
The Tech Platform
Feb 9, 2022
Checked and Unchecked Exception in Java
Read - Exception Handling in Java Checked Exception These are the exceptions that are checked at compile time. If some code within a...
bottom of page