top of page
Search
The Tech Platform
Aug 14, 2021
How to Shift to Functional Programming in Java
Adopting Functional Programming is not only using the techniques of Functional Programming but understanding the conceptual difference...
The Tech Platform
Aug 14, 2021
Why Functional Programming in Object-Oriented Programming
Functional Interface and Lambda Expression allow us to adopt Functional Programming in Java. Wait a minute. Wasn’t Java an...
The Tech Platform
Aug 13, 2021
DtoMapper — Data Transfer Object Pattern implementation in Java
When designing modern scalable server applications, we most often use a multi-layered architecture relying on best patterns and...
The Tech Platform
Jul 23, 2021
Top 8 Programming Languages For Game Developers
Game Developers use Programming Languages to create a game's settings and mechanics. The Choice of Programming Languages depends on...
The Tech Platform
Jul 19, 2021
Benchmarking low-level I/O: C, C++, Rust, Golang, Java, Python
Benchmarking TCP Proxies is probably the simplest case. There is no data processing, only handling incoming/outgoing connections and...
The Tech Platform
Jul 17, 2021
Difference between C++, Java and Python.
C++ C++ is a general purpose programming language and widely used now a days for competitive programming. It has imperative,...
The Tech Platform
Jun 29, 2021
Why Java is Case-Sensitive Language?
Java is Case - Sensitive Language which means it distinguishes between Uppercase (eg., Students) and Lowercase (eg., student) ...
The Tech Platform
Jun 16, 2021
Write a program to print Odd Numbers from 1 to 50.
Code: public class DisplayOddNumbersExample1 { public static void main(String args[]) { int number=50; System.out.print("List of odd...
The Tech Platform
Jun 3, 2021
HDFS - Hadoop Distributed File Systems (Architecture, Read & Write Operation using Java API)
HDFS is a distributed file system for storing very large data files, running on clusters of commodity hardware. It is fault tolerant,...
The Tech Platform
May 30, 2021
Write a Program to Print Down Triangle Star Pattern in Java
Code: import java.util.Scanner; public class DownTrianglePattern { public static void main(String[] args) { int i, j, k, rows=9;...
bottom of page