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 20, 2022
Dependency Inversion Principle: How Google Developers write code
What is Dependency Inversion Principle? Dependency Inversion Principle corresponds to D among SOLI’D’ Principles. Its principle starts...
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 14, 2022
Introduction to Parcel.JS
Parcel is a web application bundler, differentiated by its developer experience. It offers blazing fast performance utilizing multicore...
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 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 16, 2022
Connecting to Your Database Using JDBC Driver
Here, we will show you how you can use Progress DataDirect JDBC drivers in your Java application to connect to your database. The main...
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...
bottom of page